Completed
Push — scalar-types/resource ( 4ed1ad...4eb8b4 )
by Kamil
23:41
created
src/Sylius/Component/Registry/spec/ServiceRegistrySpec.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -9,11 +9,11 @@
 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\Registry;
15 15
 
16
-require_once __DIR__.'/Fixture/SampleServiceInterface.php';
16
+require_once __DIR__ . '/Fixture/SampleServiceInterface.php';
17 17
 
18 18
 use PhpSpec\ObjectBehavior;
19 19
 use spec\Sylius\Component\Registry\Fixture\SampleServiceInterface;
Please login to merge, or discard this patch.
src/Sylius/Component/Registry/spec/PrioritizedServiceRegistrySpec.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -9,11 +9,11 @@
 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\Registry;
15 15
 
16
-require_once __DIR__.'/Fixture/SampleServiceInterface.php';
16
+require_once __DIR__ . '/Fixture/SampleServiceInterface.php';
17 17
 
18 18
 use PhpSpec\ObjectBehavior;
19 19
 use Prophecy\Argument;
Please login to merge, or discard this patch.
src/Sylius/Component/Locale/spec/Context/CompositeLocaleContextSpec.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\Context;
15 15
 
Please login to merge, or discard this patch.
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/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/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.