Completed
Push — master ( aca6e3...e7aa24 )
by Vladimir
05:21
created
src/Command/CheckInfoCommand.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
 
94 94
             if ($tags) {
95 95
                 $tags = $this->runnerManager->findTags($check->getTags());
96
-                $tags = array_map(static function ($t) {
96
+                $tags = array_map(static function($t) {
97 97
                     return $t->getLabel();
98 98
                 }, $tags);
99 99
 
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
@@ -77,11 +77,11 @@  discard block
 block discarded – undo
77 77
 
78 78
         $checkPligins = $this->getCheckPligins();
79 79
 
80
-        $addChecks = function ($rootNode) use ($checkPligins, $builder) {
80
+        $addChecks = function($rootNode) use ($checkPligins, $builder) {
81 81
             foreach ($checkPligins as $checkPligin) {
82 82
                 $checkPligin = new $checkPligin();
83 83
 
84
-                $confMethods = array_filter(get_class_methods($checkPligin), static function ($n) {
84
+                $confMethods = array_filter(get_class_methods($checkPligin), static function($n) {
85 85
                     return preg_match('/Conf$/', $n);
86 86
                 });
87 87
 
@@ -102,7 +102,7 @@  discard block
 block discarded – undo
102 102
         $node = $builder
103 103
             ->root('checks', 'array')
104 104
             ->beforeNormalization()
105
-            ->always(static function ($value) {
105
+            ->always(static function($value) {
106 106
                 foreach ($value as $k => $v) {
107 107
                     $newK = str_replace('(s)', '_factory', $k);
108 108
                     if ($newK !== $k) {
Please login to merge, or discard this patch.