@@ -9,7 +9,7 @@ |
||
9 | 9 | use Rector\Symfony\Set\SymfonySetList; |
10 | 10 | use Symfony\Component\DependencyInjection\Loader\Configurator\ContainerConfigurator; |
11 | 11 | |
12 | -return static function (ContainerConfigurator $containerConfigurator): void { |
|
12 | +return static function(ContainerConfigurator $containerConfigurator): void { |
|
13 | 13 | $containerConfigurator->import(SetList::DEAD_CODE); |
14 | 14 | $containerConfigurator->import(SetList::PHP_80); |
15 | 15 | $containerConfigurator->import(SymfonySetList::SYMFONY_52); |
@@ -33,7 +33,7 @@ |
||
33 | 33 | |
34 | 34 | $header = ''; |
35 | 35 | |
36 | -return static function (ContainerConfigurator $containerConfigurator) use ($header): void { |
|
36 | +return static function(ContainerConfigurator $containerConfigurator) use ($header): void { |
|
37 | 37 | $containerConfigurator->import(SetList::PSR_12); |
38 | 38 | $containerConfigurator->import(SetList::PHP_CS_FIXER); |
39 | 39 | $containerConfigurator->import(SetList::PHP_CS_FIXER_RISKY); |
@@ -143,7 +143,7 @@ |
||
143 | 143 | $n = mb_strlen($key, '8bit') / 8; |
144 | 144 | $MLI = (int) hexdec(bin2hex(ltrim(self::getLSB($iv), "\0"))); |
145 | 145 | |
146 | - if (! (8 * ($n - 1) < $MLI && $MLI <= 8 * $n)) { |
|
146 | + if (!(8 * ($n - 1) < $MLI && $MLI <= 8 * $n)) { |
|
147 | 147 | return false; |
148 | 148 | } |
149 | 149 |