Skip to content

Commit a003f91

Browse files
authored
Fix CS in rector-migrate.php
1 parent 850e853 commit a003f91

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

rector-migrate.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
use Rector\Renaming\Rector\FuncCall\RenameFunctionRector;
66
use Symfony\Component\DependencyInjection\Loader\Configurator\ContainerConfigurator;
77

8-
# This file configures rector/rector to replace all PHP functions with their equivalent "safe" functions
8+
// This file configures rector/rector to replace all PHP functions with their equivalent "safe" functions.
99
return static function (ContainerConfigurator $containerConfigurator): void {
1010
$services = $containerConfigurator->services();
1111

@@ -1103,5 +1103,5 @@
11031103
'zip_entry_open' => 'Safe\zip_entry_open',
11041104
'zip_entry_read' => 'Safe\zip_entry_read',
11051105
'zlib_decode' => 'Safe\zlib_decode',
1106-
]]]);
1106+
]]]);
11071107
};

0 commit comments

Comments
 (0)