Completed
Push — master ( eee865...6f8c44 )
by Rafał
08:46
created
src/PH/Bundle/PayumBundle/Factory/BankAccountFormFactoryInterface.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\Bundle\PayumBundle\Factory;
6 6
 
Please login to merge, or discard this patch.
src/PH/Bundle/PayumBundle/Factory/BankAccountFormFactory.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\Bundle\PayumBundle\Factory;
6 6
 
Please login to merge, or discard this patch.
src/PH/Bundle/PayumBundle/Model/RecurringBankAccount.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\Bundle\PayumBundle\Model;
6 6
 
@@ -24,7 +24,7 @@  discard block
 block discarded – undo
24 24
     /**
25 25
      * @param null|string $email
26 26
      */
27
-    public function setEmail(?string $email): void
27
+    public function setEmail(?string $email) : void
28 28
     {
29 29
         $this->email = $email;
30 30
     }
Please login to merge, or discard this patch.
src/PH/Bundle/PayumBundle/Model/EmailAwareInterface.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\Bundle\PayumBundle\Model;
6 6
 
@@ -14,5 +14,5 @@  discard block
 block discarded – undo
14 14
     /**
15 15
      * @param null|string $email
16 16
      */
17
-    public function setEmail(?string $email): void;
17
+    public function setEmail(?string $email) : void;
18 18
 }
Please login to merge, or discard this patch.