Skip to content

Commit d396026

Browse files
Fix CS/WS issue
1 parent 7dce842 commit d396026

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

build/templates/binary-phar-autoload.php.in

+1-1
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ define('__PHPUNIT_PHAR__', str_replace(DIRECTORY_SEPARATOR, '/', __FILE__));
6868
define('__PHPUNIT_PHAR_ROOT__', 'phar://___PHAR___');
6969

7070
spl_autoload_register(
71-
function($class) {
71+
function ($class) {
7272
static $classes = null;
7373

7474
if ($classes === null) {

build/templates/library-phar-autoload.php.in

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ define('__PHPUNIT_PHAR__', str_replace(DIRECTORY_SEPARATOR, '/', __FILE__));
33
define('__PHPUNIT_PHAR_ROOT__', 'phar://___PHAR___');
44

55
spl_autoload_register(
6-
function($class) {
6+
function ($class) {
77
static $classes = null;
88

99
if ($classes === null) {

0 commit comments

Comments
 (0)