@@ -91,6 +91,6 @@ |
||
91 | 91 | |
92 | 92 | <info>php %command.full_name% web --symlink --relative</info> |
93 | 93 | |
94 | -EOT; |
|
94 | +eot; |
|
95 | 95 | } |
96 | 96 | } |
@@ -9,7 +9,7 @@ |
||
9 | 9 | * file that was distributed with this source code. |
10 | 10 | */ |
11 | 11 | |
12 | -declare(strict_types=1); |
|
12 | +declare(strict_types = 1); |
|
13 | 13 | |
14 | 14 | namespace Sylius\Bundle\ThemeBundle\Command; |
15 | 15 |
@@ -18,7 +18,14 @@ discard block |
||
18 | 18 | */ |
19 | 19 | interface UpdatePageInterface extends BaseUpdatePageInterface |
20 | 20 | { |
21 | + /** |
|
22 | + * @return void |
|
23 | + */ |
|
21 | 24 | public function enable(); |
25 | + |
|
26 | + /** |
|
27 | + * @return void |
|
28 | + */ |
|
22 | 29 | public function disable(); |
23 | 30 | |
24 | 31 | /** |
@@ -28,6 +35,7 @@ discard block |
||
28 | 35 | |
29 | 36 | /** |
30 | 37 | * @param string $firstName |
38 | + * @return void |
|
31 | 39 | */ |
32 | 40 | public function changeFirstName($firstName); |
33 | 41 | |
@@ -38,6 +46,7 @@ discard block |
||
38 | 46 | |
39 | 47 | /** |
40 | 48 | * @param string $lastName |
49 | + * @return void |
|
41 | 50 | */ |
42 | 51 | public function changeLastName($lastName); |
43 | 52 | |
@@ -48,11 +57,13 @@ discard block |
||
48 | 57 | |
49 | 58 | /** |
50 | 59 | * @param string $email |
60 | + * @return void |
|
51 | 61 | */ |
52 | 62 | public function changeEmail($email); |
53 | 63 | |
54 | 64 | /** |
55 | 65 | * @param string $password |
66 | + * @return void |
|
56 | 67 | */ |
57 | 68 | public function changePassword($password); |
58 | 69 | |
@@ -61,6 +72,9 @@ discard block |
||
61 | 72 | */ |
62 | 73 | public function getPassword(); |
63 | 74 | |
75 | + /** |
|
76 | + * @return void |
|
77 | + */ |
|
64 | 78 | public function subscribeToTheNewsletter(); |
65 | 79 | |
66 | 80 | /** |
@@ -9,7 +9,7 @@ |
||
9 | 9 | * file that was distributed with this source code. |
10 | 10 | */ |
11 | 11 | |
12 | -declare(strict_types=1); |
|
12 | +declare(strict_types = 1); |
|
13 | 13 | |
14 | 14 | namespace Sylius\Behat\Page\Admin\Customer; |
15 | 15 |
@@ -21,19 +21,25 @@ discard block |
||
21 | 21 | { |
22 | 22 | /** |
23 | 23 | * @param string $firstName |
24 | + * @return void |
|
24 | 25 | */ |
25 | 26 | public function specifyFirstName($firstName); |
26 | 27 | |
27 | 28 | /** |
28 | 29 | * @param string $lastName |
30 | + * @return void |
|
29 | 31 | */ |
30 | 32 | public function specifyLastName($lastName); |
31 | 33 | |
32 | 34 | /** |
33 | 35 | * @param string $email |
36 | + * @return void |
|
34 | 37 | */ |
35 | 38 | public function specifyEmail($email); |
36 | 39 | |
40 | + /** |
|
41 | + * @return void |
|
42 | + */ |
|
37 | 43 | public function saveChanges(); |
38 | 44 | |
39 | 45 | /** |
@@ -46,6 +52,9 @@ discard block |
||
46 | 52 | */ |
47 | 53 | public function checkValidationMessageFor($element, $message); |
48 | 54 | |
55 | + /** |
|
56 | + * @return void |
|
57 | + */ |
|
49 | 58 | public function subscribeToTheNewsletter(); |
50 | 59 | |
51 | 60 | /** |
@@ -9,7 +9,7 @@ |
||
9 | 9 | * file that was distributed with this source code. |
10 | 10 | */ |
11 | 11 | |
12 | -declare(strict_types=1); |
|
12 | +declare(strict_types = 1); |
|
13 | 13 | |
14 | 14 | namespace Sylius\Behat\Page\Shop\Account; |
15 | 15 |
@@ -26,37 +26,49 @@ |
||
26 | 26 | */ |
27 | 27 | public function checkValidationMessageFor($element, $message); |
28 | 28 | |
29 | + /** |
|
30 | + * @return void |
|
31 | + */ |
|
29 | 32 | public function register(); |
30 | 33 | |
31 | 34 | /** |
32 | 35 | * @param string $email |
36 | + * @return void |
|
33 | 37 | */ |
34 | 38 | public function specifyEmail($email); |
35 | 39 | |
36 | 40 | /** |
37 | 41 | * @param string $firstName |
42 | + * @return void |
|
38 | 43 | */ |
39 | 44 | public function specifyFirstName($firstName); |
40 | 45 | |
41 | 46 | /** |
42 | 47 | * @param string $lastName |
48 | + * @return void |
|
43 | 49 | */ |
44 | 50 | public function specifyLastName($lastName); |
45 | 51 | |
46 | 52 | /** |
47 | 53 | * @param string $password |
54 | + * @return void |
|
48 | 55 | */ |
49 | 56 | public function specifyPassword($password); |
50 | 57 | |
51 | 58 | /** |
52 | 59 | * @param string $phoneNumber |
60 | + * @return void |
|
53 | 61 | */ |
54 | 62 | public function specifyPhoneNumber($phoneNumber); |
55 | 63 | |
56 | 64 | /** |
57 | 65 | * @param string $password |
66 | + * @return void |
|
58 | 67 | */ |
59 | 68 | public function verifyPassword($password); |
60 | 69 | |
70 | + /** |
|
71 | + * @return void |
|
72 | + */ |
|
61 | 73 | public function subscribeToTheNewsletter(); |
62 | 74 | } |
@@ -9,7 +9,7 @@ |
||
9 | 9 | * file that was distributed with this source code. |
10 | 10 | */ |
11 | 11 | |
12 | -declare(strict_types=1); |
|
12 | +declare(strict_types = 1); |
|
13 | 13 | |
14 | 14 | namespace Sylius\Behat\Page\Shop\Account; |
15 | 15 |
@@ -70,17 +70,20 @@ discard block |
||
70 | 70 | |
71 | 71 | /** |
72 | 72 | * @param string $productName |
73 | + * @return void |
|
73 | 74 | */ |
74 | 75 | public function removeProduct($productName); |
75 | 76 | |
76 | 77 | /** |
77 | 78 | * @param string $productName |
78 | 79 | * @param int $quantity |
80 | + * @return void |
|
79 | 81 | */ |
80 | 82 | public function changeQuantity($productName, $quantity); |
81 | 83 | |
82 | 84 | /** |
83 | 85 | * @param string $couponCode |
86 | + * @return void |
|
84 | 87 | */ |
85 | 88 | public function applyCoupon($couponCode); |
86 | 89 | |
@@ -143,12 +146,19 @@ discard block |
||
143 | 146 | */ |
144 | 147 | public function getCartTotal(); |
145 | 148 | |
149 | + /** |
|
150 | + * @return void |
|
151 | + */ |
|
146 | 152 | public function clearCart(); |
147 | 153 | |
154 | + /** |
|
155 | + * @return void |
|
156 | + */ |
|
148 | 157 | public function updateCart(); |
149 | 158 | |
150 | 159 | /** |
151 | 160 | * @param int $timeout |
161 | + * @return void |
|
152 | 162 | */ |
153 | 163 | public function waitForRedirect($timeout); |
154 | 164 |
@@ -9,7 +9,7 @@ |
||
9 | 9 | * file that was distributed with this source code. |
10 | 10 | */ |
11 | 11 | |
12 | -declare(strict_types=1); |
|
12 | +declare(strict_types = 1); |
|
13 | 13 | |
14 | 14 | namespace Sylius\Behat\Page\Shop\Cart; |
15 | 15 |
@@ -75,6 +75,7 @@ discard block |
||
75 | 75 | |
76 | 76 | /** |
77 | 77 | * @param string $notes |
78 | + * @return void |
|
78 | 79 | */ |
79 | 80 | public function addNotes($notes); |
80 | 81 | |
@@ -135,12 +136,24 @@ discard block |
||
135 | 136 | */ |
136 | 137 | public function hasProductOutOfStockValidationMessage(ProductInterface $product); |
137 | 138 | |
139 | + /** |
|
140 | + * @return void |
|
141 | + */ |
|
138 | 142 | public function changeAddress(); |
139 | 143 | |
144 | + /** |
|
145 | + * @return void |
|
146 | + */ |
|
140 | 147 | public function changeShippingMethod(); |
141 | 148 | |
149 | + /** |
|
150 | + * @return void |
|
151 | + */ |
|
142 | 152 | public function changePaymentMethod(); |
143 | 153 | |
154 | + /** |
|
155 | + * @return void |
|
156 | + */ |
|
144 | 157 | public function confirmOrder(); |
145 | 158 | |
146 | 159 | /** |
@@ -15,7 +15,6 @@ |
||
15 | 15 | use Sylius\Component\Core\Model\AddressInterface; |
16 | 16 | use Sylius\Component\Core\Model\ProductInterface; |
17 | 17 | use Sylius\Component\Core\Model\ShippingMethodInterface; |
18 | -use Sylius\Component\Payment\Model\PaymentMethodInterface; |
|
19 | 18 | |
20 | 19 | /** |
21 | 20 | * @author Mateusz Zalewski <[email protected]> |
@@ -9,7 +9,7 @@ |
||
9 | 9 | * file that was distributed with this source code. |
10 | 10 | */ |
11 | 11 | |
12 | -declare(strict_types=1); |
|
12 | +declare(strict_types = 1); |
|
13 | 13 | |
14 | 14 | namespace Sylius\Behat\Page\Shop\Checkout; |
15 | 15 |
@@ -20,6 +20,7 @@ discard block |
||
20 | 20 | { |
21 | 21 | /** |
22 | 22 | * @param string $paymentMethod |
23 | + * @return void |
|
23 | 24 | */ |
24 | 25 | public function selectPaymentMethod($paymentMethod); |
25 | 26 | |
@@ -37,12 +38,24 @@ discard block |
||
37 | 38 | */ |
38 | 39 | public function getItemSubtotal($itemName); |
39 | 40 | |
41 | + /** |
|
42 | + * @return void |
|
43 | + */ |
|
40 | 44 | public function nextStep(); |
41 | 45 | |
46 | + /** |
|
47 | + * @return void |
|
48 | + */ |
|
42 | 49 | public function changeShippingMethod(); |
43 | 50 | |
51 | + /** |
|
52 | + * @return void |
|
53 | + */ |
|
44 | 54 | public function changeShippingMethodByStepLabel(); |
45 | 55 | |
56 | + /** |
|
57 | + * @return void |
|
58 | + */ |
|
46 | 59 | public function changeAddressByStepLabel(); |
47 | 60 | |
48 | 61 | /** |
@@ -9,7 +9,7 @@ |
||
9 | 9 | * file that was distributed with this source code. |
10 | 10 | */ |
11 | 11 | |
12 | -declare(strict_types=1); |
|
12 | +declare(strict_types = 1); |
|
13 | 13 | |
14 | 14 | namespace Sylius\Behat\Page\Shop\Checkout; |
15 | 15 |
@@ -45,7 +45,7 @@ |
||
45 | 45 | /** |
46 | 46 | * Gets customer based on currently logged user. |
47 | 47 | * |
48 | - * @return CustomerInterface|null |
|
48 | + * @return null|\Sylius\Component\Customer\Model\CustomerInterface |
|
49 | 49 | */ |
50 | 50 | public function getCustomer() |
51 | 51 | { |
@@ -9,7 +9,7 @@ |
||
9 | 9 | * file that was distributed with this source code. |
10 | 10 | */ |
11 | 11 | |
12 | -declare(strict_types=1); |
|
12 | +declare(strict_types = 1); |
|
13 | 13 | |
14 | 14 | namespace Sylius\Bundle\CoreBundle\Context; |
15 | 15 |
@@ -101,6 +101,9 @@ |
||
101 | 101 | return $webDirectory; |
102 | 102 | } |
103 | 103 | |
104 | + /** |
|
105 | + * @param string $webDirectory |
|
106 | + */ |
|
104 | 107 | private function assertFileContent($lines, $webDirectory) |
105 | 108 | { |
106 | 109 | foreach ($lines as $line) { |
@@ -9,7 +9,7 @@ discard block |
||
9 | 9 | * file that was distributed with this source code. |
10 | 10 | */ |
11 | 11 | |
12 | -declare(strict_types=1); |
|
12 | +declare(strict_types = 1); |
|
13 | 13 | |
14 | 14 | namespace Sylius\Bundle\ThemeBundle\Tests\Functional; |
15 | 15 | |
@@ -25,7 +25,7 @@ discard block |
||
25 | 25 | { |
26 | 26 | parent::tearDown(); |
27 | 27 | |
28 | - file_put_contents(__DIR__.'/../Fixtures/themes/FirstTestTheme/TestBundle/public/theme_asset.txt', 'Theme asset'.PHP_EOL); |
|
28 | + file_put_contents(__DIR__ . '/../Fixtures/themes/FirstTestTheme/TestBundle/public/theme_asset.txt', 'Theme asset' . PHP_EOL); |
|
29 | 29 | } |
30 | 30 | |
31 | 31 | /** |
@@ -63,7 +63,7 @@ discard block |
||
63 | 63 | $client->getContainer()->get('sylius.theme.asset.assets_installer')->installAssets($webDirectory, $symlinkMask); |
64 | 64 | |
65 | 65 | sleep(1); |
66 | - file_put_contents(__DIR__.'/../Fixtures/themes/FirstTestTheme/TestBundle/public/theme_asset.txt', 'Theme asset modified'); |
|
66 | + file_put_contents(__DIR__ . '/../Fixtures/themes/FirstTestTheme/TestBundle/public/theme_asset.txt', 'Theme asset modified'); |
|
67 | 67 | clearstatcache(); |
68 | 68 | |
69 | 69 | $client->getContainer()->get('sylius.theme.asset.assets_installer')->installAssets($webDirectory, $symlinkMask); |
@@ -116,7 +116,7 @@ discard block |
||
116 | 116 | |
117 | 117 | list($expectedText, $assetFile) = explode(': ', $line); |
118 | 118 | |
119 | - $contents = file_get_contents($webDirectory.$assetFile); |
|
119 | + $contents = file_get_contents($webDirectory . $assetFile); |
|
120 | 120 | |
121 | 121 | $this->assertEquals($expectedText, trim($contents)); |
122 | 122 | } |