Completed
Push — master ( 0ca5b8...ec8ff1 )
by Vladimir
21:49 queued 16:15
created
src/Check/fs/XmlFile/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/php/ClassExists/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/php/PhpFlag/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/php/StreamWrapperExists/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/php/ExtensionLoaded/Config.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -39,7 +39,7 @@
 block discarded – undo
39 39
             ->children()
40 40
                 ->arrayNode('check')
41 41
                     ->beforeNormalization()
42
-                    ->always(function ($value) {
42
+                    ->always(function($value) {
43 43
                         if (isset($value['extensionName']) && !\is_array($value['extensionName'])) {
44 44
                             $value['extensionName'] = [$value['extensionName']];
45 45
                         }
Please login to merge, or discard this patch.