@@ -33,6 +33,7 @@ discard block |
||
| 33 | 33 | |
| 34 | 34 | /** |
| 35 | 35 | * @param string $name |
| 36 | + * @return void |
|
| 36 | 37 | */ |
| 37 | 38 | public function setName($name); |
| 38 | 39 | |
@@ -43,6 +44,7 @@ discard block |
||
| 43 | 44 | |
| 44 | 45 | /** |
| 45 | 46 | * @param string $description |
| 47 | + * @return void |
|
| 46 | 48 | */ |
| 47 | 49 | public function setDescription($description); |
| 48 | 50 | |
@@ -53,6 +55,7 @@ discard block |
||
| 53 | 55 | |
| 54 | 56 | /** |
| 55 | 57 | * @param string $instructions |
| 58 | + * @return void |
|
| 56 | 59 | */ |
| 57 | 60 | public function setInstructions($instructions); |
| 58 | 61 | |
@@ -63,6 +66,7 @@ discard block |
||
| 63 | 66 | |
| 64 | 67 | /** |
| 65 | 68 | * @param string $environment |
| 69 | + * @return void |
|
| 66 | 70 | */ |
| 67 | 71 | public function setEnvironment($environment); |
| 68 | 72 | |
@@ -73,6 +77,7 @@ discard block |
||
| 73 | 77 | |
| 74 | 78 | /** |
| 75 | 79 | * @param int $position |
| 80 | + * @return void |
|
| 76 | 81 | */ |
| 77 | 82 | public function setPosition($position); |
| 78 | 83 | } |
@@ -50,7 +50,7 @@ |
||
| 50 | 50 | |
| 51 | 51 | /** |
| 52 | 52 | * @param mixed $subjects |
| 53 | - * @param array|string[] $associationsPaths |
|
| 53 | + * @param string[] $associationsPaths |
|
| 54 | 54 | */ |
| 55 | 55 | public function hydrateAssociations($subjects, array $associationsPaths) |
| 56 | 56 | { |
@@ -23,18 +23,21 @@ |
||
| 23 | 23 | * @param RequestConfiguration $requestConfiguration |
| 24 | 24 | * @param string $actionName |
| 25 | 25 | * @param ResourceInterface|null $resource |
| 26 | + * @return void |
|
| 26 | 27 | */ |
| 27 | 28 | public function addSuccessFlash(RequestConfiguration $requestConfiguration, $actionName, ResourceInterface $resource = null); |
| 28 | 29 | |
| 29 | 30 | /** |
| 30 | 31 | * @param RequestConfiguration $requestConfiguration |
| 31 | 32 | * @param string $actionName |
| 33 | + * @return void |
|
| 32 | 34 | */ |
| 33 | 35 | public function addErrorFlash(RequestConfiguration $requestConfiguration, $actionName); |
| 34 | 36 | |
| 35 | 37 | /** |
| 36 | 38 | * @param RequestConfiguration $requestConfiguration |
| 37 | 39 | * @param ResourceControllerEvent $event |
| 40 | + * @return void |
|
| 38 | 41 | */ |
| 39 | 42 | public function addFlashFromEvent(RequestConfiguration $requestConfiguration, ResourceControllerEvent $event); |
| 40 | 43 | } |
@@ -23,6 +23,7 @@ |
||
| 23 | 23 | * @param ResourceInterface $resource |
| 24 | 24 | * @param RequestConfiguration $requestConfiguration |
| 25 | 25 | * @param ObjectManager $manager |
| 26 | + * @return void |
|
| 26 | 27 | */ |
| 27 | 28 | public function handle( |
| 28 | 29 | ResourceInterface $resource, |
@@ -23,6 +23,7 @@ |
||
| 23 | 23 | |
| 24 | 24 | /** |
| 25 | 25 | * @param int $version |
| 26 | + * @return void |
|
| 26 | 27 | */ |
| 27 | 28 | public function setVersion($version); |
| 28 | 29 | } |
@@ -27,6 +27,7 @@ discard block |
||
| 27 | 27 | |
| 28 | 28 | /** |
| 29 | 29 | * @param ProductVariantInterface|null $productVariant |
| 30 | + * @return void |
|
| 30 | 31 | */ |
| 31 | 32 | public function setProductVariant(ProductVariantInterface $productVariant = null); |
| 32 | 33 | |
@@ -37,6 +38,7 @@ discard block |
||
| 37 | 38 | |
| 38 | 39 | /** |
| 39 | 40 | * @param int $price |
| 41 | + * @return void |
|
| 40 | 42 | */ |
| 41 | 43 | public function setPrice($price); |
| 42 | 44 | |
@@ -47,6 +49,7 @@ discard block |
||
| 47 | 49 | |
| 48 | 50 | /** |
| 49 | 51 | * @param string $channelCode |
| 52 | + * @return void |
|
| 50 | 53 | */ |
| 51 | 54 | public function setChannelCode($channelCode); |
| 52 | 55 | |
@@ -57,6 +60,7 @@ discard block |
||
| 57 | 60 | |
| 58 | 61 | /** |
| 59 | 62 | * @param int $originalPrice |
| 63 | + * @return void |
|
| 60 | 64 | */ |
| 61 | 65 | public function setOriginalPrice($originalPrice); |
| 62 | 66 | |
@@ -30,11 +30,13 @@ |
||
| 30 | 30 | |
| 31 | 31 | /** |
| 32 | 32 | * @param ProductVariantInterface $productVariant |
| 33 | + * @return void |
|
| 33 | 34 | */ |
| 34 | 35 | public function addProductVariant(ProductVariantInterface $productVariant); |
| 35 | 36 | |
| 36 | 37 | /** |
| 37 | 38 | * @param ProductVariantInterface $productVariant |
| 39 | + * @return void |
|
| 38 | 40 | */ |
| 39 | 41 | public function removeProductVariant(ProductVariantInterface $productVariant); |
| 40 | 42 | |
@@ -20,6 +20,7 @@ |
||
| 20 | 20 | { |
| 21 | 21 | /** |
| 22 | 22 | * @param ShipmentInterface $shipment |
| 23 | + * @return void |
|
| 23 | 24 | */ |
| 24 | 25 | public function sendConfirmationEmail(ShipmentInterface $shipment); |
| 25 | 26 | } |
@@ -19,6 +19,7 @@ |
||
| 19 | 19 | /** |
| 20 | 20 | * @param array $data |
| 21 | 21 | * @param array $recipients |
| 22 | + * @return void |
|
| 22 | 23 | */ |
| 23 | 24 | public function sendContactRequest(array $data, array $recipients); |
| 24 | 25 | } |