@@ -51,13 +51,13 @@ |
||
51 | 51 | |
52 | 52 | foreach ($securityRoles as $securityRole) { |
53 | 53 | if (!$user->hasRole($securityRole)) { |
54 | - $output->writeln(sprintf('<error>User "%s" didn\'t have "%s" Security role.</error>', (string)$user, $securityRole)); |
|
54 | + $output->writeln(sprintf('<error>User "%s" didn\'t have "%s" Security role.</error>', (string) $user, $securityRole)); |
|
55 | 55 | $error = true; |
56 | 56 | continue; |
57 | 57 | } |
58 | 58 | |
59 | 59 | $user->removeRole($securityRole); |
60 | - $output->writeln(sprintf('Security role <comment>%s</comment> has been removed from user <comment>%s</comment>', $securityRole, (string)$user)); |
|
60 | + $output->writeln(sprintf('Security role <comment>%s</comment> has been removed from user <comment>%s</comment>', $securityRole, (string) $user)); |
|
61 | 61 | } |
62 | 62 | |
63 | 63 | if (!$error) { |
@@ -163,7 +163,7 @@ |
||
163 | 163 | */ |
164 | 164 | public function orderBy($field, $direction) |
165 | 165 | { |
166 | - $this->orderBys = [ $field => $direction ]; |
|
166 | + $this->orderBys = [$field => $direction]; |
|
167 | 167 | } |
168 | 168 | |
169 | 169 | /** |
@@ -76,7 +76,7 @@ |
||
76 | 76 | { |
77 | 77 | $this->shouldThrow( |
78 | 78 | new \RuntimeException('Unknown restrict condition "foo"') |
79 | - )->during('restrict', [ $comparison, 'foo' ]); |
|
79 | + )->during('restrict', [$comparison, 'foo']); |
|
80 | 80 | } |
81 | 81 | |
82 | 82 | function it_should_return_the_expression_builder( |
@@ -51,13 +51,13 @@ |
||
51 | 51 | |
52 | 52 | foreach ($securityRoles as $securityRole) { |
53 | 53 | if ($user->hasRole($securityRole)) { |
54 | - $output->writeln(sprintf('<error>User "%s" did already have "%s" security role.</error>', (string)$user, $securityRole)); |
|
54 | + $output->writeln(sprintf('<error>User "%s" did already have "%s" security role.</error>', (string) $user, $securityRole)); |
|
55 | 55 | $error = true; |
56 | 56 | continue; |
57 | 57 | } |
58 | 58 | |
59 | 59 | $user->addRole($securityRole); |
60 | - $output->writeln(sprintf('Security role <comment>%s</comment> has been added to user <comment>%s</comment>', $securityRole, (string)$user)); |
|
60 | + $output->writeln(sprintf('Security role <comment>%s</comment> has been added to user <comment>%s</comment>', $securityRole, (string) $user)); |
|
61 | 61 | } |
62 | 62 | |
63 | 63 | if (!$error) { |
@@ -49,7 +49,7 @@ |
||
49 | 49 | $documentManager->getClassMetadata('stdClass')->willReturn($metadata); |
50 | 50 | $metadata->nodename = null; |
51 | 51 | |
52 | - $this->shouldThrow(new \RuntimeException('In order to use the node name filter on "stdClass" it is necessary to map a field as the "nodename"'))->during('onEvent', [ $event ]); |
|
52 | + $this->shouldThrow(new \RuntimeException('In order to use the node name filter on "stdClass" it is necessary to map a field as the "nodename"'))->during('onEvent', [$event]); |
|
53 | 53 | } |
54 | 54 | |
55 | 55 | function it_should_clean_the_name( |
@@ -50,7 +50,7 @@ |
||
50 | 50 | $metadata->idGenerator = 'foo'; |
51 | 51 | |
52 | 52 | $this->shouldThrow(new \RuntimeException('Document of class "stdClass" must be using the GENERATOR_TYPE_PARENT identificatio strategy (value 3), it is current using "foo" (this may be an automatic configuration: be sure to map both the `nodename` and the `parentDocument`).'))->during( |
53 | - 'onEvent', [ $event ] |
|
53 | + 'onEvent', [$event] |
|
54 | 54 | ); |
55 | 55 | } |
56 | 56 |
@@ -58,7 +58,7 @@ discard block |
||
58 | 58 | 'A default parent path has been specified, but no parent mapping has been applied to document "stdClass"' |
59 | 59 | ))->during( |
60 | 60 | 'onPreCreate', |
61 | - [ $event ] |
|
61 | + [$event] |
|
62 | 62 | ); |
63 | 63 | } |
64 | 64 | |
@@ -84,7 +84,7 @@ discard block |
||
84 | 84 | 'Document at default parent path "/path/to" does not exist. `autocreate` was set to "false"' |
85 | 85 | ))->during( |
86 | 86 | 'onPreCreate', |
87 | - [ $event ] |
|
87 | + [$event] |
|
88 | 88 | ); |
89 | 89 | } |
90 | 90 |
@@ -19,17 +19,25 @@ discard block |
||
19 | 19 | */ |
20 | 20 | interface UpdatePageInterface extends BaseUpdatePageInterface |
21 | 21 | { |
22 | + /** |
|
23 | + * @return void |
|
24 | + */ |
|
22 | 25 | public function enable(); |
23 | 26 | |
27 | + /** |
|
28 | + * @return void |
|
29 | + */ |
|
24 | 30 | public function disable(); |
25 | 31 | |
26 | 32 | /** |
27 | 33 | * @param string $themeName |
34 | + * @return void |
|
28 | 35 | */ |
29 | 36 | public function setTheme($themeName); |
30 | 37 | |
31 | 38 | /** |
32 | 39 | * @throws ElementNotFoundException |
40 | + * @return void |
|
33 | 41 | */ |
34 | 42 | public function unsetTheme(); |
35 | 43 | |
@@ -40,6 +48,7 @@ discard block |
||
40 | 48 | |
41 | 49 | /** |
42 | 50 | * @param string $language |
51 | + * @return void |
|
43 | 52 | */ |
44 | 53 | public function chooseLocale($language); |
45 | 54 | |
@@ -52,6 +61,7 @@ discard block |
||
52 | 61 | |
53 | 62 | /** |
54 | 63 | * @param string $currencyCode |
64 | + * @return void |
|
55 | 65 | */ |
56 | 66 | public function chooseCurrency($currencyCode); |
57 | 67 | |
@@ -64,6 +74,7 @@ discard block |
||
64 | 74 | |
65 | 75 | /** |
66 | 76 | * @param string $shippingMethod |
77 | + * @return void |
|
67 | 78 | */ |
68 | 79 | public function chooseShippingMethod($shippingMethod); |
69 | 80 | |
@@ -76,6 +87,7 @@ discard block |
||
76 | 87 | |
77 | 88 | /** |
78 | 89 | * @param string $paymentMethod |
90 | + * @return void |
|
79 | 91 | */ |
80 | 92 | public function choosePaymentMethod($paymentMethod); |
81 | 93 |
@@ -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 | /** |
@@ -44,28 +51,36 @@ discard block |
||
44 | 51 | * @param string $name |
45 | 52 | * @param string $code |
46 | 53 | * @param string|null $abbreviation |
54 | + * @return void |
|
47 | 55 | */ |
48 | 56 | public function addProvince($name, $code, $abbreviation = null); |
49 | 57 | |
50 | 58 | /** |
51 | 59 | * @param string $provinceName |
60 | + * @return void |
|
52 | 61 | */ |
53 | 62 | public function removeProvince($provinceName); |
54 | 63 | |
64 | + /** |
|
65 | + * @return void |
|
66 | + */ |
|
55 | 67 | public function clickAddProvinceButton(); |
56 | 68 | |
57 | 69 | /** |
58 | 70 | * @param string $provinceName |
71 | + * @return void |
|
59 | 72 | */ |
60 | 73 | public function nameProvince($provinceName); |
61 | 74 | |
62 | 75 | /** |
63 | 76 | * @param string $provinceName |
77 | + * @return void |
|
64 | 78 | */ |
65 | 79 | public function removeProvinceName($provinceName); |
66 | 80 | |
67 | 81 | /** |
68 | 82 | * @param string $provinceCode |
83 | + * @return void |
|
69 | 84 | */ |
70 | 85 | public function specifyProvinceCode($provinceCode); |
71 | 86 | } |