@@ -93,7 +93,7 @@ |
||
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 |
@@ -77,11 +77,11 @@ discard block |
||
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 |
||
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) { |