@@ -87,7 +87,7 @@ |
||
87 | 87 | 'targetEntity' => $subjectClass, |
88 | 88 | 'inversedBy' => 'attributes', |
89 | 89 | 'joinColumns' => [[ |
90 | - 'name' => $subject.'_id', |
|
90 | + 'name' => $subject . '_id', |
|
91 | 91 | 'referencedColumnName' => $targetEntityMetadata->fieldMappings['id']['columnName'], |
92 | 92 | 'nullable' => false, |
93 | 93 | 'onDelete' => 'CASCADE', |
@@ -65,7 +65,7 @@ discard block |
||
65 | 65 | $parameterName = $this->getParameterName($field); |
66 | 66 | $this->queryBuilder->setParameter($parameterName, $value); |
67 | 67 | |
68 | - return $this->queryBuilder->expr()->eq($this->getFieldName($field), ':'.$parameterName); |
|
68 | + return $this->queryBuilder->expr()->eq($this->getFieldName($field), ':' . $parameterName); |
|
69 | 69 | } |
70 | 70 | |
71 | 71 | /** |
@@ -76,7 +76,7 @@ discard block |
||
76 | 76 | $parameterName = $this->getParameterName($field); |
77 | 77 | $this->queryBuilder->setParameter($parameterName, $value); |
78 | 78 | |
79 | - return $this->queryBuilder->expr()->neq($this->getFieldName($field), ':'.$parameterName); |
|
79 | + return $this->queryBuilder->expr()->neq($this->getFieldName($field), ':' . $parameterName); |
|
80 | 80 | } |
81 | 81 | |
82 | 82 | /** |
@@ -87,7 +87,7 @@ discard block |
||
87 | 87 | $parameterName = $this->getParameterName($field); |
88 | 88 | $this->queryBuilder->setParameter($parameterName, $value); |
89 | 89 | |
90 | - $this->queryBuilder->andWhere($this->getFieldName($field).' < :'.$parameterName); |
|
90 | + $this->queryBuilder->andWhere($this->getFieldName($field) . ' < :' . $parameterName); |
|
91 | 91 | } |
92 | 92 | |
93 | 93 | /** |
@@ -98,7 +98,7 @@ discard block |
||
98 | 98 | $parameterName = $this->getParameterName($field); |
99 | 99 | $this->queryBuilder->setParameter($parameterName, $value); |
100 | 100 | |
101 | - $this->queryBuilder->andWhere($this->getFieldName($field).' <= :'.$parameterName); |
|
101 | + $this->queryBuilder->andWhere($this->getFieldName($field) . ' <= :' . $parameterName); |
|
102 | 102 | } |
103 | 103 | |
104 | 104 | /** |
@@ -109,7 +109,7 @@ discard block |
||
109 | 109 | $parameterName = $this->getParameterName($field); |
110 | 110 | $this->queryBuilder->setParameter($parameterName, $value); |
111 | 111 | |
112 | - $this->queryBuilder->andWhere($this->getFieldName($field).' > :'.$parameterName); |
|
112 | + $this->queryBuilder->andWhere($this->getFieldName($field) . ' > :' . $parameterName); |
|
113 | 113 | } |
114 | 114 | |
115 | 115 | /** |
@@ -120,7 +120,7 @@ discard block |
||
120 | 120 | $parameterName = $this->getParameterName($field); |
121 | 121 | $this->queryBuilder->setParameter($parameterName, $value); |
122 | 122 | |
123 | - $this->queryBuilder->andWhere($this->getFieldName($field).' >= :'.$parameterName); |
|
123 | + $this->queryBuilder->andWhere($this->getFieldName($field) . ' >= :' . $parameterName); |
|
124 | 124 | } |
125 | 125 | |
126 | 126 | /** |
@@ -193,7 +193,7 @@ discard block |
||
193 | 193 | private function getFieldName($field) |
194 | 194 | { |
195 | 195 | if (false === strpos($field, '.')) { |
196 | - return $this->queryBuilder->getRootAlias().'.'.$field; |
|
196 | + return $this->queryBuilder->getRootAlias() . '.' . $field; |
|
197 | 197 | } |
198 | 198 | |
199 | 199 | return $field; |
@@ -22,7 +22,7 @@ discard block |
||
22 | 22 | { |
23 | 23 | parent::tearDown(); |
24 | 24 | |
25 | - file_put_contents(__DIR__.'/../Fixtures/themes/FirstTestTheme/TestBundle/public/theme_asset.txt', 'Theme asset'.PHP_EOL); |
|
25 | + file_put_contents(__DIR__ . '/../Fixtures/themes/FirstTestTheme/TestBundle/public/theme_asset.txt', 'Theme asset' . PHP_EOL); |
|
26 | 26 | } |
27 | 27 | |
28 | 28 | /** |
@@ -58,7 +58,7 @@ discard block |
||
58 | 58 | $client->getContainer()->get('sylius.theme.asset.assets_installer')->installAssets($webDirectory, $symlinkMask); |
59 | 59 | |
60 | 60 | sleep(1); |
61 | - file_put_contents(__DIR__.'/../Fixtures/themes/FirstTestTheme/TestBundle/public/theme_asset.txt', 'Theme asset modified'); |
|
61 | + file_put_contents(__DIR__ . '/../Fixtures/themes/FirstTestTheme/TestBundle/public/theme_asset.txt', 'Theme asset modified'); |
|
62 | 62 | clearstatcache(); |
63 | 63 | |
64 | 64 | $client->getContainer()->get('sylius.theme.asset.assets_installer')->installAssets($webDirectory, $symlinkMask); |
@@ -91,7 +91,7 @@ discard block |
||
91 | 91 | |
92 | 92 | private function createWebDirectory() |
93 | 93 | { |
94 | - $webDirectory = $this->getTmpDirPath(self::TEST_CASE).'/web'; |
|
94 | + $webDirectory = $this->getTmpDirPath(self::TEST_CASE) . '/web'; |
|
95 | 95 | if (!is_dir($webDirectory)) { |
96 | 96 | mkdir($webDirectory, 0777, true); |
97 | 97 | } |
@@ -110,7 +110,7 @@ discard block |
||
110 | 110 | |
111 | 111 | list($expectedText, $assetFile) = explode(': ', $line); |
112 | 112 | |
113 | - $contents = file_get_contents($webDirectory.$assetFile); |
|
113 | + $contents = file_get_contents($webDirectory . $assetFile); |
|
114 | 114 | |
115 | 115 | $this->assertEquals($expectedText, trim($contents)); |
116 | 116 | } |
@@ -26,7 +26,7 @@ discard block |
||
26 | 26 | { |
27 | 27 | $client = $this->getClient(); |
28 | 28 | |
29 | - $crawler = $client->request('GET', '/template/'.$templateName); |
|
29 | + $crawler = $client->request('GET', '/template/' . $templateName); |
|
30 | 30 | $this->assertEquals($contents, trim($crawler->text())); |
31 | 31 | } |
32 | 32 | |
@@ -54,7 +54,7 @@ discard block |
||
54 | 54 | { |
55 | 55 | $client = $this->getClient(); |
56 | 56 | |
57 | - $crawler = $client->request('GET', '/template/'.$templateName); |
|
57 | + $crawler = $client->request('GET', '/template/' . $templateName); |
|
58 | 58 | $this->assertEquals($contents, trim($crawler->text())); |
59 | 59 | } |
60 | 60 | |
@@ -82,7 +82,7 @@ discard block |
||
82 | 82 | { |
83 | 83 | $client = $this->getClient(); |
84 | 84 | |
85 | - $crawler = $client->request('GET', '/template/'.$templateName); |
|
85 | + $crawler = $client->request('GET', '/template/' . $templateName); |
|
86 | 86 | $this->assertEquals($contents, trim($crawler->text())); |
87 | 87 | } |
88 | 88 | |
@@ -108,7 +108,7 @@ discard block |
||
108 | 108 | { |
109 | 109 | $client = $this->getClient(); |
110 | 110 | |
111 | - $crawler = $client->request('GET', '/template/'.$templateName); |
|
111 | + $crawler = $client->request('GET', '/template/' . $templateName); |
|
112 | 112 | $this->assertEquals($contents, trim($crawler->text())); |
113 | 113 | } |
114 | 114 |
@@ -96,7 +96,7 @@ |
||
96 | 96 | protected function getPropertyName($name) |
97 | 97 | { |
98 | 98 | if (in_array($name, $this->translatableFields, true)) { |
99 | - return 'translations.'.$this->localeProvider->getDefaultLocaleCode().'.'.$name; |
|
99 | + return 'translations.' . $this->localeProvider->getDefaultLocaleCode() . '.' . $name; |
|
100 | 100 | } |
101 | 101 | |
102 | 102 | return $name; |
@@ -134,7 +134,7 @@ discard block |
||
134 | 134 | } |
135 | 135 | |
136 | 136 | /** @var MetadataInterface $translationResourceMetadata */ |
137 | - $translationResourceMetadata = $this->resourceMetadataRegistry->get($resourceMetadata->getAlias().'_translation'); |
|
137 | + $translationResourceMetadata = $this->resourceMetadataRegistry->get($resourceMetadata->getAlias() . '_translation'); |
|
138 | 138 | |
139 | 139 | $metadata->mapOneToMany([ |
140 | 140 | 'fieldName' => 'translations', |
@@ -194,7 +194,7 @@ discard block |
||
194 | 194 | if (!$this->hasUniqueConstraint($metadata, $columns)) { |
195 | 195 | $constraints = isset($metadata->table['uniqueConstraints']) ? $metadata->table['uniqueConstraints'] : []; |
196 | 196 | |
197 | - $constraints[$metadata->getTableName().'_uniq_trans'] = [ |
|
197 | + $constraints[$metadata->getTableName() . '_uniq_trans'] = [ |
|
198 | 198 | 'columns' => $columns, |
199 | 199 | ]; |
200 | 200 |
@@ -133,11 +133,11 @@ |
||
133 | 133 | { |
134 | 134 | foreach ($parameters as $key => $value) { |
135 | 135 | if (is_array($value)) { |
136 | - $flattened = $this->flattenParameters($value, $flattened, $prefix.$key.'.'); |
|
136 | + $flattened = $this->flattenParameters($value, $flattened, $prefix . $key . '.'); |
|
137 | 137 | continue; |
138 | 138 | } |
139 | 139 | |
140 | - $flattened[$prefix.$key] = $value; |
|
140 | + $flattened[$prefix . $key] = $value; |
|
141 | 141 | } |
142 | 142 | |
143 | 143 | return $flattened; |
@@ -86,7 +86,7 @@ discard block |
||
86 | 86 | ) { |
87 | 87 | $review = $this->createProductReview($product, $title, $rating, $title, $customer); |
88 | 88 | if (null !== $daysSinceCreation) { |
89 | - $review->setCreatedAt(new \DateTime('-'.$daysSinceCreation.' days')); |
|
89 | + $review->setCreatedAt(new \DateTime('-' . $daysSinceCreation . ' days')); |
|
90 | 90 | } |
91 | 91 | |
92 | 92 | $this->productReviewRepository->add($review); |
@@ -114,7 +114,7 @@ discard block |
||
114 | 114 | { |
115 | 115 | $customer = $this->sharedStorage->get('customer'); |
116 | 116 | foreach ($rates as $key => $rate) { |
117 | - $review = $this->createProductReview($product, 'Title '.$key, $rate, 'Comment '.$key, $customer); |
|
117 | + $review = $this->createProductReview($product, 'Title ' . $key, $rate, 'Comment ' . $key, $customer); |
|
118 | 118 | $this->productReviewRepository->add($review); |
119 | 119 | } |
120 | 120 | } |
@@ -60,7 +60,7 @@ |
||
60 | 60 | { |
61 | 61 | /** @var ChoiceView $choice */ |
62 | 62 | foreach ($view->vars['choices'] as $choice) { |
63 | - $choice->label = str_repeat('— ', $choice->data->getLevel()).$choice->label; |
|
63 | + $choice->label = str_repeat('— ', $choice->data->getLevel()) . $choice->label; |
|
64 | 64 | } |
65 | 65 | } |
66 | 66 |