Passed
Pull Request — master (#202)
by
unknown
07:27
created
src/Model/ImagesAwareTrait.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -115,7 +115,7 @@
 block discarded – undo
115 115
      */
116 116
     public function getImagesByType(string $type): Collection
117 117
     {
118
-        return $this->images->filter(function (ImageInterface $image) use ($type) {
118
+        return $this->images->filter(function(ImageInterface $image) use ($type) {
119 119
             return $type === $image->getType();
120 120
         });
121 121
     }
Please login to merge, or discard this patch.
src/Form/Type/BrandChoiceType.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -45,7 +45,7 @@
 block discarded – undo
45 45
     public function configureOptions(OptionsResolver $resolver): void
46 46
     {
47 47
         $resolver->setDefaults([
48
-            'choices' => function (Options $options) {
48
+            'choices' => function(Options $options) {
49 49
                 return $this->brandRepository->findAll();
50 50
             },
51 51
             'choice_value' => 'code',
Please login to merge, or discard this patch.