Completed
Push — master ( 541f24...f1545e )
by Vladimir
05:05
created
src/DependencyInjection/TviMonitorExtension.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -91,7 +91,7 @@
 block discarded – undo
91 91
         $containerParams = [];
92 92
 
93 93
         if (isset($config['checks'])) {
94
-            $config['checks'] = array_filter($config['checks'], function ($i) {
94
+            $config['checks'] = array_filter($config['checks'], function($i) {
95 95
                 return $i;
96 96
             });
97 97
 
Please login to merge, or discard this patch.
src/DependencyInjection/Configuration.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -78,7 +78,7 @@  discard block
 block discarded – undo
78 78
 
79 79
         $configurationClasses = $this->getConfigClasses();
80 80
 
81
-        $addChecks = function ($rootNode) use ($configurationClasses, $builder) {
81
+        $addChecks = function($rootNode) use ($configurationClasses, $builder) {
82 82
             foreach ($configurationClasses as $conf) {
83 83
                 $conf = new $conf();
84 84
                 foreach (get_class_methods($conf) as $method) {
@@ -97,7 +97,7 @@  discard block
 block discarded – undo
97 97
         $node = $builder
98 98
             ->root('checks', 'array')
99 99
             ->beforeNormalization()
100
-            ->always(function ($value) {
100
+            ->always(function($value) {
101 101
                 foreach ($value as $k => $v) {
102 102
                     $newK = str_replace('(s)', '_factory', $k);
103 103
                     if ($newK != $k) {
Please login to merge, or discard this patch.
src/Runner/Reporter/ArrayReporter.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -67,7 +67,7 @@
 block discarded – undo
67 67
             }
68 68
         }
69 69
 
70
-        $res = array_filter($res, function ($v) {
70
+        $res = array_filter($res, function($v) {
71 71
             return \is_array($v) ? !empty($v) : (null !== $v);
72 72
         });
73 73
 
Please login to merge, or discard this patch.
src/Command/CheckGeneratorCommand.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -189,7 +189,7 @@
 block discarded – undo
189 189
      */
190 190
     private function createFile(string $basePath, string $from, string $to, array $tplData)
191 191
     {
192
-        $r = array_filter($this->tpls, function (SplFileInfo $f) use ($from) {
192
+        $r = array_filter($this->tpls, function(SplFileInfo $f) use ($from) {
193 193
             return $f->getBasename() == $from;
194 194
         });
195 195
 
Please login to merge, or discard this patch.
src/Check/fs/DirReadable/Config.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -43,7 +43,7 @@
 block discarded – undo
43 43
                             ->isRequired()
44 44
                             ->beforeNormalization()
45 45
                                 ->ifString()
46
-                                ->then(function ($value) {
46
+                                ->then(function($value) {
47 47
                                     if (\is_string($value)) {
48 48
                                         $value = [$value];
49 49
                                     }
Please login to merge, or discard this patch.
src/Check/fs/IniFile/Config.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -43,7 +43,7 @@
 block discarded – undo
43 43
                             ->isRequired()
44 44
                             ->beforeNormalization()
45 45
                                 ->ifString()
46
-                                ->then(function ($value) {
46
+                                ->then(function($value) {
47 47
                                     if (\is_string($value)) {
48 48
                                         $value = [$value];
49 49
                                     }
Please login to merge, or discard this patch.
src/Check/fs/JsonFile/Config.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -43,7 +43,7 @@
 block discarded – undo
43 43
                             ->isRequired()
44 44
                             ->beforeNormalization()
45 45
                                 ->ifString()
46
-                                ->then(function ($value) {
46
+                                ->then(function($value) {
47 47
                                     if (\is_string($value)) {
48 48
                                         $value = [$value];
49 49
                                     }
Please login to merge, or discard this patch.
src/Check/fs/YamlFile/Config.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -43,7 +43,7 @@
 block discarded – undo
43 43
                             ->isRequired()
44 44
                             ->beforeNormalization()
45 45
                                 ->ifString()
46
-                                ->then(function ($value) {
46
+                                ->then(function($value) {
47 47
                                     if (\is_string($value)) {
48 48
                                         $value = [$value];
49 49
                                     }
Please login to merge, or discard this patch.
src/Check/fs/DirWritable/Config.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -43,7 +43,7 @@
 block discarded – undo
43 43
                             ->isRequired()
44 44
                             ->beforeNormalization()
45 45
                                 ->ifString()
46
-                                ->then(function ($value) {
46
+                                ->then(function($value) {
47 47
                                     if (\is_string($value)) {
48 48
                                         $value = [$value];
49 49
                                     }
Please login to merge, or discard this patch.