@@ -12,9 +12,9 @@ |
||
12 | 12 | use Composer\Autoload\ClassLoader; |
13 | 13 | use Doctrine\Common\Annotations\AnnotationRegistry; |
14 | 14 | |
15 | -$loader = require __DIR__.'/../../vendor/autoload.php'; |
|
15 | +$loader = require __DIR__ . '/../../vendor/autoload.php'; |
|
16 | 16 | |
17 | -require __DIR__.'/AppKernel.php'; |
|
17 | +require __DIR__ . '/AppKernel.php'; |
|
18 | 18 | |
19 | 19 | AnnotationRegistry::registerLoader([$loader, 'loadClass']); |
20 | 20 |
@@ -44,7 +44,7 @@ |
||
44 | 44 | */ |
45 | 45 | public function registerContainerConfiguration(LoaderInterface $loader) |
46 | 46 | { |
47 | - $loader->load(__DIR__.'/config/config.yml'); |
|
47 | + $loader->load(__DIR__ . '/config/config.yml'); |
|
48 | 48 | } |
49 | 49 | |
50 | 50 | /** |
@@ -12,9 +12,9 @@ |
||
12 | 12 | use Composer\Autoload\ClassLoader; |
13 | 13 | use Doctrine\Common\Annotations\AnnotationRegistry; |
14 | 14 | |
15 | -$loader = require __DIR__.'/../../vendor/autoload.php'; |
|
15 | +$loader = require __DIR__ . '/../../vendor/autoload.php'; |
|
16 | 16 | |
17 | -require __DIR__.'/AppKernel.php'; |
|
17 | +require __DIR__ . '/AppKernel.php'; |
|
18 | 18 | |
19 | 19 | AnnotationRegistry::registerLoader([$loader, 'loadClass']); |
20 | 20 |
@@ -44,7 +44,7 @@ |
||
44 | 44 | */ |
45 | 45 | public function registerContainerConfiguration(LoaderInterface $loader) |
46 | 46 | { |
47 | - $loader->load(__DIR__.'/config/config.yml'); |
|
47 | + $loader->load(__DIR__ . '/config/config.yml'); |
|
48 | 48 | } |
49 | 49 | |
50 | 50 | /** |
@@ -12,9 +12,9 @@ |
||
12 | 12 | use Composer\Autoload\ClassLoader; |
13 | 13 | use Doctrine\Common\Annotations\AnnotationRegistry; |
14 | 14 | |
15 | -$loader = require __DIR__.'/../../vendor/autoload.php'; |
|
15 | +$loader = require __DIR__ . '/../../vendor/autoload.php'; |
|
16 | 16 | |
17 | -require __DIR__.'/AppKernel.php'; |
|
17 | +require __DIR__ . '/AppKernel.php'; |
|
18 | 18 | |
19 | 19 | AnnotationRegistry::registerLoader([$loader, 'loadClass']); |
20 | 20 |
@@ -56,6 +56,6 @@ |
||
56 | 56 | return $data['date']; |
57 | 57 | } |
58 | 58 | |
59 | - return $data['date'].' '.$data['time']; |
|
59 | + return $data['date'] . ' ' . $data['time']; |
|
60 | 60 | } |
61 | 61 | } |
@@ -779,7 +779,7 @@ discard block |
||
779 | 779 | */ |
780 | 780 | public function iShouldSeeThisShippingAddressAsShippingAddress($fullName) |
781 | 781 | { |
782 | - $address = $this->sharedStorage->get('shipping_address_'.StringInflector::nameToLowercaseCode($fullName)); |
|
782 | + $address = $this->sharedStorage->get('shipping_address_' . StringInflector::nameToLowercaseCode($fullName)); |
|
783 | 783 | Assert::true( |
784 | 784 | $this->completePage->hasShippingAddress($address), |
785 | 785 | 'Shipping address is improper.' |
@@ -791,7 +791,7 @@ discard block |
||
791 | 791 | */ |
792 | 792 | public function iShouldSeeThisBillingAddressAsBillingAddress($fullName) |
793 | 793 | { |
794 | - $address = $this->sharedStorage->get('billing_address_'.StringInflector::nameToLowercaseCode($fullName)); |
|
794 | + $address = $this->sharedStorage->get('billing_address_' . StringInflector::nameToLowercaseCode($fullName)); |
|
795 | 795 | Assert::true( |
796 | 796 | $this->completePage->hasBillingAddress($address), |
797 | 797 | 'Billing address is improper.' |
@@ -1403,7 +1403,7 @@ discard block |
||
1403 | 1403 | public function iShouldBeCheckingOutAs($email) |
1404 | 1404 | { |
1405 | 1405 | Assert::same( |
1406 | - 'Checking out as '.$email.'.', |
|
1406 | + 'Checking out as ' . $email . '.', |
|
1407 | 1407 | $this->selectShippingPage->getPurchaserEmail() |
1408 | 1408 | ); |
1409 | 1409 | } |
@@ -166,7 +166,7 @@ |
||
166 | 166 | */ |
167 | 167 | public function iSetItsPriceTo($price = null, $channel = null) |
168 | 168 | { |
169 | - $this->createPage->specifyPrice($price, (null === $channel) ? $this->sharedStorage->get('channel') :$channel); |
|
169 | + $this->createPage->specifyPrice($price, (null === $channel) ? $this->sharedStorage->get('channel') : $channel); |
|
170 | 170 | } |
171 | 171 | |
172 | 172 | /** |