Passed
Pull Request — master (#9)
by David
05:19
created
src/DependencyInjection/Configuration.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -1,6 +1,6 @@  discard block
 block discarded – undo
1 1
 <?php
2 2
 
3
-declare(strict_types=1);
3
+declare(strict_types = 1);
4 4
 
5 5
 /*
6 6
  * This file is part of the AutoFormBundle package.
@@ -29,7 +29,7 @@  discard block
 block discarded – undo
29 29
                     ->defaultValue(['id', 'locale', 'translatable'])
30 30
                     ->beforeNormalization()
31 31
                         ->ifString()
32
-                        ->then(function ($v) {
32
+                        ->then(function($v) {
33 33
                             return preg_split('/\s*,\s*/', $v);
34 34
                         })
35 35
                     ->end()
Please login to merge, or discard this patch.
src/DependencyInjection/A2lixAutoFormExtension.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,6 +1,6 @@
 block discarded – undo
1 1
 <?php
2 2
 
3
-declare(strict_types=1);
3
+declare(strict_types = 1);
4 4
 
5 5
 /*
6 6
  * This file is part of the AutoFormBundle package.
Please login to merge, or discard this patch.
tests/Form/Type/AutoFormTypeSimpleTest.php 2 patches
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -48,10 +48,10 @@
 block discarded – undo
48 48
 
49 49
         $media1 = new Media();
50 50
         $media1->setUrl('http://example.org/media1')
51
-               ->setDescription('media1 desc');
51
+                ->setDescription('media1 desc');
52 52
         $media2 = new Media();
53 53
         $media2->setUrl('http://example.org/media2')
54
-               ->setDescription('media2 desc');
54
+                ->setDescription('media2 desc');
55 55
 
56 56
         $product = new Product();
57 57
         $product->setUrl('a2lix.fr')
Please login to merge, or discard this patch.
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,6 +1,6 @@
 block discarded – undo
1 1
 <?php
2 2
 
3
-declare(strict_types=1);
3
+declare(strict_types = 1);
4 4
 
5 5
 /*
6 6
  * This file is part of the AutoFormBundle package.
Please login to merge, or discard this patch.
tests/Form/TypeTestCase.php 2 patches
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -46,8 +46,8 @@
 block discarded – undo
46 46
             )
47 47
             ->addTypeGuesser(
48 48
                 $this->getMockBuilder(ValidatorTypeGuesser::class)
49
-                     ->disableOriginalConstructor()
50
-                     ->getMock()
49
+                        ->disableOriginalConstructor()
50
+                        ->getMock()
51 51
             )
52 52
             ->getFormFactory();
53 53
 
Please login to merge, or discard this patch.
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,6 +1,6 @@
 block discarded – undo
1 1
 <?php
2 2
 
3
-declare(strict_types=1);
3
+declare(strict_types = 1);
4 4
 
5 5
 /*
6 6
  * This file is part of the AutoFormBundle package.
Please login to merge, or discard this patch.
src/A2lixAutoFormBundle.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,6 +1,6 @@
 block discarded – undo
1 1
 <?php
2 2
 
3
-declare(strict_types=1);
3
+declare(strict_types = 1);
4 4
 
5 5
 /*
6 6
  * This file is part of the AutoFormBundle package.
Please login to merge, or discard this patch.
src/Form/EventListener/AutoFormListener.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,6 +1,6 @@
 block discarded – undo
1 1
 <?php
2 2
 
3
-declare(strict_types=1);
3
+declare(strict_types = 1);
4 4
 
5 5
 /*
6 6
  * This file is part of the AutoFormBundle package.
Please login to merge, or discard this patch.
src/Form/Manipulator/FormManipulatorInterface.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,6 +1,6 @@
 block discarded – undo
1 1
 <?php
2 2
 
3
-declare(strict_types=1);
3
+declare(strict_types = 1);
4 4
 
5 5
 /*
6 6
  * This file is part of the AutoFormBundle package.
Please login to merge, or discard this patch.
tests/Fixtures/Entity/Media.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,6 +1,6 @@
 block discarded – undo
1 1
 <?php
2 2
 
3
-declare(strict_types=1);
3
+declare(strict_types = 1);
4 4
 
5 5
 /*
6 6
  * This file is part of the AutoFormBundle package.
Please login to merge, or discard this patch.
tests/Fixtures/Entity/Product.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,6 +1,6 @@
 block discarded – undo
1 1
 <?php
2 2
 
3
-declare(strict_types=1);
3
+declare(strict_types = 1);
4 4
 
5 5
 /*
6 6
  * This file is part of the AutoFormBundle package.
Please login to merge, or discard this patch.