Completed
Push — master ( 339fdb...9dc0a8 )
by Rafał
08:30 queued 04:25
created
src/PH/Bundle/CoreBundle/EventListener/AssignSubscriptionTokenListener.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\CoreBundle\EventListener;
6 6
 
Please login to merge, or discard this patch.
src/PH/Bundle/CoreBundle/Validator/Constraint/AmountRange.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\CoreBundle\Validator\Constraint;
6 6
 
Please login to merge, or discard this patch.
src/PH/Bundle/CoreBundle/Event/SubscriptionEvent.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\CoreBundle\Event;
6 6
 
Please login to merge, or discard this patch.
src/PH/Bundle/CoreBundle/Provider/PaymentMethodsProvider.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\CoreBundle\Provider;
6 6
 
Please login to merge, or discard this patch.
src/PH/Bundle/CoreBundle/Facade/SubscriptionFacade.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\CoreBundle\Facade;
6 6
 
Please login to merge, or discard this patch.
src/PH/Bundle/CoreBundle/Controller/SandboxController.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\CoreBundle\Controller;
6 6
 
Please login to merge, or discard this patch.
src/PH/Bundle/CoreBundle/Doctrine/ORM/SubscriptionRepository.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\CoreBundle\Doctrine\ORM;
6 6
 
Please login to merge, or discard this patch.
src/PH/Bundle/CoreBundle/Doctrine/ORM/PaymentMethodRepository.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\CoreBundle\Doctrine\ORM;
6 6
 
@@ -33,7 +33,7 @@  discard block
 block discarded – undo
33 33
      */
34 34
     protected function applyCriteria(QueryBuilder $queryBuilder, array $criteria = []): void
35 35
     {
36
-        $criteria = array_filter($criteria, function ($value) {
36
+        $criteria = array_filter($criteria, function($value) {
37 37
             return !is_null($value);
38 38
         });
39 39
 
Please login to merge, or discard this patch.
CoreBundle/Form/Extension/PaypalGatewayConfigurationExtensionType.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\CoreBundle\Form\Extension;
6 6
 
Please login to merge, or discard this patch.