Completed
Push — travis-trusty ( e83726 )
by Kamil
35:22
created
src/Sylius/Component/Locale/spec/Converter/LocaleConverterSpec.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\Locale\Converter;
15 15
 
Please login to merge, or discard this patch.
src/Sylius/Component/Locale/spec/Provider/LocaleProviderSpec.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\Locale\Provider;
15 15
 
Please login to merge, or discard this patch.
src/Sylius/Component/Locale/spec/Model/LocaleSpec.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\Locale\Model;
15 15
 
Please login to merge, or discard this patch.
src/Sylius/Component/Locale/Context/ImmutableLocaleContext.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\Context;
15 15
 
Please login to merge, or discard this patch.
src/Sylius/Component/Locale/Converter/LocaleConverter.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\Converter;
15 15
 
Please login to merge, or discard this patch.
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.