Passed
Push — master ( de8ec8...7af4db )
by Arnaud
22:13 queued 15:21
created
src/Form/Type/Select2/Select2EntityType.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -40,14 +40,14 @@  discard block
 block discarded – undo
40 40
             ->setAllowedTypes('allow_add', 'boolean')
41 41
             ->setAllowedTypes('create_property_path', ['string', 'null'])
42 42
             ->setAllowedTypes('select2_options', 'array')
43
-            ->setNormalizer('create_property_path', function (Options $options, $value) {
43
+            ->setNormalizer('create_property_path', function(Options $options, $value) {
44 44
                 if ($options->offsetGet('allow_add') && !$value) {
45 45
                     throw new InvalidOptionsException('The options "create_property_path" should be defined when "allow_add" is set to true');
46 46
                 }
47 47
 
48 48
                 return $value;
49 49
             })
50
-            ->setNormalizer('select2_options', function (Options $options, $value) {
50
+            ->setNormalizer('select2_options', function(Options $options, $value) {
51 51
                 if ($options->offsetGet('allow_add')) {
52 52
                     $value['tags'] = json_encode(true);
53 53
                 }
@@ -60,7 +60,7 @@  discard block
 block discarded – undo
60 60
     public function buildForm(FormBuilderInterface $builder, array $options)
61 61
     {
62 62
         $builder
63
-            ->addEventListener(FormEvents::PRE_SUBMIT, function (FormEvent $event) use ($options) {
63
+            ->addEventListener(FormEvents::PRE_SUBMIT, function(FormEvent $event) use ($options) {
64 64
                 $manager = $this->registry->getManagerForClass($options['class']);
65 65
                 $repository = $manager->getRepository($options['class']);
66 66
                 $propertyAccessor = PropertyAccess::createPropertyAccessor();
Please login to merge, or discard this patch.
src/Field/CountField.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -18,7 +18,7 @@
 block discarded – undo
18 18
 
19 19
     public function getDataTransformer(): ?Closure
20 20
     {
21
-        return function ($data) {
21
+        return function($data) {
22 22
             return is_countable($data) ? \count($data) : 0;
23 23
         };
24 24
     }
Please login to merge, or discard this patch.
src/Field/AutoField.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -22,7 +22,7 @@
 block discarded – undo
22 22
 
23 23
     public function getDataTransformer(): ?Closure
24 24
     {
25
-        return function ($data) {
25
+        return function($data) {
26 26
             if ($data === null) {
27 27
                 return '';
28 28
             }
Please login to merge, or discard this patch.
src/Field/ArrayField.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -22,7 +22,7 @@
 block discarded – undo
22 22
 
23 23
     public function getDataTransformer(): ?Closure
24 24
     {
25
-        return function ($data) {
25
+        return function($data) {
26 26
             if ($data === null) {
27 27
                 return '';
28 28
             }
Please login to merge, or discard this patch.
src/Field/AbstractField.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -49,7 +49,7 @@  discard block
 block discarded – undo
49 49
             ->setAllowedTypes('translation', ['boolean'])
50 50
             ->setAllowedTypes('translation_domain', ['string', 'null'])
51 51
             ->setAllowedTypes('sortable', ['boolean'])
52
-            ->addNormalizer('attr', function (Options $options, $value) {
52
+            ->addNormalizer('attr', function(Options $options, $value) {
53 53
                 if ($value === null) {
54 54
                     $value = [];
55 55
                 }
@@ -62,7 +62,7 @@  discard block
 block discarded – undo
62 62
 
63 63
                 return $value;
64 64
             })
65
-            ->addNormalizer('header_attr', function (Options $options, $value) {
65
+            ->addNormalizer('header_attr', function(Options $options, $value) {
66 66
                 if ($value === null) {
67 67
                     $value = [];
68 68
                 }
@@ -75,14 +75,14 @@  discard block
 block discarded – undo
75 75
 
76 76
                 return $value;
77 77
             })
78
-            ->setNormalizer('mapped', function (Options $options, $mapped) {
78
+            ->setNormalizer('mapped', function(Options $options, $mapped) {
79 79
                 if (u($this->getName())->startsWith('_')) {
80 80
                     return true;
81 81
                 }
82 82
 
83 83
                 return $mapped;
84 84
             })
85
-            ->setNormalizer('property_path', function (Options $options, $propertyPath) {
85
+            ->setNormalizer('property_path', function(Options $options, $propertyPath) {
86 86
                 if (u($this->getName())->startsWith('_')) {
87 87
                     return null;
88 88
                 }
Please login to merge, or discard this patch.
tests/phpunit/Bridge/Doctrine/ORM/Metadata/MetadataHelperTest.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -19,7 +19,7 @@
 block discarded – undo
19 19
         $metadataFactory
20 20
             ->expects($this->once())
21 21
             ->method('getMetadataFor')
22
-            ->willReturnCallback(function (string $class) {
22
+            ->willReturnCallback(function(string $class) {
23 23
                 $this->assertEquals('MyLittleClass', $class);
24 24
 
25 25
                 throw new Exception();
Please login to merge, or discard this patch.
src/Form/Type/TinyMce/TinyMceType.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -28,7 +28,7 @@  discard block
 block discarded – undo
28 28
                 'custom_buttons' => [],
29 29
             ])
30 30
             ->setAllowedTypes('tinymce_options', 'array')
31
-            ->addNormalizer('tinymce_options', function (Options $options, $value) {
31
+            ->addNormalizer('tinymce_options', function(Options $options, $value) {
32 32
                 $attr = $options->offsetGet('attr');
33 33
 
34 34
                 if (\array_key_exists('id', $attr)) {
@@ -41,7 +41,7 @@  discard block
 block discarded – undo
41 41
                 return array_replace_recursive($this->getTinyMceDefaultConfiguration(), $value);
42 42
             })
43 43
             ->setAllowedTypes('custom_buttons', 'array')
44
-            ->addNormalizer('custom_buttons', function (Options $options, $value) {
44
+            ->addNormalizer('custom_buttons', function(Options $options, $value) {
45 45
                 foreach ($value as $item => $button) {
46 46
                     $buttonResolver = new OptionsResolver();
47 47
                     $buttonResolver->setDefaults([
Please login to merge, or discard this patch.
src/Field/ActionField.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -25,7 +25,7 @@
 block discarded – undo
25 25
                 'translation' => true,
26 26
                 'property_path' => null,
27 27
             ])
28
-            ->addNormalizer('attr', function (Options $options, $value) {
28
+            ->addNormalizer('attr', function(Options $options, $value) {
29 29
                 if (!empty($value['class'])) {
30 30
                     return $value;
31 31
                 }
Please login to merge, or discard this patch.
tests/phpunit/DependencyInjection/LAGExtensionTest.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -22,7 +22,7 @@
 block discarded – undo
22 22
             ->container
23 23
             ->expects($this->atLeastOnce())
24 24
             ->method('setParameter')
25
-            ->willReturnCallback(function ($parameter, $value) {
25
+            ->willReturnCallback(function($parameter, $value) {
26 26
                 $this->assertContains($parameter, [
27 27
                     'lag_admin.application.configuration',
28 28
                     'lag_admin.resource_paths',
Please login to merge, or discard this patch.