@@ -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\GridBundle\Tests\DependencyInjection; |
15 | 15 |
@@ -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 spec\Sylius\Bundle\AdminBundle\Menu; |
15 | 15 |
@@ -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\UserBundle\Command; |
15 | 15 |
@@ -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\Tests\Controller; |
15 | 15 |
@@ -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 |
@@ -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 |
@@ -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\Product; |
15 | 15 |
@@ -30,8 +30,12 @@ |
||
30 | 30 | /** |
31 | 31 | * @param string $productName |
32 | 32 | * @param int $position |
33 | + * @return void |
|
33 | 34 | */ |
34 | 35 | public function setPositionOfProduct($productName, $position); |
35 | 36 | |
37 | + /** |
|
38 | + * @return void |
|
39 | + */ |
|
36 | 40 | public function savePositions(); |
37 | 41 | } |
@@ -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 |
@@ -20,8 +20,14 @@ discard block |
||
20 | 20 | */ |
21 | 21 | interface UpdatePageInterface extends BaseUpdatePageInterface |
22 | 22 | { |
23 | + /** |
|
24 | + * @return void |
|
25 | + */ |
|
23 | 26 | public function enable(); |
24 | 27 | |
28 | + /** |
|
29 | + * @return void |
|
30 | + */ |
|
25 | 31 | public function disable(); |
26 | 32 | |
27 | 33 | /** |
@@ -31,6 +37,7 @@ discard block |
||
31 | 37 | |
32 | 38 | /** |
33 | 39 | * @param string $firstName |
40 | + * @return void |
|
34 | 41 | */ |
35 | 42 | public function changeFirstName($firstName); |
36 | 43 | |
@@ -41,6 +48,7 @@ discard block |
||
41 | 48 | |
42 | 49 | /** |
43 | 50 | * @param string $lastName |
51 | + * @return void |
|
44 | 52 | */ |
45 | 53 | public function changeLastName($lastName); |
46 | 54 | |
@@ -51,11 +59,13 @@ discard block |
||
51 | 59 | |
52 | 60 | /** |
53 | 61 | * @param string $email |
62 | + * @return void |
|
54 | 63 | */ |
55 | 64 | public function changeEmail($email); |
56 | 65 | |
57 | 66 | /** |
58 | 67 | * @param string $password |
68 | + * @return void |
|
59 | 69 | */ |
60 | 70 | public function changePassword($password); |
61 | 71 | |
@@ -64,6 +74,9 @@ discard block |
||
64 | 74 | */ |
65 | 75 | public function getPassword(); |
66 | 76 | |
77 | + /** |
|
78 | + * @return void |
|
79 | + */ |
|
67 | 80 | public function subscribeToTheNewsletter(); |
68 | 81 | |
69 | 82 | /** |
@@ -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; |
15 | 15 |