@@ -83,7 +83,7 @@ |
||
83 | 83 | $checkPluginAlias .= '.'.$checkPluginPref; |
84 | 84 | } |
85 | 85 | |
86 | - if(isset($conf['importance'])) { |
|
86 | + if (isset($conf['importance'])) { |
|
87 | 87 | $conf['tags'][] = $conf['importance']; |
88 | 88 | } |
89 | 89 |
@@ -129,10 +129,10 @@ |
||
129 | 129 | ->children() |
130 | 130 | ->scalarNode('importance') |
131 | 131 | ->validate() |
132 | - ->ifTrue( function($value) { |
|
133 | - if($value === null) { |
|
132 | + ->ifTrue(function($value) { |
|
133 | + if ($value === null) { |
|
134 | 134 | return false; |
135 | - } else if(in_array($value, self::getImportances())) { |
|
135 | + } else if (in_array($value, self::getImportances())) { |
|
136 | 136 | return false; |
137 | 137 | } |
138 | 138 |