Completed
Push — 1.0-phpstan ( 5ae83f )
by Kamil
27:50
created
PromotionBundle/Form/Type/AbstractConfigurablePromotionElementType.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -9,7 +9,7 @@
 block discarded – undo
9 9
  * file that was distributed with this source code.
10 10
  */
11 11
 
12
-declare(strict_types=1);
12
+declare(strict_types = 1);
13 13
 
14 14
 namespace Sylius\Bundle\PromotionBundle\Form\Type;
15 15
 
Please login to merge, or discard this patch.
src/Sylius/Component/Attribute/AttributeType/TextareaAttributeType.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -9,7 +9,7 @@  discard block
 block discarded – undo
9 9
  * file that was distributed with this source code.
10 10
  */
11 11
 
12
-declare(strict_types=1);
12
+declare(strict_types = 1);
13 13
 
14 14
 namespace Sylius\Component\Attribute\AttributeType;
15 15
 
@@ -73,7 +73,7 @@  discard block
 block discarded – undo
73 73
     private function getValidationErrors(
74 74
         ExecutionContextInterface $context,
75 75
         ?string $value
76
-    ): ConstraintViolationListInterface {
76
+    ) : ConstraintViolationListInterface {
77 77
         $validator = $context->getValidator();
78 78
 
79 79
         return $validator->validate(
Please login to merge, or discard this patch.
src/Sylius/Component/Core/Model/Image.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -9,7 +9,7 @@  discard block
 block discarded – undo
9 9
  * file that was distributed with this source code.
10 10
  */
11 11
 
12
-declare(strict_types=1);
12
+declare(strict_types = 1);
13 13
 
14 14
 namespace Sylius\Component\Core\Model;
15 15
 
@@ -67,7 +67,7 @@  discard block
 block discarded – undo
67 67
     /**
68 68
      * {@inheritdoc}
69 69
      */
70
-    public function setType(?string $type): void
70
+    public function setType(?string $type) : void
71 71
     {
72 72
         $this->type = $type;
73 73
     }
@@ -83,7 +83,7 @@  discard block
 block discarded – undo
83 83
     /**
84 84
      * {@inheritdoc}
85 85
      */
86
-    public function setFile(?\SplFileInfo $file): void
86
+    public function setFile(?\SplFileInfo $file) : void
87 87
     {
88 88
         $this->file = $file;
89 89
     }
@@ -107,7 +107,7 @@  discard block
 block discarded – undo
107 107
     /**
108 108
      * {@inheritdoc}
109 109
      */
110
-    public function setPath(?string $path): void
110
+    public function setPath(?string $path) : void
111 111
     {
112 112
         $this->path = $path;
113 113
     }
Please login to merge, or discard this patch.