Completed
Push — master ( 6b5246...8691e9 )
by David
04:53 queued 02:40
created
DependencyInjection/Configuration.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -26,7 +26,7 @@  discard block
 block discarded – undo
26 26
                 ->arrayNode('locales')
27 27
                     ->beforeNormalization()
28 28
                         ->ifString()
29
-                        ->then(function ($v) { return preg_split('/\s*,\s*/', $v); })
29
+                        ->then(function($v) { return preg_split('/\s*,\s*/', $v); })
30 30
                     ->end()
31 31
                     ->requiresAtLeastOneElement()
32 32
                     ->prototype('scalar')->end()
@@ -34,7 +34,7 @@  discard block
 block discarded – undo
34 34
                 ->arrayNode('required_locales')
35 35
                     ->beforeNormalization()
36 36
                         ->ifString()
37
-                        ->then(function ($v) { return preg_split('/\s*,\s*/', $v); })
37
+                        ->then(function($v) { return preg_split('/\s*,\s*/', $v); })
38 38
                     ->end()
39 39
                     ->prototype('scalar')->end()
40 40
                 ->end()
Please login to merge, or discard this patch.
Tests/Form/Type/AutoFormTypeTest.php 1 patch
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -26,10 +26,10 @@
 block discarded – undo
26 26
         // Creation
27 27
         $media1 = new Media();
28 28
         $media1->setUrl('http://example.org/media1')
29
-               ->setDescription('media1 desc');
29
+                ->setDescription('media1 desc');
30 30
         $media2 = new Media();
31 31
         $media2->setUrl('http://example.org/media2')
32
-               ->setDescription('media2 desc');
32
+                ->setDescription('media2 desc');
33 33
 
34 34
         $product = new Product();
35 35
         $product->setUrl('a2lix.fr')
Please login to merge, or discard this patch.
Tests/Form/TypeTestCase.php 1 patch
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -32,8 +32,8 @@
 block discarded – undo
32 32
             )
33 33
             ->addTypeGuesser(
34 34
                 $this->getMockBuilder('Symfony\Component\Form\Extension\Validator\ValidatorTypeGuesser')
35
-                     ->disableOriginalConstructor()
36
-                     ->getMock()
35
+                        ->disableOriginalConstructor()
36
+                        ->getMock()
37 37
             )
38 38
             ->getFormFactory();
39 39
 
Please login to merge, or discard this patch.