Test Setup Failed
Branch master (e71cc5)
by Doug
03:29
created
src/Extension.php 1 patch
Indentation   +16 added lines, -16 removed lines patch added patch discarded remove patch
@@ -145,16 +145,16 @@  discard block
 block discarded – undo
145 145
                                     ->addDefaultsIfNotSet()
146 146
                                     ->children()
147 147
                                         ->arrayNode('directories')
148
-                                           ->useAttributeAsKey('name')
149
-                                           ->prototype('array')
150
-                                               ->children()
151
-                                                   ->scalarNode('prefix')->defaultValue('')->end()
152
-                                                   ->scalarNode('suffix')->defaultValue('.php')->end()
153
-                                               ->end()
154
-                                           ->end()
148
+                                            ->useAttributeAsKey('name')
149
+                                            ->prototype('array')
150
+                                                ->children()
151
+                                                    ->scalarNode('prefix')->defaultValue('')->end()
152
+                                                    ->scalarNode('suffix')->defaultValue('.php')->end()
153
+                                                ->end()
154
+                                            ->end()
155 155
                                         ->end()
156 156
                                         ->arrayNode('files')
157
-                                           ->prototype('scalar')->end()
157
+                                            ->prototype('scalar')->end()
158 158
                                         ->end()
159 159
                                     ->end()
160 160
                                 ->end()
@@ -162,16 +162,16 @@  discard block
 block discarded – undo
162 162
                                     ->addDefaultsIfNotSet()
163 163
                                     ->children()
164 164
                                         ->arrayNode('directories')
165
-                                           ->useAttributeAsKey('name')
166
-                                           ->prototype('array')
167
-                                               ->children()
168
-                                                   ->scalarNode('prefix')->defaultValue('')->end()
169
-                                                   ->scalarNode('suffix')->defaultValue('.php')->end()
170
-                                               ->end()
171
-                                           ->end()
165
+                                            ->useAttributeAsKey('name')
166
+                                            ->prototype('array')
167
+                                                ->children()
168
+                                                    ->scalarNode('prefix')->defaultValue('')->end()
169
+                                                    ->scalarNode('suffix')->defaultValue('.php')->end()
170
+                                                ->end()
171
+                                            ->end()
172 172
                                         ->end()
173 173
                                         ->arrayNode('files')
174
-                                           ->prototype('scalar')->end()
174
+                                            ->prototype('scalar')->end()
175 175
                                         ->end()
176 176
                                     ->end()
177 177
                                 ->end()
Please login to merge, or discard this patch.
init.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -11,7 +11,7 @@
 block discarded – undo
11 11
 
12 12
 spl_autoload_register(function($class) {
13 13
     if (false !== strpos($class, 'DVDoug\\Behat\\CodeCoverage')) {
14
-        require_once(__DIR__.'/src/'.str_replace('\\', '/', $class).'.php');
14
+        require_once(__DIR__ . '/src/' . str_replace('\\', '/', $class) . '.php');
15 15
 
16 16
         return true;
17 17
     }
Please login to merge, or discard this patch.