@@ -88,7 +88,7 @@ discard block |
||
| 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 |
||
| 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 | } |
@@ -61,7 +61,7 @@ |
||
| 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 | } |
@@ -34,7 +34,7 @@ discard block |
||
| 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 |
||
| 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 |
||
| 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 | |
@@ -140,7 +140,7 @@ |
||
| 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); |
@@ -79,7 +79,7 @@ |
||
| 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 | } |
@@ -65,7 +65,7 @@ |
||
| 65 | 65 | $objects = $this->loadFixturesFromFile('books.yml'); |
| 66 | 66 | |
| 67 | 67 | $data = |
| 68 | - <<<EOT |
|
| 68 | + <<<EOT |
|
| 69 | 69 | { |
| 70 | 70 | "title": "Star Wars: Dark Disciple" |
| 71 | 71 | } |
@@ -52,7 +52,7 @@ discard block |
||
| 52 | 52 | } |
| 53 | 53 | EOT; |
| 54 | 54 | |
| 55 | - $this->client->request('PUT', '/books/'. $objects["book1"]->getId(), [], [], ['CONTENT_TYPE' => 'application/json'], $data); |
|
| 55 | + $this->client->request('PUT', '/books/'.$objects["book1"]->getId(), [], [], ['CONTENT_TYPE' => 'application/json'], $data); |
|
| 56 | 56 | $response = $this->client->getResponse(); |
| 57 | 57 | $this->assertResponseCode($response, Response::HTTP_NO_CONTENT); |
| 58 | 58 | } |
@@ -71,7 +71,7 @@ discard block |
||
| 71 | 71 | } |
| 72 | 72 | EOT; |
| 73 | 73 | |
| 74 | - $this->client->request('PATCH', '/books/'. $objects["book1"]->getId(), [], [], ['CONTENT_TYPE' => 'application/json'], $data); |
|
| 74 | + $this->client->request('PATCH', '/books/'.$objects["book1"]->getId(), [], [], ['CONTENT_TYPE' => 'application/json'], $data); |
|
| 75 | 75 | $response = $this->client->getResponse(); |
| 76 | 76 | $this->assertResponseCode($response, Response::HTTP_NO_CONTENT); |
| 77 | 77 | } |
@@ -83,7 +83,7 @@ discard block |
||
| 83 | 83 | { |
| 84 | 84 | $objects = $this->loadFixturesFromFile('books.yml'); |
| 85 | 85 | |
| 86 | - $this->client->request('DELETE', '/books/'. $objects["book1"]->getId()); |
|
| 86 | + $this->client->request('DELETE', '/books/'.$objects["book1"]->getId()); |
|
| 87 | 87 | $response = $this->client->getResponse(); |
| 88 | 88 | $this->assertResponseCode($response, Response::HTTP_NO_CONTENT); |
| 89 | 89 | } |
@@ -95,7 +95,7 @@ discard block |
||
| 95 | 95 | { |
| 96 | 96 | $objects = $this->loadFixturesFromFile('books.yml'); |
| 97 | 97 | |
| 98 | - $this->client->request('GET', '/books/'. $objects["book1"]->getId()); |
|
| 98 | + $this->client->request('GET', '/books/'.$objects["book1"]->getId()); |
|
| 99 | 99 | $response = $this->client->getResponse(); |
| 100 | 100 | $this->assertResponse($response, 'books/show_response'); |
| 101 | 101 | } |
@@ -71,7 +71,7 @@ |
||
| 71 | 71 | */ |
| 72 | 72 | protected function waitForModalToAppear(NodeElement $modalContainer) |
| 73 | 73 | { |
| 74 | - $this->getDocument()->waitFor(1, function () use ($modalContainer) { |
|
| 74 | + $this->getDocument()->waitFor(1, function() use ($modalContainer) { |
|
| 75 | 75 | return false !== strpos($modalContainer->getAttribute('class'), 'in'); |
| 76 | 76 | }); |
| 77 | 77 | } |
@@ -53,7 +53,7 @@ discard block |
||
| 53 | 53 | */ |
| 54 | 54 | public function getConfigurations() |
| 55 | 55 | { |
| 56 | - return $this->processFileResources(function ($file) { |
|
| 56 | + return $this->processFileResources(function($file) { |
|
| 57 | 57 | return $this->loader->load($file); |
| 58 | 58 | }); |
| 59 | 59 | } |
@@ -63,7 +63,7 @@ discard block |
||
| 63 | 63 | */ |
| 64 | 64 | public function getResources() |
| 65 | 65 | { |
| 66 | - return $this->processFileResources(function ($file) { |
|
| 66 | + return $this->processFileResources(function($file) { |
|
| 67 | 67 | return new FileResource($file); |
| 68 | 68 | }); |
| 69 | 69 | } |
@@ -61,7 +61,7 @@ |
||
| 61 | 61 | */ |
| 62 | 62 | private function formatCycleToString(array $themes) |
| 63 | 63 | { |
| 64 | - $themesNames = array_map(function (ThemeInterface $theme) { |
|
| 64 | + $themesNames = array_map(function(ThemeInterface $theme) { |
|
| 65 | 65 | return $theme->getName(); |
| 66 | 66 | }, $themes); |
| 67 | 67 | |