Passed
Pull Request — master (#14)
by Florent
06:01 queued 02:47
created
rector.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -9,7 +9,7 @@
 block discarded – undo
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);
Please login to merge, or discard this patch.
ecs.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -33,7 +33,7 @@
 block discarded – undo
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);
Please login to merge, or discard this patch.
src/AESKW.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -143,7 +143,7 @@
 block discarded – undo
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
 
Please login to merge, or discard this patch.