Failed Conditions
Pull Request — master (#175)
by Łukasz
04:12
created
src/Factory/AdjustmentViewFactory.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -17,7 +17,7 @@
 block discarded – undo
17 17
         $this->priceViewFactory = $priceViewFactory;
18 18
     }
19 19
 
20
-    public function create(AdjustmentInterface $adjustment, ?AdjustmentView $additionalAmount): AdjustmentView
20
+    public function create(AdjustmentInterface $adjustment, ? AdjustmentView $additionalAmount) : AdjustmentView
21 21
     {
22 22
         $adjustmentView = new AdjustmentView();
23 23
 
Please login to merge, or discard this patch.
src/Factory/AdjustmentViewFactoryInterface.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -9,5 +9,5 @@
 block discarded – undo
9 9
 
10 10
 interface AdjustmentViewFactoryInterface
11 11
 {
12
-    public function create(AdjustmentInterface $adjustment, ?AdjustmentView $additionalAmount): AdjustmentView;
12
+    public function create(AdjustmentInterface $adjustment, ? AdjustmentView $additionalAmount) : AdjustmentView;
13 13
 }
Please login to merge, or discard this patch.