@@ -27,6 +27,7 @@ discard block |
||
27 | 27 | |
28 | 28 | /** |
29 | 29 | * @param string $firstName |
30 | + * @return void |
|
30 | 31 | */ |
31 | 32 | public function setFirstName($firstName); |
32 | 33 | |
@@ -37,6 +38,7 @@ discard block |
||
37 | 38 | |
38 | 39 | /** |
39 | 40 | * @param string $lastName |
41 | + * @return void |
|
40 | 42 | */ |
41 | 43 | public function setLastName($lastName); |
42 | 44 | |
@@ -47,6 +49,7 @@ discard block |
||
47 | 49 | |
48 | 50 | /** |
49 | 51 | * @param string $code |
52 | + * @return void |
|
50 | 53 | */ |
51 | 54 | public function setLocaleCode($code); |
52 | 55 | } |
@@ -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\Component\Core\Model; |
15 | 15 |
@@ -47,6 +47,7 @@ discard block |
||
47 | 47 | * @param string $variantSelectionMethod |
48 | 48 | * |
49 | 49 | * @throws \InvalidArgumentException |
50 | + * @return void |
|
50 | 51 | */ |
51 | 52 | public function setVariantSelectionMethod($variantSelectionMethod); |
52 | 53 | |
@@ -67,6 +68,7 @@ discard block |
||
67 | 68 | |
68 | 69 | /** |
69 | 70 | * @param string $shortDescription |
71 | + * @return void |
|
70 | 72 | */ |
71 | 73 | public function setShortDescription($shortDescription); |
72 | 74 | |
@@ -77,6 +79,7 @@ discard block |
||
77 | 79 | |
78 | 80 | /** |
79 | 81 | * @param TaxonInterface $mainTaxon |
82 | + * @return void |
|
80 | 83 | */ |
81 | 84 | public function setMainTaxon(TaxonInterface $mainTaxon = null); |
82 | 85 |
@@ -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\Component\Core\Model; |
15 | 15 |
@@ -25,6 +25,7 @@ discard block |
||
25 | 25 | |
26 | 26 | /** |
27 | 27 | * @param ProductInterface $product |
28 | + * @return void |
|
28 | 29 | */ |
29 | 30 | public function setProduct(ProductInterface $product); |
30 | 31 | |
@@ -35,6 +36,7 @@ discard block |
||
35 | 36 | |
36 | 37 | /** |
37 | 38 | * @param TaxonInterface $taxon |
39 | + * @return void |
|
38 | 40 | */ |
39 | 41 | public function setTaxon(TaxonInterface $taxon); |
40 | 42 | |
@@ -45,6 +47,7 @@ discard block |
||
45 | 47 | |
46 | 48 | /** |
47 | 49 | * @param int $position |
50 | + * @return void |
|
48 | 51 | */ |
49 | 52 | public function setPosition($position); |
50 | 53 | } |
@@ -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\Component\Core\Model; |
15 | 15 |
@@ -32,11 +32,13 @@ |
||
32 | 32 | |
33 | 33 | /** |
34 | 34 | * @param ProductTaxonInterface $productTaxon |
35 | + * @return void |
|
35 | 36 | */ |
36 | 37 | public function addProductTaxon(ProductTaxonInterface $productTaxon); |
37 | 38 | |
38 | 39 | /** |
39 | 40 | * @param ProductTaxonInterface $productTaxon |
41 | + * @return void |
|
40 | 42 | */ |
41 | 43 | public function removeProductTaxon(ProductTaxonInterface $productTaxon); |
42 | 44 |
@@ -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\Component\Core\Model; |
15 | 15 |
@@ -25,6 +25,7 @@ |
||
25 | 25 | |
26 | 26 | /** |
27 | 27 | * @param int|null $perCustomerUsageLimit |
28 | + * @return void |
|
28 | 29 | */ |
29 | 30 | public function setPerCustomerUsageLimit($perCustomerUsageLimit); |
30 | 31 | } |
@@ -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\Component\Core\Model; |
15 | 15 |
@@ -29,11 +29,13 @@ |
||
29 | 29 | |
30 | 30 | /** |
31 | 31 | * @param ZoneInterface|null $zone |
32 | + * @return void |
|
32 | 33 | */ |
33 | 34 | public function setZone(ZoneInterface $zone = null); |
34 | 35 | |
35 | 36 | /** |
36 | 37 | * @param TaxCategoryInterface|null $category |
38 | + * @return void |
|
37 | 39 | */ |
38 | 40 | public function setTaxCategory(TaxCategoryInterface $category = null); |
39 | 41 | } |
@@ -14,8 +14,8 @@ |
||
14 | 14 | use Sylius\Component\Addressing\Model\ZoneInterface; |
15 | 15 | use Sylius\Component\Channel\Model\ChannelsAwareInterface; |
16 | 16 | use Sylius\Component\Shipping\Model\ShippingMethodInterface as BaseShippingMethodInterface; |
17 | -use Sylius\Component\Taxation\Model\TaxableInterface; |
|
18 | 17 | use Sylius\Component\Taxation\Model\TaxCategoryInterface; |
18 | +use Sylius\Component\Taxation\Model\TaxableInterface; |
|
19 | 19 | |
20 | 20 | /** |
21 | 21 | * @author Paweł Jędrzejewski <[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\Component\Core\Model; |
15 | 15 |
@@ -26,6 +26,7 @@ |
||
26 | 26 | |
27 | 27 | /** |
28 | 28 | * @param ZoneInterface|null $zone |
29 | + * @return void |
|
29 | 30 | */ |
30 | 31 | public function setZone(ZoneInterface $zone = null); |
31 | 32 | } |
@@ -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\Component\Core\Model; |
15 | 15 |
@@ -20,6 +20,7 @@ |
||
20 | 20 | { |
21 | 21 | /** |
22 | 22 | * @param OrderInterface $order |
23 | + * @return void |
|
23 | 24 | */ |
24 | 25 | public function assignTokenValue(OrderInterface $order); |
25 | 26 | } |
@@ -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\Component\Core\TokenAssigner; |
15 | 15 |
@@ -16,5 +16,8 @@ |
||
16 | 16 | */ |
17 | 17 | interface UnpaidOrdersStateUpdaterInterface |
18 | 18 | { |
19 | + /** |
|
20 | + * @return void |
|
21 | + */ |
|
19 | 22 | public function cancel(); |
20 | 23 | } |
@@ -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\Component\Core\Updater; |
15 | 15 |