@@ -88,13 +88,13 @@ |
||
88 | 88 | case self::TYPE_NOT_EMPTY: |
89 | 89 | return $expressionBuilder->isNotNull($field); |
90 | 90 | case self::TYPE_CONTAINS: |
91 | - return $expressionBuilder->like($field, '%'.$value.'%'); |
|
91 | + return $expressionBuilder->like($field, '%' . $value . '%'); |
|
92 | 92 | case self::TYPE_NOT_CONTAINS: |
93 | - return $expressionBuilder->notLike($field, '%'.$value.'%'); |
|
93 | + return $expressionBuilder->notLike($field, '%' . $value . '%'); |
|
94 | 94 | case self::TYPE_STARTS_WITH: |
95 | - return $expressionBuilder->like($field, $value.'%'); |
|
95 | + return $expressionBuilder->like($field, $value . '%'); |
|
96 | 96 | case self::TYPE_ENDS_WITH: |
97 | - return $expressionBuilder->like($field, '%'.$value); |
|
97 | + return $expressionBuilder->like($field, '%' . $value); |
|
98 | 98 | case self::TYPE_IN: |
99 | 99 | return $expressionBuilder->in($field, array_map('trim', explode(',', $value))); |
100 | 100 | case self::TYPE_NOT_IN: |
@@ -40,8 +40,7 @@ |
||
40 | 40 | function it_should_assign_current_and_default_locale_to_given_translatable_entity( |
41 | 41 | TranslationLocaleProviderInterface $translationLocaleProvider, |
42 | 42 | TranslatableInterface $translatableEntity |
43 | - ) |
|
44 | - { |
|
43 | + ) { |
|
45 | 44 | $translationLocaleProvider->getDefaultLocaleCode()->willReturn('en_US'); |
46 | 45 | |
47 | 46 | $translatableEntity->setCurrentLocale('en_US')->shouldBeCalled(); |
@@ -43,8 +43,7 @@ discard block |
||
43 | 43 | LocaleContextInterface $localeContext, |
44 | 44 | TranslationLocaleProviderInterface $translationLocaleProvider, |
45 | 45 | TranslatableInterface $translatableEntity |
46 | - ) |
|
47 | - { |
|
46 | + ) { |
|
48 | 47 | $localeContext->getLocaleCode()->willReturn('de_DE'); |
49 | 48 | $translationLocaleProvider->getDefaultLocaleCode()->willReturn('en_US'); |
50 | 49 | |
@@ -58,8 +57,7 @@ discard block |
||
58 | 57 | LocaleContextInterface $localeContext, |
59 | 58 | TranslationLocaleProviderInterface $translationLocaleProvider, |
60 | 59 | TranslatableInterface $translatableEntity |
61 | - ) |
|
62 | - { |
|
60 | + ) { |
|
63 | 61 | $localeContext->getLocaleCode()->willThrow(new LocaleNotFoundException()); |
64 | 62 | $translationLocaleProvider->getDefaultLocaleCode()->willReturn('en_US'); |
65 | 63 |
@@ -60,7 +60,7 @@ discard block |
||
60 | 60 | public function theStoreHasAndShippingCategory($firstShippingCategoryName, $secondShippingCategoryName = null) |
61 | 61 | { |
62 | 62 | $this->createShippingCategory($firstShippingCategoryName); |
63 | - (null === $secondShippingCategoryName)? : $this->createShippingCategory($secondShippingCategoryName); |
|
63 | + (null === $secondShippingCategoryName) ?: $this->createShippingCategory($secondShippingCategoryName); |
|
64 | 64 | } |
65 | 65 | |
66 | 66 | /** |
@@ -78,7 +78,7 @@ discard block |
||
78 | 78 | private function createShippingCategory($shippingCategoryName, $shippingCategoryCode = null) |
79 | 79 | { |
80 | 80 | /** @var ShippingCategoryInterface $shippingCategory */ |
81 | - $shippingCategory = $this->shippingCategoryFactory->createNew(); |
|
81 | + $shippingCategory = $this->shippingCategoryFactory->createNew(); |
|
82 | 82 | $shippingCategory->setName($shippingCategoryName); |
83 | 83 | $shippingCategory->setCode($shippingCategoryCode); |
84 | 84 |
@@ -164,7 +164,7 @@ discard block |
||
164 | 164 | { |
165 | 165 | $this->questionHelper = $this->command->getHelper('question'); |
166 | 166 | $inputString = implode(PHP_EOL, $this->inputChoices); |
167 | - $this->questionHelper->setInputStream($this->getInputStream($inputString.PHP_EOL)); |
|
167 | + $this->questionHelper->setInputStream($this->getInputStream($inputString . PHP_EOL)); |
|
168 | 168 | |
169 | 169 | try { |
170 | 170 | $this->tester->execute(['command' => $name]); |
@@ -178,7 +178,7 @@ discard block |
||
178 | 178 | private function iExecuteCommandAndConfirm($name) |
179 | 179 | { |
180 | 180 | $this->questionHelper = $this->command->getHelper('question'); |
181 | - $inputString = 'y'.PHP_EOL; |
|
181 | + $inputString = 'y' . PHP_EOL; |
|
182 | 182 | $this->questionHelper->setInputStream($this->getInputStream($inputString)); |
183 | 183 | |
184 | 184 | try { |
@@ -75,7 +75,7 @@ discard block |
||
75 | 75 | $imageForm->fillField('Code', $code); |
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->getImageElementByCode($code); |
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 | /** |
@@ -299,7 +299,7 @@ discard block |
||
299 | 299 | private function getImageElementByCode($code) |
300 | 300 | { |
301 | 301 | $images = $this->getElement('images'); |
302 | - $inputCode = $images->find('css', 'input[value="'.$code.'"]'); |
|
302 | + $inputCode = $images->find('css', 'input[value="' . $code . '"]'); |
|
303 | 303 | |
304 | 304 | if (null === $inputCode) { |
305 | 305 | return null; |
@@ -60,7 +60,7 @@ |
||
60 | 60 | $imageForm->fillField('Code', $code); |
61 | 61 | } |
62 | 62 | |
63 | - $imageForm->find('css', 'input[type="file"]')->attachFile($filesPath.$path); |
|
63 | + $imageForm->find('css', 'input[type="file"]')->attachFile($filesPath . $path); |
|
64 | 64 | } |
65 | 65 | |
66 | 66 | /** |
@@ -21,12 +21,14 @@ |
||
21 | 21 | /** |
22 | 22 | * @param string $field |
23 | 23 | * @param string $type |
24 | + * @return void |
|
24 | 25 | */ |
25 | 26 | public function specifyFilterType($field, $type); |
26 | 27 | |
27 | 28 | /** |
28 | 29 | * @param string $field |
29 | 30 | * @param string $value |
31 | + * @return void |
|
30 | 32 | */ |
31 | 33 | public function specifyFilterValue($field, $value); |
32 | 34 | } |
@@ -25,15 +25,20 @@ |
||
25 | 25 | */ |
26 | 26 | public function hasValidationErrorWith($message); |
27 | 27 | |
28 | + /** |
|
29 | + * @return void |
|
30 | + */ |
|
28 | 31 | public function logIn(); |
29 | 32 | |
30 | 33 | /** |
31 | 34 | * @param string $password |
35 | + * @return void |
|
32 | 36 | */ |
33 | 37 | public function specifyPassword($password); |
34 | 38 | |
35 | 39 | /** |
36 | 40 | * @param string $username |
41 | + * @return void |
|
37 | 42 | */ |
38 | 43 | public function specifyUsername($username); |
39 | 44 | } |