Skip to content

Commit

Permalink
Fix CS in rector-migrate.php
Browse files Browse the repository at this point in the history
  • Loading branch information
szepeviktor authored Apr 25, 2022
1 parent 850e853 commit a003f91
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions rector-migrate.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
use Rector\Renaming\Rector\FuncCall\RenameFunctionRector;
use Symfony\Component\DependencyInjection\Loader\Configurator\ContainerConfigurator;

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

Expand Down Expand Up @@ -1103,5 +1103,5 @@
'zip_entry_open' => 'Safe\zip_entry_open',
'zip_entry_read' => 'Safe\zip_entry_read',
'zlib_decode' => 'Safe\zlib_decode',
]]]);
]]]);
};

0 comments on commit a003f91

Please sign in to comment.