Completed
Push — master ( cec9f3...d27170 )
by Kamil
22:53
created
src/Sylius/Bundle/UserBundle/Command/CreateUserCommand.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -88,7 +88,7 @@  discard block
 block discarded – undo
88 88
             $email = $this->getHelper('dialog')->askAndValidate(
89 89
                 $output,
90 90
                 'Please enter an email:',
91
-                function ($username) {
91
+                function($username) {
92 92
                     if (empty($username)) {
93 93
                         throw new \Exception('Email can not be empty');
94 94
                     }
@@ -104,7 +104,7 @@  discard block
 block discarded – undo
104 104
             $password = $this->getHelper('dialog')->askHiddenResponseAndValidate(
105 105
                 $output,
106 106
                 'Please choose a password:',
107
-                function ($password) {
107
+                function($password) {
108 108
                     if (empty($password)) {
109 109
                         throw new \Exception('Password can not be empty');
110 110
                     }
Please login to merge, or discard this patch.
src/Sylius/Bundle/WebBundle/Behat/WebContext.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -61,7 +61,7 @@
 block discarded – undo
61 61
      */
62 62
     protected function waitForTabToActivate($tabContainer)
63 63
     {
64
-        $this->waitFor(function () use ($tabContainer) {
64
+        $this->waitFor(function() use ($tabContainer) {
65 65
             return false !== strpos($tabContainer->getAttribute('class'), 'active');
66 66
         });
67 67
     }
Please login to merge, or discard this patch.
src/Sylius/Component/Pricing/spec/Calculator/VolumeBasedCalculatorSpec.php 1 patch
Spacing   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -34,7 +34,7 @@  discard block
 block discarded – undo
34 34
     function it_assumes_quantity_is_1_if_not_provided_in_context(PriceableInterface $priceable)
35 35
     {
36 36
         $configuration = [
37
-            ['min' => 0,  'max' => 9,  'price' => 1699],
37
+            ['min' => 0, 'max' => 9, 'price' => 1699],
38 38
             ['min' => 10, 'max' => 19, 'price' => 1499],
39 39
             ['min' => 20, 'max' => 29, 'price' => 1299],
40 40
         ];
@@ -45,7 +45,7 @@  discard block
 block discarded – undo
45 45
     function it_returns_the_price_based_on_the_quantity(PriceableInterface $priceable)
46 46
     {
47 47
         $configuration = [
48
-            ['min' => 0,  'max' => 9,  'price' => 1699],
48
+            ['min' => 0, 'max' => 9, 'price' => 1699],
49 49
             ['min' => 10, 'max' => 19, 'price' => 1499],
50 50
             ['min' => 20, 'max' => 29, 'price' => 1299],
51 51
         ];
@@ -57,9 +57,9 @@  discard block
 block discarded – undo
57 57
     function it_returns_the_correct_price_for_highest_quantity_range(PriceableInterface $priceable)
58 58
     {
59 59
         $configuration = [
60
-            ['min' => 0,  'max' => 9,    'price' => 1699],
61
-            ['min' => 10, 'max' => 19,   'price' => 1499],
62
-            ['min' => 20, 'max' => 29,   'price' => 1299],
60
+            ['min' => 0, 'max' => 9, 'price' => 1699],
61
+            ['min' => 10, 'max' => 19, 'price' => 1499],
62
+            ['min' => 20, 'max' => 29, 'price' => 1299],
63 63
             ['min' => 30, 'max' => null, 'price' => 1099],
64 64
         ];
65 65
 
Please login to merge, or discard this patch.
src/Sylius/Behat/MultiContainerExtension/Loader/XmlFileLoader.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -520,7 +520,7 @@
 block discarded – undo
520 520
 
521 521
             // can it be handled by an extension?
522 522
             if (!$this->container->hasExtension($node->namespaceURI)) {
523
-                $extensionNamespaces = array_filter(array_map(function ($ext) { return $ext->getNamespace(); }, $this->container->getExtensions()));
523
+                $extensionNamespaces = array_filter(array_map(function($ext) { return $ext->getNamespace(); }, $this->container->getExtensions()));
524 524
                 throw new InvalidArgumentException(sprintf(
525 525
                     'There is no extension able to load the configuration for "%s" (in %s). Looked for namespace "%s", found %s',
526 526
                     $node->tagName,
Please login to merge, or discard this patch.
src/Sylius/Behat/Context/Setup/ProductContext.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -140,7 +140,7 @@
 block discarded – undo
140 140
         $product = $this->productFactory->createNew();
141 141
         $product->setName($productName);
142 142
         $product->setPrice(0);
143
-        $product->setDescription('Awesome ' . $productName);
143
+        $product->setDescription('Awesome '.$productName);
144 144
         $product->addChannel($channel);
145 145
 
146 146
         $this->productRepository->add($product);
Please login to merge, or discard this patch.
Bundle/ChannelBundle/spec/Context/FakeChannel/FakeChannelPersisterSpec.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -79,7 +79,7 @@
 block discarded – undo
79 79
         $filterResponseEvent->getResponse()->willReturn($response);
80 80
 
81 81
         $response->headers = $responseHeaderBag;
82
-        $responseHeaderBag->setCookie(Argument::that(function (Cookie $cookie) {
82
+        $responseHeaderBag->setCookie(Argument::that(function(Cookie $cookie) {
83 83
             if ($cookie->getName() !== '_channel_code') {
84 84
                 return false;
85 85
             }
Please login to merge, or discard this patch.
src/Sylius/Behat/CookieSetter.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -67,6 +67,6 @@
 block discarded – undo
67 67
             return;
68 68
         }
69 69
 
70
-        $this->minkSession->visit(rtrim($this->minkParameters['base_url'], '/') . '/');
70
+        $this->minkSession->visit(rtrim($this->minkParameters['base_url'], '/').'/');
71 71
     }
72 72
 }
Please login to merge, or discard this patch.
src/Sylius/Behat/Page/Checkout/CheckoutThankYouPage.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -44,7 +44,7 @@
 block discarded – undo
44 44
      */
45 45
     public function waitForResponse($timeout)
46 46
     {
47
-        $this->getDocument()->waitFor($timeout, function () {
47
+        $this->getDocument()->waitFor($timeout, function() {
48 48
             return $this->isOpen();
49 49
         });
50 50
     }
Please login to merge, or discard this patch.
src/Sylius/Behat/Page/External/PaypalExpressCheckoutPage.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -28,7 +28,7 @@  discard block
 block discarded – undo
28 28
      */
29 29
     public function logIn($email, $password)
30 30
     {
31
-        $hasLoginButton = $this->getDocument()->waitFor(15, function () {
31
+        $hasLoginButton = $this->getDocument()->waitFor(15, function() {
32 32
             return $this->getDocument()->hasButton('login_button');
33 33
         });
34 34
 
@@ -36,7 +36,7 @@  discard block
 block discarded – undo
36 36
             $this->getDocument()->pressButton('login_button');
37 37
         }
38 38
 
39
-        $this->getDocument()->waitFor(15, function () {
39
+        $this->getDocument()->waitFor(15, function() {
40 40
             return $this->getDocument()->hasField('login_email');
41 41
         });
42 42
 
@@ -50,7 +50,7 @@  discard block
 block discarded – undo
50 50
      */
51 51
     public function pay()
52 52
     {
53
-        $this->getDocument()->waitFor(15, function () {
53
+        $this->getDocument()->waitFor(15, function() {
54 54
             return $this->getDocument()->hasButton('continue');
55 55
         });
56 56
         $this->getDocument()->pressButton('continue');
@@ -61,7 +61,7 @@  discard block
 block discarded – undo
61 61
      */
62 62
     public function cancel()
63 63
     {
64
-        $this->getDocument()->waitFor(15, function () {
64
+        $this->getDocument()->waitFor(15, function() {
65 65
             return $this->getDocument()->hasButton('cancel_return');
66 66
         });
67 67
         $this->getDocument()->pressButton('cancel_return');
Please login to merge, or discard this patch.