Passed
Push — master ( ea8a79...bc0d9b )
by Vladimir
08:59 queued 03:40
created
src/Check/php/ExtensionLoaded/Plugin.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -41,7 +41,7 @@
 block discarded – undo
41 41
             ->children()
42 42
                 ->arrayNode('check')
43 43
                     ->beforeNormalization()
44
-                    ->always(static function ($value) {
44
+                    ->always(static function($value) {
45 45
                         if (isset($value['extensionName']) && !\is_array($value['extensionName'])) {
46 46
                             $value['extensionName'] = [$value['extensionName']];
47 47
                         }
Please login to merge, or discard this patch.
src/Check/fs/IniFile/Plugin.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -45,7 +45,7 @@
 block discarded – undo
45 45
                             ->isRequired()
46 46
                             ->beforeNormalization()
47 47
                                 ->ifString()
48
-                                ->then(static function ($value) {
48
+                                ->then(static function($value) {
49 49
                                     if (\is_string($value)) {
50 50
                                         $value = [$value];
51 51
                                     }
Please login to merge, or discard this patch.
src/Check/fs/DirReadable/Plugin.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -45,7 +45,7 @@
 block discarded – undo
45 45
                             ->isRequired()
46 46
                             ->beforeNormalization()
47 47
                                 ->ifString()
48
-                                ->then(static function ($value) {
48
+                                ->then(static function($value) {
49 49
                                     if (\is_string($value)) {
50 50
                                         $value = [$value];
51 51
                                     }
Please login to merge, or discard this patch.
src/Check/fs/DirWritable/Plugin.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -45,7 +45,7 @@
 block discarded – undo
45 45
                             ->isRequired()
46 46
                             ->beforeNormalization()
47 47
                                 ->ifString()
48
-                                ->then(static function ($value) {
48
+                                ->then(static function($value) {
49 49
                                     if (\is_string($value)) {
50 50
                                         $value = [$value];
51 51
                                     }
Please login to merge, or discard this patch.
src/Check/fs/JsonFile/Plugin.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -45,7 +45,7 @@
 block discarded – undo
45 45
                             ->isRequired()
46 46
                             ->beforeNormalization()
47 47
                                 ->ifString()
48
-                                ->then(static function ($value) {
48
+                                ->then(static function($value) {
49 49
                                     if (\is_string($value)) {
50 50
                                         $value = [$value];
51 51
                                     }
Please login to merge, or discard this patch.
src/Check/fs/YamlFile/Plugin.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -45,7 +45,7 @@
 block discarded – undo
45 45
                             ->isRequired()
46 46
                             ->beforeNormalization()
47 47
                                 ->ifString()
48
-                                ->then(static function ($value) {
48
+                                ->then(static function($value) {
49 49
                                     if (\is_string($value)) {
50 50
                                         $value = [$value];
51 51
                                     }
Please login to merge, or discard this patch.
src/Check/fs/XmlFile/Plugin.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -45,7 +45,7 @@
 block discarded – undo
45 45
                             ->isRequired()
46 46
                             ->beforeNormalization()
47 47
                                 ->ifString()
48
-                                ->then(static function ($value) {
48
+                                ->then(static function($value) {
49 49
                                     if (\is_string($value)) {
50 50
                                         $value = [$value];
51 51
                                     }
Please login to merge, or discard this patch.
src/Reporter/ArrayReporter.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -69,7 +69,7 @@
 block discarded – undo
69 69
             }
70 70
         }
71 71
 
72
-        $res = array_filter($res, static function ($v) {
72
+        $res = array_filter($res, static function($v) {
73 73
             return \is_array($v) ? !empty($v) : (null !== $v);
74 74
         });
75 75
 
Please login to merge, or discard this patch.
src/DependencyInjection/Configuration.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -78,14 +78,14 @@  discard block
 block discarded – undo
78 78
 
79 79
         $checkPligins = $this->getCheckPligins();
80 80
 
81
-        $addChecks = function ($rootNode) use ($checkPligins, $builder) {
81
+        $addChecks = function($rootNode) use ($checkPligins, $builder) {
82 82
             foreach ($checkPligins as $checkPligin) {
83 83
                 $checkPligin = new $checkPligin();
84 84
 
85 85
 
86 86
                 $ref = new \ReflectionClass($checkPligin);
87 87
                 $methods = $ref->getMethods(\ReflectionMethod::IS_PUBLIC);
88
-                $methods = array_filter($methods, static function (\ReflectionMethod $ref) {
88
+                $methods = array_filter($methods, static function(\ReflectionMethod $ref) {
89 89
                     $retType = $ref->getReturnType();
90 90
 
91 91
                     return ($retType && NodeDefinition::class === $retType->getName()) ? true : false;
@@ -110,7 +110,7 @@  discard block
 block discarded – undo
110 110
         $node = $builder
111 111
             ->root('checks', 'array')
112 112
             ->beforeNormalization()
113
-            ->always(static function ($value) {
113
+            ->always(static function($value) {
114 114
                 foreach ($value as $k => $v) {
115 115
                     $newK = str_replace('(s)', '_factory', $k);
116 116
                     if ($newK !== $k) {
Please login to merge, or discard this patch.