Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion src/Runner/ShutdownHandler.php
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@
namespace PHPUnit\Runner;

use function register_shutdown_function;
use function rtrim;

/**
* @no-named-arguments Parameter names are not covered by the backward compatibility promise for PHPUnit
Expand Down Expand Up @@ -44,7 +45,7 @@ private static function register(): void
register_shutdown_function(
static function (): void
{
print self::$message;
print rtrim(self::$message) . "\n";
},
);
}
Expand Down
Loading