Completed
Push — datetime-interface ( 366682...04fb4d )
by Kamil
46:21 queued 21:00
created
src/Sylius/Component/Locale/Provider/LocaleProvider.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -9,7 +9,7 @@
 block discarded – undo
9 9
  * file that was distributed with this source code.
10 10
  */
11 11
 
12
-declare(strict_types=1);
12
+declare(strict_types = 1);
13 13
 
14 14
 namespace Sylius\Component\Locale\Provider;
15 15
 
Please login to merge, or discard this patch.
src/Sylius/Component/Locale/Model/LocaleInterface.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -9,7 +9,7 @@
 block discarded – undo
9 9
  * file that was distributed with this source code.
10 10
  */
11 11
 
12
-declare(strict_types=1);
12
+declare(strict_types = 1);
13 13
 
14 14
 namespace Sylius\Component\Locale\Model;
15 15
 
Please login to merge, or discard this patch.
src/Sylius/Component/Core/Payment/RandomInvoiceNumberGenerator.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -9,7 +9,7 @@  discard block
 block discarded – undo
9 9
  * file that was distributed with this source code.
10 10
  */
11 11
 
12
-declare(strict_types=1);
12
+declare(strict_types = 1);
13 13
 
14 14
 namespace Sylius\Component\Core\Payment;
15 15
 
@@ -26,6 +26,6 @@  discard block
 block discarded – undo
26 26
      */
27 27
     public function generate(OrderInterface $order, PaymentInterface $payment)
28 28
     {
29
-        return mt_rand(1, 100000).'-'.mt_rand(1, 100000);
29
+        return mt_rand(1, 100000) . '-' . mt_rand(1, 100000);
30 30
     }
31 31
 }
Please login to merge, or discard this patch.
Component/Core/Payment/Exception/NotProvidedOrderPaymentException.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -9,7 +9,7 @@
 block discarded – undo
9 9
  * file that was distributed with this source code.
10 10
  */
11 11
 
12
-declare(strict_types=1);
12
+declare(strict_types = 1);
13 13
 
14 14
 namespace Sylius\Component\Core\Payment\Exception;
15 15
 
Please login to merge, or discard this patch.
src/Sylius/Component/Core/Payment/Provider/OrderPaymentProvider.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -9,7 +9,7 @@
 block discarded – undo
9 9
  * file that was distributed with this source code.
10 10
  */
11 11
 
12
-declare(strict_types=1);
12
+declare(strict_types = 1);
13 13
 
14 14
 namespace Sylius\Component\Core\Payment\Provider;
15 15
 
Please login to merge, or discard this patch.
src/Sylius/Component/Core/Payment/IdBasedInvoiceNumberGenerator.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -9,7 +9,7 @@  discard block
 block discarded – undo
9 9
  * file that was distributed with this source code.
10 10
  */
11 11
 
12
-declare(strict_types=1);
12
+declare(strict_types = 1);
13 13
 
14 14
 namespace Sylius\Component\Core\Payment;
15 15
 
@@ -26,6 +26,6 @@  discard block
 block discarded – undo
26 26
      */
27 27
     public function generate(OrderInterface $order, PaymentInterface $payment)
28 28
     {
29
-        return $order->getId().'-'.$payment->getId();
29
+        return $order->getId() . '-' . $payment->getId();
30 30
     }
31 31
 }
Please login to merge, or discard this patch.
src/Sylius/Component/Core/Payment/InvoiceNumberGeneratorInterface.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -9,7 +9,7 @@
 block discarded – undo
9 9
  * file that was distributed with this source code.
10 10
  */
11 11
 
12
-declare(strict_types=1);
12
+declare(strict_types = 1);
13 13
 
14 14
 namespace Sylius\Component\Core\Payment;
15 15
 
Please login to merge, or discard this patch.
src/Sylius/Component/Core/OrderProcessing/OrderTaxesProcessor.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -9,7 +9,7 @@
 block discarded – undo
9 9
  * file that was distributed with this source code.
10 10
  */
11 11
 
12
-declare(strict_types=1);
12
+declare(strict_types = 1);
13 13
 
14 14
 namespace Sylius\Component\Core\OrderProcessing;
15 15
 
Please login to merge, or discard this patch.
Sylius/Component/Core/spec/Payment/Provider/OrderPaymentProviderSpec.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -9,7 +9,7 @@
 block discarded – undo
9 9
  * file that was distributed with this source code.
10 10
  */
11 11
 
12
-declare(strict_types=1);
12
+declare(strict_types = 1);
13 13
 
14 14
 namespace spec\Sylius\Component\Core\Payment\Provider;
15 15
 
Please login to merge, or discard this patch.