Passed
Push — master ( b328e0...054509 )
by Enjoys
02:07
created
src/Assets.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -63,7 +63,7 @@
 block discarded – undo
63 63
             );
64 64
         }
65 65
 
66
-        if(!in_array($method, ['push', 'unshift'],true)){
66
+        if (!in_array($method, ['push', 'unshift'], true)) {
67 67
             throw new NotAllowedMethods('Allowed methods only `push` and `unshift`');
68 68
         }
69 69
 
Please login to merge, or discard this patch.
src/Render/RenderFactory.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -30,7 +30,7 @@
 block discarded – undo
30 30
         string $render = Assets::RENDER_HTML
31 31
     ): RenderInterface {
32 32
 
33
-        if(!array_key_exists($render, self::RENDERS)){
33
+        if (!array_key_exists($render, self::RENDERS)) {
34 34
             throw new UnexpectedParameters(
35 35
                 sprintf('Invalid render group. Allowed only: %s', implode(', ', array_keys(self::RENDERS)))
36 36
             );
Please login to merge, or discard this patch.