Completed
Push — master ( be473f...8253c0 )
by Vladimir
05:20
created
src/Check/fs/XmlFile/Config.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/php/ExtensionLoaded/Config.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/Runner/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/Command/CheckGeneratorCommand.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -191,7 +191,7 @@
 block discarded – undo
191 191
      */
192 192
     private function createFile(string $basePath, string $from, string $to, array $tplData)
193 193
     {
194
-        $r = array_filter($this->tpls, static function (SplFileInfo $f) use ($from) {
194
+        $r = array_filter($this->tpls, static function(SplFileInfo $f) use ($from) {
195 195
             return $f->getBasename() === $from;
196 196
         });
197 197
 
Please login to merge, or discard this patch.
src/DependencyInjection/TviMonitorExtension.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -93,7 +93,7 @@
 block discarded – undo
93 93
         $containerParams = [];
94 94
 
95 95
         if (isset($config['checks'])) {
96
-            $config['checks'] = array_filter($config['checks'], static function ($i) {
96
+            $config['checks'] = array_filter($config['checks'], static function($i) {
97 97
                 return $i;
98 98
             });
99 99
 
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
@@ -80,7 +80,7 @@  discard block
 block discarded – undo
80 80
 
81 81
         $configurationClasses = $this->getConfigClasses();
82 82
 
83
-        $addChecks = function ($rootNode) use ($configurationClasses, $builder) {
83
+        $addChecks = function($rootNode) use ($configurationClasses, $builder) {
84 84
             foreach ($configurationClasses as $conf) {
85 85
                 $conf = new $conf();
86 86
                 foreach (get_class_methods($conf) as $method) {
@@ -99,7 +99,7 @@  discard block
 block discarded – undo
99 99
         $node = $builder
100 100
             ->root('checks', 'array')
101 101
             ->beforeNormalization()
102
-            ->always(static function ($value) {
102
+            ->always(static function($value) {
103 103
                 foreach ($value as $k => $v) {
104 104
                     $newK = str_replace('(s)', '_factory', $k);
105 105
                     if ($newK !== $k) {
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
@@ -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/Config.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/Config.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.