Completed
Push — master ( 339fdb...9dc0a8 )
by Rafał
08:30 queued 04:25
created
PH/Component/Core/Payment/Provider/SubscriptionPaymentProviderInterface.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\Payment\Provider;
6 6
 
Please login to merge, or discard this patch.
src/PH/Component/Core/Model/PaymentMethodInterface.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\Model;
6 6
 
Please login to merge, or discard this patch.
src/PH/Component/Core/Model/Payment.php 1 patch
Spacing   +3 added lines, -3 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\Core\Model;
6 6
 
@@ -35,7 +35,7 @@  discard block
 block discarded – undo
35 35
     /**
36 36
      * {@inheritdoc}
37 37
      */
38
-    public function setCanceledAt(?\DateTimeInterface $dateTime): void
38
+    public function setCanceledAt(?\DateTimeInterface $dateTime) : void
39 39
     {
40 40
         $this->canceledAt = $dateTime;
41 41
     }
@@ -59,7 +59,7 @@  discard block
 block discarded – undo
59 59
     /**
60 60
      * {@inheritdoc}
61 61
      */
62
-    public function setSubscription(?BaseSubscriptionInterface $subscription): void
62
+    public function setSubscription(?BaseSubscriptionInterface $subscription) : void
63 63
     {
64 64
         $this->subscription = $subscription;
65 65
     }
Please login to merge, or discard this patch.
src/PH/Component/Core/Model/PaymentInterface.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\Core\Model;
6 6
 
@@ -17,5 +17,5 @@  discard block
 block discarded – undo
17 17
     /**
18 18
      * @param \DateTimeInterface|null $dateTime
19 19
      */
20
-    public function setCanceledAt(?\DateTimeInterface $dateTime): void;
20
+    public function setCanceledAt(?\DateTimeInterface $dateTime) : void;
21 21
 }
Please login to merge, or discard this patch.
src/PH/Component/Core/SubscriptionTransitions.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;
6 6
 
Please login to merge, or discard this patch.
src/PH/Component/Core/Processor/SubscriptionPaymentProcessor.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\Processor;
6 6
 
Please login to merge, or discard this patch.
src/PH/Component/Webhook/Model/Webhook.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\Webhook\Model;
6 6
 
Please login to merge, or discard this patch.
src/PH/Behat/Mocks/SubscriptionTokenAssignerMock.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\Behat\Mocks;
6 6
 
Please login to merge, or discard this patch.
src/PH/Behat/PaymentMethodTrait.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\Behat;
6 6
 
Please login to merge, or discard this patch.