Test Failed
Push — master ( 02e3d1...1996ad )
by Vladimir
04:07
created
src/DependencyInjection/Configuration.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -75,11 +75,11 @@  discard block
 block discarded – undo
75 75
 
76 76
         $checkPligins = $this->checkPlugins;
77 77
 
78
-        $addChecks = function ($rootNode) use ($checkPligins, $builder) {
78
+        $addChecks = function($rootNode) use ($checkPligins, $builder) {
79 79
             foreach ($this->checkPluginClasses as $checkPluginClass) {
80 80
                 $checkPlugin = new $checkPluginClass();
81 81
 
82
-                $confMethods = array_filter(get_class_methods($checkPlugin), static function ($n) {
82
+                $confMethods = array_filter(get_class_methods($checkPlugin), static function($n) {
83 83
                     return preg_match('/Conf$/', $n);
84 84
                 });
85 85
 
@@ -106,7 +106,7 @@  discard block
 block discarded – undo
106 106
         $node = $builder
107 107
             ->root('checks', 'array')
108 108
             ->beforeNormalization()
109
-            ->always(static function ($value) {
109
+            ->always(static function($value) {
110 110
                 $value = $value ? $value : [];
111 111
                 foreach ($value as $k => $v) {
112 112
                     $newK = str_replace('(s)', '_factory', $k);
Please login to merge, or discard this patch.