Completed
Push — master ( 339fdb...9dc0a8 )
by Rafał
08:30 queued 04:25
created
src/PH/Component/Subscription/Model/SubscriptionItemInterface.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
 namespace PH\Component\Subscription\Model;
6 6
 
Please login to merge, or discard this patch.
src/PH/Component/Subscription/Model/Subscription.php 1 patch
Spacing   +4 added lines, -4 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
 namespace PH\Component\Subscription\Model;
6 6
 
@@ -148,7 +148,7 @@  discard block
 block discarded – undo
148 148
     /**
149 149
      * {@inheritdoc}
150 150
      */
151
-    public function setStartDate(?\DateTimeInterface $startDate): void
151
+    public function setStartDate(?\DateTimeInterface $startDate) : void
152 152
     {
153 153
         $this->startDate = $startDate;
154 154
     }
@@ -164,7 +164,7 @@  discard block
 block discarded – undo
164 164
     /**
165 165
      * {@inheritdoc}
166 166
      */
167
-    public function setType(?string $type): void
167
+    public function setType(?string $type) : void
168 168
     {
169 169
         $this->type = $type;
170 170
     }
@@ -180,7 +180,7 @@  discard block
 block discarded – undo
180 180
     /**
181 181
      * {@inheritdoc}
182 182
      */
183
-    public function setPurchaseCompletedAt(?\DateTimeInterface $purchaseCompletedAt): void
183
+    public function setPurchaseCompletedAt(?\DateTimeInterface $purchaseCompletedAt) : void
184 184
     {
185 185
         $this->purchaseCompletedAt = $purchaseCompletedAt;
186 186
     }
Please login to merge, or discard this patch.
src/PH/Component/Subscription/Model/SubscriptionAwareInterface.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
 namespace PH\Component\Subscription\Model;
6 6
 
@@ -14,5 +14,5 @@  discard block
 block discarded – undo
14 14
     /**
15 15
      * @param SubscriptionInterface|null $subscription
16 16
      */
17
-    public function setSubscription(?SubscriptionInterface $subscription): void;
17
+    public function setSubscription(?SubscriptionInterface $subscription) : void;
18 18
 }
Please login to merge, or discard this patch.
src/PH/Component/Subscription/Model/SubscriptionItem.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
 namespace PH\Component\Subscription\Model;
6 6
 
@@ -50,7 +50,7 @@  discard block
 block discarded – undo
50 50
     /**
51 51
      * {@inheritdoc}
52 52
      */
53
-    public function setSubscription(?SubscriptionInterface $subscription): void
53
+    public function setSubscription(?SubscriptionInterface $subscription) : void
54 54
     {
55 55
         $this->subscription = $subscription;
56 56
     }
Please login to merge, or discard this patch.
src/PH/Component/Subscription/Model/SubscriptionInterface.php 1 patch
Spacing   +4 added lines, -4 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
 namespace PH\Component\Subscription\Model;
6 6
 
@@ -64,7 +64,7 @@  discard block
 block discarded – undo
64 64
     /**
65 65
      * @param \DateTimeInterface|null $startDate
66 66
      */
67
-    public function setStartDate(?\DateTimeInterface $startDate): void;
67
+    public function setStartDate(?\DateTimeInterface $startDate) : void;
68 68
 
69 69
     /**
70 70
      * @return null|string
@@ -74,7 +74,7 @@  discard block
 block discarded – undo
74 74
     /**
75 75
      * @param null|string $type
76 76
      */
77
-    public function setType(?string $type): void;
77
+    public function setType(?string $type) : void;
78 78
 
79 79
     /**
80 80
      * @return \DateTimeInterface|null
@@ -84,7 +84,7 @@  discard block
 block discarded – undo
84 84
     /**
85 85
      * @param \DateTimeInterface|null $purchaseCompletedAt
86 86
      */
87
-    public function setPurchaseCompletedAt(?\DateTimeInterface $purchaseCompletedAt): void;
87
+    public function setPurchaseCompletedAt(?\DateTimeInterface $purchaseCompletedAt) : void;
88 88
 
89 89
     public function completePurchase(): void;
90 90
 
Please login to merge, or discard this patch.
src/PH/Component/Core/Factory/PaymentMethodFactory.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
 namespace PH\Component\Core\Factory;
6 6
 
Please login to merge, or discard this patch.
src/PH/Component/Core/Repository/PaymentRepositoryInterface.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
 namespace PH\Component\Core\Repository;
6 6
 
Please login to merge, or discard this patch.
src/PH/Component/Core/Assigner/SubscriptionTokenAssigner.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
 namespace PH\Component\Core\Assigner;
6 6
 
Please login to merge, or discard this patch.
src/PH/Component/Core/Resolver/StateResolverInterface.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
 namespace PH\Component\Core\Resolver;
6 6
 
Please login to merge, or discard this patch.