Completed
Push — master ( 13df09...be473f )
by Vladimir
04:26
created
src/Check/fs/YamlFile/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/IniFile/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/StreamWrapperExists/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/ClassExists/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/PhpFlag/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/ExtensionNotLoaded/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/Command/CheckInfoCommand.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -110,8 +110,8 @@
 block discarded – undo
110 110
 
111 111
             $group = null;
112 112
             $groupNew = sprintf('<fg=yellow;options=bold>%-8s</>', $check->getGroup());
113
-            if($groupOld != $groupNew) {
114
-                if($groupOld) {
113
+            if ($groupOld != $groupNew) {
114
+                if ($groupOld) {
115 115
                     $table->addRow(new TableSeparator());
116 116
                 }
117 117
                 $group = $groupOld = $groupNew;
Please login to merge, or discard this patch.