@@ -11,9 +11,9 @@ |
||
| 11 | 11 | |
| 12 | 12 | use Doctrine\Common\Annotations\AnnotationRegistry; |
| 13 | 13 | |
| 14 | -$loader = require __DIR__.'/../../vendor/autoload.php'; |
|
| 14 | +$loader = require __DIR__ . '/../../vendor/autoload.php'; |
|
| 15 | 15 | |
| 16 | -require __DIR__.'/AppKernel.php'; |
|
| 16 | +require __DIR__ . '/AppKernel.php'; |
|
| 17 | 17 | |
| 18 | 18 | AnnotationRegistry::registerLoader([$loader, 'loadClass']); |
| 19 | 19 | |
@@ -100,7 +100,7 @@ discard block |
||
| 100 | 100 | */ |
| 101 | 101 | public function iShouldSeeThisShippingAddressAsShippingAddress($fullName) |
| 102 | 102 | { |
| 103 | - $address = $this->sharedStorage->get('shipping_address_'.StringInflector::nameToLowercaseCode($fullName)); |
|
| 103 | + $address = $this->sharedStorage->get('shipping_address_' . StringInflector::nameToLowercaseCode($fullName)); |
|
| 104 | 104 | |
| 105 | 105 | Assert::true($this->completePage->hasShippingAddress($address)); |
| 106 | 106 | } |
@@ -110,7 +110,7 @@ discard block |
||
| 110 | 110 | */ |
| 111 | 111 | public function iShouldSeeThisBillingAddressAsBillingAddress($fullName) |
| 112 | 112 | { |
| 113 | - $address = $this->sharedStorage->get('billing_address_'.StringInflector::nameToLowercaseCode($fullName)); |
|
| 113 | + $address = $this->sharedStorage->get('billing_address_' . StringInflector::nameToLowercaseCode($fullName)); |
|
| 114 | 114 | |
| 115 | 115 | Assert::true($this->completePage->hasBillingAddress($address)); |
| 116 | 116 | } |
@@ -71,7 +71,7 @@ discard block |
||
| 71 | 71 | $this->loadFixturesFromFile('authentication/api_administrator.yml'); |
| 72 | 72 | $locales = $this->loadFixturesFromFile('resources/locales.yml'); |
| 73 | 73 | |
| 74 | - $this->client->request('GET', '/api/v1/locales/'.$locales['locale_en_US']->getCode(), [], [], static::$authorizedHeaderWithAccept); |
|
| 74 | + $this->client->request('GET', '/api/v1/locales/' . $locales['locale_en_US']->getCode(), [], [], static::$authorizedHeaderWithAccept); |
|
| 75 | 75 | |
| 76 | 76 | $response = $this->client->getResponse(); |
| 77 | 77 | $this->assertResponse($response, 'locale/show_response', Response::HTTP_OK); |
@@ -156,12 +156,12 @@ discard block |
||
| 156 | 156 | $this->loadFixturesFromFile('authentication/api_administrator.yml'); |
| 157 | 157 | $locales = $this->loadFixturesFromFile('resources/locales.yml'); |
| 158 | 158 | |
| 159 | - $this->client->request('DELETE', '/api/v1/locales/'.$locales['locale_en_US']->getCode(), [], [], static::$authorizedHeaderWithContentType, []); |
|
| 159 | + $this->client->request('DELETE', '/api/v1/locales/' . $locales['locale_en_US']->getCode(), [], [], static::$authorizedHeaderWithContentType, []); |
|
| 160 | 160 | |
| 161 | 161 | $response = $this->client->getResponse(); |
| 162 | 162 | $this->assertResponseCode($response, Response::HTTP_NO_CONTENT); |
| 163 | 163 | |
| 164 | - $this->client->request('GET', '/api/v1/locales/'.$locales['locale_en_US']->getId(), [], [], static::$authorizedHeaderWithAccept); |
|
| 164 | + $this->client->request('GET', '/api/v1/locales/' . $locales['locale_en_US']->getId(), [], [], static::$authorizedHeaderWithAccept); |
|
| 165 | 165 | |
| 166 | 166 | $response = $this->client->getResponse(); |
| 167 | 167 | $this->assertResponse($response, 'error/not_found_response', Response::HTTP_NOT_FOUND); |
@@ -196,6 +196,6 @@ |
||
| 196 | 196 | */ |
| 197 | 197 | public function iShouldBeCheckingOutAs($email) |
| 198 | 198 | { |
| 199 | - Assert::same($this->selectShippingPage->getPurchaserEmail(), 'Checking out as '.$email.'.'); |
|
| 199 | + Assert::same($this->selectShippingPage->getPurchaserEmail(), 'Checking out as ' . $email . '.'); |
|
| 200 | 200 | } |
| 201 | 201 | } |
@@ -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 | $loader->load(sprintf('services/integrations/%s.xml', $config['driver'])); |
| 33 | 33 | |
@@ -136,7 +136,7 @@ |
||
| 136 | 136 | |
| 137 | 137 | /** @var ImageInterface $taxonImage */ |
| 138 | 138 | $taxonImage = $this->taxonImageFactory->createNew(); |
| 139 | - $taxonImage->setFile(new UploadedFile($filesPath.$imagePath, basename($imagePath))); |
|
| 139 | + $taxonImage->setFile(new UploadedFile($filesPath . $imagePath, basename($imagePath))); |
|
| 140 | 140 | $taxonImage->setType($imageType); |
| 141 | 141 | $this->imageUploader->upload($taxonImage); |
| 142 | 142 | |
@@ -113,7 +113,7 @@ |
||
| 113 | 113 | |
| 114 | 114 | $imageForm = $this->getLastImageElement(); |
| 115 | 115 | $imageForm->fillField('Type', $type); |
| 116 | - $imageForm->find('css', 'input[type="file"]')->attachFile($filesPath.$path); |
|
| 116 | + $imageForm->find('css', 'input[type="file"]')->attachFile($filesPath . $path); |
|
| 117 | 117 | } |
| 118 | 118 | |
| 119 | 119 | /** |
@@ -75,7 +75,7 @@ discard block |
||
| 75 | 75 | $imageForm->fillField('Type', $type); |
| 76 | 76 | } |
| 77 | 77 | |
| 78 | - $imageForm->find('css', 'input[type="file"]')->attachFile($filesPath.$path); |
|
| 78 | + $imageForm->find('css', 'input[type="file"]')->attachFile($filesPath . $path); |
|
| 79 | 79 | } |
| 80 | 80 | |
| 81 | 81 | /** |
@@ -146,7 +146,7 @@ discard block |
||
| 146 | 146 | $filesPath = $this->getParameter('files_path'); |
| 147 | 147 | |
| 148 | 148 | $imageForm = $this->getImageElementByType($type); |
| 149 | - $imageForm->find('css', 'input[type="file"]')->attachFile($filesPath.$path); |
|
| 149 | + $imageForm->find('css', 'input[type="file"]')->attachFile($filesPath . $path); |
|
| 150 | 150 | } |
| 151 | 151 | |
| 152 | 152 | /** |
@@ -304,7 +304,7 @@ discard block |
||
| 304 | 304 | private function getImageElementByType($type) |
| 305 | 305 | { |
| 306 | 306 | $images = $this->getElement('images'); |
| 307 | - $typeInput = $images->find('css', 'input[value="'.$type.'"]'); |
|
| 307 | + $typeInput = $images->find('css', 'input[value="' . $type . '"]'); |
|
| 308 | 308 | |
| 309 | 309 | if (null === $typeInput) { |
| 310 | 310 | return null; |