@@ -84,7 +84,7 @@ discard block |
||
| 84 | 84 | $this->loadFixturesFromFile('authentication/api_administrator.yml'); |
| 85 | 85 | $products = $this->loadFixturesFromFile('resources/products.yml'); |
| 86 | 86 | |
| 87 | - $this->client->request('GET', '/api/v1/products/'.$products['product1']->getId(), [], [], static::$authorizedHeaderWithAccept); |
|
| 87 | + $this->client->request('GET', '/api/v1/products/' . $products['product1']->getId(), [], [], static::$authorizedHeaderWithAccept); |
|
| 88 | 88 | |
| 89 | 89 | $response = $this->client->getResponse(); |
| 90 | 90 | $this->assertResponse($response, 'product/show_response', Response::HTTP_OK); |
@@ -111,12 +111,12 @@ discard block |
||
| 111 | 111 | $this->loadFixturesFromFile('authentication/api_administrator.yml'); |
| 112 | 112 | $products = $this->loadFixturesFromFile('resources/products.yml'); |
| 113 | 113 | |
| 114 | - $this->client->request('DELETE', '/api/v1/products/'.$products['product1']->getId(), [], [], static::$authorizedHeaderWithContentType, []); |
|
| 114 | + $this->client->request('DELETE', '/api/v1/products/' . $products['product1']->getId(), [], [], static::$authorizedHeaderWithContentType, []); |
|
| 115 | 115 | |
| 116 | 116 | $response = $this->client->getResponse(); |
| 117 | 117 | $this->assertResponseCode($response, Response::HTTP_NO_CONTENT); |
| 118 | 118 | |
| 119 | - $this->client->request('GET', '/api/v1/products/'.$products['product1']->getId(), [], [], static::$authorizedHeaderWithAccept); |
|
| 119 | + $this->client->request('GET', '/api/v1/products/' . $products['product1']->getId(), [], [], static::$authorizedHeaderWithAccept); |
|
| 120 | 120 | |
| 121 | 121 | $response = $this->client->getResponse(); |
| 122 | 122 | $this->assertResponse($response, 'error/not_found_response', Response::HTTP_NOT_FOUND); |
@@ -186,7 +186,7 @@ discard block |
||
| 186 | 186 | } |
| 187 | 187 | } |
| 188 | 188 | EOT; |
| 189 | - $this->client->request('PUT', '/api/v1/products/'. $products["product3"]->getId(), [], [], static::$authorizedHeaderWithContentType, $data); |
|
| 189 | + $this->client->request('PUT', '/api/v1/products/' . $products["product3"]->getId(), [], [], static::$authorizedHeaderWithContentType, $data); |
|
| 190 | 190 | $response = $this->client->getResponse(); |
| 191 | 191 | $this->assertResponseCode($response, Response::HTTP_NO_CONTENT); |
| 192 | 192 | } |
@@ -210,7 +210,7 @@ discard block |
||
| 210 | 210 | } |
| 211 | 211 | } |
| 212 | 212 | EOT; |
| 213 | - $this->client->request('PATCH', '/api/v1/products/'. $products["product1"]->getId(), [], [], static::$authorizedHeaderWithContentType, $data); |
|
| 213 | + $this->client->request('PATCH', '/api/v1/products/' . $products["product1"]->getId(), [], [], static::$authorizedHeaderWithContentType, $data); |
|
| 214 | 214 | $response = $this->client->getResponse(); |
| 215 | 215 | $this->assertResponseCode($response, Response::HTTP_NO_CONTENT); |
| 216 | 216 | } |
@@ -145,7 +145,7 @@ discard block |
||
| 145 | 145 | } |
| 146 | 146 | } |
| 147 | 147 | } |
| 148 | -EOT; |
|
| 148 | +eot; |
|
| 149 | 149 | |
| 150 | 150 | $this->client->request('POST', '/api/v1/products/', [], [], static::$authorizedHeaderWithContentType, $data); |
| 151 | 151 | |
@@ -185,7 +185,7 @@ discard block |
||
| 185 | 185 | } |
| 186 | 186 | } |
| 187 | 187 | } |
| 188 | -EOT; |
|
| 188 | +eot; |
|
| 189 | 189 | $this->client->request('PUT', '/api/v1/products/'. $products["product3"]->getId(), [], [], static::$authorizedHeaderWithContentType, $data); |
| 190 | 190 | $response = $this->client->getResponse(); |
| 191 | 191 | $this->assertResponseCode($response, Response::HTTP_NO_CONTENT); |
@@ -209,7 +209,7 @@ discard block |
||
| 209 | 209 | } |
| 210 | 210 | } |
| 211 | 211 | } |
| 212 | -EOT; |
|
| 212 | +eot; |
|
| 213 | 213 | $this->client->request('PATCH', '/api/v1/products/'. $products["product1"]->getId(), [], [], static::$authorizedHeaderWithContentType, $data); |
| 214 | 214 | $response = $this->client->getResponse(); |
| 215 | 215 | $this->assertResponseCode($response, Response::HTTP_NO_CONTENT); |
@@ -16,8 +16,8 @@ |
||
| 16 | 16 | use Sylius\Bundle\ResourceBundle\SyliusResourceBundle; |
| 17 | 17 | use Sylius\Bundle\ReviewBundle\Form\Type\ReviewType; |
| 18 | 18 | use Sylius\Component\Resource\Factory\Factory; |
| 19 | -use Sylius\Component\Review\Model\ReviewerInterface; |
|
| 20 | 19 | use Sylius\Component\Review\Model\ReviewInterface; |
| 20 | +use Sylius\Component\Review\Model\ReviewerInterface; |
|
| 21 | 21 | use Symfony\Component\Config\Definition\Builder\ArrayNodeDefinition; |
| 22 | 22 | use Symfony\Component\Config\Definition\Builder\TreeBuilder; |
| 23 | 23 | use Symfony\Component\Config\Definition\ConfigurationInterface; |
@@ -27,7 +27,7 @@ |
||
| 27 | 27 | public function load(array $config, ContainerBuilder $container) |
| 28 | 28 | { |
| 29 | 29 | $config = $this->processConfiguration($this->getConfiguration([], $container), $config); |
| 30 | - $loader = new XmlFileLoader($container, new FileLocator(__DIR__.'/../Resources/config')); |
|
| 30 | + $loader = new XmlFileLoader($container, new FileLocator(__DIR__ . '/../Resources/config')); |
|
| 31 | 31 | |
| 32 | 32 | $loader->load('services.xml'); |
| 33 | 33 | $loader->load(sprintf('services/integrations/%s.xml', $config['driver'])); |
@@ -32,7 +32,7 @@ |
||
| 32 | 32 | public function load(array $config, ContainerBuilder $container) |
| 33 | 33 | { |
| 34 | 34 | $config = $this->processConfiguration($this->getConfiguration([], $container), $config); |
| 35 | - $loader = new XmlFileLoader($container, new FileLocator(__DIR__.'/../Resources/config')); |
|
| 35 | + $loader = new XmlFileLoader($container, new FileLocator(__DIR__ . '/../Resources/config')); |
|
| 36 | 36 | |
| 37 | 37 | $loader->load('services.xml'); |
| 38 | 38 | |
@@ -26,7 +26,7 @@ |
||
| 26 | 26 | */ |
| 27 | 27 | public function load(array $config, ContainerBuilder $container) |
| 28 | 28 | { |
| 29 | - $loader = new XmlFileLoader($container, new FileLocator(__DIR__.'/../Resources/config')); |
|
| 29 | + $loader = new XmlFileLoader($container, new FileLocator(__DIR__ . '/../Resources/config')); |
|
| 30 | 30 | |
| 31 | 31 | $loader->load('services.xml'); |
| 32 | 32 | } |
@@ -15,7 +15,6 @@ |
||
| 15 | 15 | use Symfony\Component\Config\FileLocator; |
| 16 | 16 | use Symfony\Component\DependencyInjection\ContainerBuilder; |
| 17 | 17 | use Symfony\Component\DependencyInjection\Loader\XmlFileLoader; |
| 18 | -use Symfony\Component\DependencyInjection\Reference; |
|
| 19 | 18 | |
| 20 | 19 | /** |
| 21 | 20 | * @author Paweł Jędrzejewski <[email protected]> |
@@ -27,7 +27,7 @@ |
||
| 27 | 27 | public function load(array $config, ContainerBuilder $container) |
| 28 | 28 | { |
| 29 | 29 | $config = $this->processConfiguration($this->getConfiguration([], $container), $config); |
| 30 | - $loader = new XmlFileLoader($container, new FileLocator(__DIR__.'/../Resources/config')); |
|
| 30 | + $loader = new XmlFileLoader($container, new FileLocator(__DIR__ . '/../Resources/config')); |
|
| 31 | 31 | |
| 32 | 32 | $loader->load(sprintf('services/integrations/%s.xml', $config['driver'])); |
| 33 | 33 | |
@@ -27,7 +27,7 @@ |
||
| 27 | 27 | public function load(array $config, ContainerBuilder $container) |
| 28 | 28 | { |
| 29 | 29 | $config = $this->processConfiguration($this->getConfiguration([], $container), $config); |
| 30 | - $loader = new XmlFileLoader($container, new FileLocator(__DIR__.'/../Resources/config')); |
|
| 30 | + $loader = new XmlFileLoader($container, new FileLocator(__DIR__ . '/../Resources/config')); |
|
| 31 | 31 | |
| 32 | 32 | $this->registerResources('sylius', $config['driver'], $config['resources'], $container); |
| 33 | 33 | |
@@ -27,7 +27,7 @@ |
||
| 27 | 27 | public function load(array $config, ContainerBuilder $container) |
| 28 | 28 | { |
| 29 | 29 | $config = $this->processConfiguration($this->getConfiguration([], $container), $config); |
| 30 | - $loader = new XmlFileLoader($container, new FileLocator(__DIR__.'/../Resources/config')); |
|
| 30 | + $loader = new XmlFileLoader($container, new FileLocator(__DIR__ . '/../Resources/config')); |
|
| 31 | 31 | |
| 32 | 32 | $this->registerResources('sylius', $config['driver'], $config['resources'], $container); |
| 33 | 33 | |
@@ -130,6 +130,8 @@ |
||
| 130 | 130 | /** |
| 131 | 131 | * @Given I have proceeded order with :shippingMethodName shipping method and :paymentMethodName payment |
| 132 | 132 | * @When I proceed with :shippingMethodName shipping method and :paymentMethodName payment |
| 133 | + * @param string $shippingMethodName |
|
| 134 | + * @param string $paymentMethodName |
|
| 133 | 135 | */ |
| 134 | 136 | public function iProceedOrderWithShippingMethodAndPayment($shippingMethodName, $paymentMethodName) |
| 135 | 137 | { |