We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 52971e8 commit 1140fadCopy full SHA for 1140fad
src/Runner/ShutdownHandler.php
@@ -10,6 +10,7 @@
10
namespace PHPUnit\Runner;
11
12
use function register_shutdown_function;
13
+use function rtrim;
14
15
/**
16
* @no-named-arguments Parameter names are not covered by the backward compatibility promise for PHPUnit
@@ -44,7 +45,7 @@ private static function register(): void
44
45
register_shutdown_function(
46
static function (): void
47
{
- print self::$message;
48
+ print rtrim(self::$message) . "\n";
49
},
50
);
51
}
0 commit comments