@@ -57,7 +57,7 @@ |
||
57 | 57 | |
58 | 58 | function it_proxies_hydrating_and_converts_parents_to_collection_if_needed(HydratorInterface $decoratedHydrator) |
59 | 59 | { |
60 | - $decoratedHydrator->hydrate(Argument::that(function (array $data) { |
|
60 | + $decoratedHydrator->hydrate(Argument::that(function(array $data) { |
|
61 | 61 | if (!isset($data['data']) || $data['data'] !== 'data') { |
62 | 62 | return false; |
63 | 63 | } |
@@ -127,7 +127,7 @@ |
||
127 | 127 | $locale = $this->getLocale(); |
128 | 128 | } |
129 | 129 | |
130 | - $locale = $locale . '_' . $theme->getCode();; |
|
130 | + $locale = $locale.'_'.$theme->getCode(); ; |
|
131 | 131 | |
132 | 132 | return $locale; |
133 | 133 | } |
@@ -55,7 +55,7 @@ |
||
55 | 55 | } |
56 | 56 | |
57 | 57 | $this->domain = $parts[0]; |
58 | - $this->locale = $parts[1] . '_' . $theme->getCode(); |
|
58 | + $this->locale = $parts[1].'_'.$theme->getCode(); |
|
59 | 59 | $this->format = $parts[2]; |
60 | 60 | } |
61 | 61 |
@@ -72,7 +72,7 @@ |
||
72 | 72 | */ |
73 | 73 | public function getResourcesLocales() |
74 | 74 | { |
75 | - return array_values(array_unique(array_map(function (TranslationResourceInterface $translationResource) { |
|
75 | + return array_values(array_unique(array_map(function(TranslationResourceInterface $translationResource) { |
|
76 | 76 | return $translationResource->getLocale(); |
77 | 77 | }, $this->getResources()))); |
78 | 78 | } |
@@ -37,7 +37,7 @@ |
||
37 | 37 | * PHP 5.* bug, fixed in PHP 7: https://bugs.php.net/bug.php?id=50688 |
38 | 38 | * "usort(): Array was modified by the user comparison function" |
39 | 39 | */ |
40 | - @usort($files, function ($firstFile, $secondFile) use ($path) { |
|
40 | + @usort($files, function($firstFile, $secondFile) use ($path) { |
|
41 | 41 | $firstFile = str_replace($path, '', $firstFile); |
42 | 42 | $secondFile = str_replace($path, '', $secondFile); |
43 | 43 |
@@ -53,7 +53,7 @@ |
||
53 | 53 | $this->getPaymentMethodByName('Offline')->shouldReturn($paymentMethod); |
54 | 54 | } |
55 | 55 | |
56 | - function it_throws_element_not_found_exception_if_payment_method_has_not_been_found ( |
|
56 | + function it_throws_element_not_found_exception_if_payment_method_has_not_been_found( |
|
57 | 57 | RepositoryInterface $paymentMethodRepository |
58 | 58 | ) { |
59 | 59 | $paymentMethodRepository->findOneBy(['name' => 'Free'])->willReturn(null); |
@@ -45,7 +45,7 @@ discard block |
||
45 | 45 | $this->getProductByName('Mug')->shouldReturn($product); |
46 | 46 | } |
47 | 47 | |
48 | - function it_throws_element_not_found_exception_if_product_has_not_been_found ( |
|
48 | + function it_throws_element_not_found_exception_if_product_has_not_been_found( |
|
49 | 49 | RepositoryInterface $productRepository |
50 | 50 | ) { |
51 | 51 | $productRepository->findOneBy(['name' => 'T-Shirt'])->willReturn(null); |
@@ -65,7 +65,7 @@ discard block |
||
65 | 65 | $this->getProductVariantByNameAndProduct('Eagle Millenium Mug', 'Mug')->shouldReturn($productVariant); |
66 | 66 | } |
67 | 67 | |
68 | - function it_throws_element_not_found_exception_if_product_variant_has_not_been_found ( |
|
68 | + function it_throws_element_not_found_exception_if_product_variant_has_not_been_found( |
|
69 | 69 | RepositoryInterface $productRepository, |
70 | 70 | RepositoryInterface $productVariantRepository, |
71 | 71 | ProductInterface $product |
@@ -110,7 +110,7 @@ discard block |
||
110 | 110 | */ |
111 | 111 | public function iShouldSeeThemedHomepage(ThemeInterface $theme) |
112 | 112 | { |
113 | - $content = file_get_contents(rtrim($theme->getPath(), '/') . '/SyliusWebBundle/views/Frontend/Homepage/main.html.twig'); |
|
113 | + $content = file_get_contents(rtrim($theme->getPath(), '/').'/SyliusWebBundle/views/Frontend/Homepage/main.html.twig'); |
|
114 | 114 | |
115 | 115 | expect($this->homePage->getContents())->toBe($content); |
116 | 116 | } |
@@ -120,7 +120,7 @@ discard block |
||
120 | 120 | */ |
121 | 121 | public function iShouldNotSeeThemedHomepage(ThemeInterface $theme) |
122 | 122 | { |
123 | - $content = file_get_contents(rtrim($theme->getPath(), '/') . '/SyliusWebBundle/views/Frontend/Homepage/main.html.twig'); |
|
123 | + $content = file_get_contents(rtrim($theme->getPath(), '/').'/SyliusWebBundle/views/Frontend/Homepage/main.html.twig'); |
|
124 | 124 | |
125 | 125 | expect($this->homePage->getContents())->notToBe($content); |
126 | 126 | } |
@@ -78,7 +78,7 @@ discard block |
||
78 | 78 | { |
79 | 79 | $theme = $this->themeFactory->createNamed($themeName); |
80 | 80 | $theme->setTitle($themeName); |
81 | - $theme->setPath(sys_get_temp_dir() . '/theme-' . $theme->getCode() . time() . '/'); |
|
81 | + $theme->setPath(sys_get_temp_dir().'/theme-'.$theme->getCode().time().'/'); |
|
82 | 82 | |
83 | 83 | if (!file_exists($theme->getPath())) { |
84 | 84 | mkdir($theme->getPath(), 0777, true); |
@@ -118,7 +118,7 @@ discard block |
||
118 | 118 | */ |
119 | 119 | public function themeChangesHomepageTemplateContents(ThemeInterface $theme, $contents) |
120 | 120 | { |
121 | - $file = rtrim($theme->getPath(), '/') . '/SyliusWebBundle/views/Frontend/Homepage/main.html.twig'; |
|
121 | + $file = rtrim($theme->getPath(), '/').'/SyliusWebBundle/views/Frontend/Homepage/main.html.twig'; |
|
122 | 122 | $dir = dirname($file); |
123 | 123 | |
124 | 124 | if (!file_exists($dir)) { |