Completed
Push — 1.0-coding-standard ( 22328c )
by Kamil
98:35 queued 69:17
created
src/Sylius/Behat/Page/Admin/Channel/IndexPageInterface.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\Behat\Page\Admin\Channel;
15 15
 
Please login to merge, or discard this patch.
src/Sylius/Behat/Page/Admin/TaxRate/CreatePage.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\Behat\Page\Admin\TaxRate;
15 15
 
Please login to merge, or discard this patch.
src/Sylius/Behat/Page/SymfonyPage.php 1 patch
Spacing   +3 added lines, -3 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\Behat\Page;
15 15
 
@@ -106,8 +106,8 @@  discard block
 block discarded – undo
106 106
      */
107 107
     final protected function makePathAbsolute($path)
108 108
     {
109
-        $baseUrl = rtrim($this->getParameter('base_url'), '/').'/';
109
+        $baseUrl = rtrim($this->getParameter('base_url'), '/') . '/';
110 110
 
111
-        return 0 !== strpos($path, 'http') ? $baseUrl.ltrim($path, '/') : $path;
111
+        return 0 !== strpos($path, 'http') ? $baseUrl . ltrim($path, '/') : $path;
112 112
     }
113 113
 }
Please login to merge, or discard this patch.
src/Sylius/Behat/Page/External/PaypalExpressCheckoutPage.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\Behat\Page\External;
15 15
 
Please login to merge, or discard this patch.
src/Sylius/Behat/spec/Service/NotificationCheckerSpec.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\Behat\Service;
15 15
 
Please login to merge, or discard this patch.
src/Sylius/Behat/spec/Service/Resolver/CurrentPageResolverSpec.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\Behat\Service\Resolver;
15 15
 
Please login to merge, or discard this patch.
src/Sylius/Behat/spec/Service/Mocker/MockerSpec.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\Behat;
15 15
 
Please login to merge, or discard this patch.
src/Sylius/Behat/Context/Domain/ManagingProductsContext.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\Behat\Context\Domain;
15 15
 
Please login to merge, or discard this patch.
src/Sylius/Behat/Context/Domain/CartContext.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\Behat\Context\Domain;
15 15
 
@@ -51,7 +51,7 @@  discard block
 block discarded – undo
51 51
      */
52 52
     public function theyAbandonedTheirCart(OrderInterface $cart, $amount, $time)
53 53
     {
54
-        $cart->setUpdatedAt(new \DateTime('-'.$amount.' '.$time));
54
+        $cart->setUpdatedAt(new \DateTime('-' . $amount . ' ' . $time));
55 55
         $this->orderManager->flush();
56 56
     }
57 57
 
Please login to merge, or discard this patch.