@@ -1,6 +1,6 @@ |
||
| 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 | |
@@ -1,6 +1,6 @@ discard block |
||
| 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 |
||
| 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 |
||
| 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 |
||
| 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 | } |
@@ -1,6 +1,6 @@ discard block |
||
| 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 |
||
| 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 | } |
@@ -1,6 +1,6 @@ discard block |
||
| 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 |
||
| 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 | } |
@@ -1,6 +1,6 @@ discard block |
||
| 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 |
||
| 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 |
||
| 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 |
||
| 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 | |
@@ -1,6 +1,6 @@ |
||
| 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 | |
@@ -1,6 +1,6 @@ |
||
| 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 | |
@@ -1,6 +1,6 @@ |
||
| 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 | |
@@ -1,6 +1,6 @@ |
||
| 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 | |