@@ -17,5 +17,8 @@ |
||
17 | 17 | |
18 | 18 | interface FakeChannelCodeProviderInterface |
19 | 19 | { |
20 | + /** |
|
21 | + * @return string|null |
|
22 | + */ |
|
20 | 23 | public function getCode(Request $request): ?string; |
21 | 24 | } |
@@ -18,5 +18,8 @@ |
||
18 | 18 | |
19 | 19 | interface IpAssignerInterface |
20 | 20 | { |
21 | + /** |
|
22 | + * @return void |
|
23 | + */ |
|
21 | 24 | public function assign(OrderInterface $order, Request $request): void; |
22 | 25 | } |
@@ -18,5 +18,8 @@ |
||
18 | 18 | |
19 | 19 | interface ChannelSetupInterface |
20 | 20 | { |
21 | + /** |
|
22 | + * @return void |
|
23 | + */ |
|
21 | 24 | public function setup(LocaleInterface $locale, CurrencyInterface $currency): void; |
22 | 25 | } |
@@ -17,5 +17,8 @@ |
||
17 | 17 | |
18 | 18 | interface ReviewerReviewsRemoverInterface |
19 | 19 | { |
20 | + /** |
|
21 | + * @return void |
|
22 | + */ |
|
20 | 23 | public function removeReviewerReviews(ReviewerInterface $author): void; |
21 | 24 | } |
@@ -17,5 +17,8 @@ |
||
17 | 17 | |
18 | 18 | interface UserImpersonatorInterface |
19 | 19 | { |
20 | + /** |
|
21 | + * @return void |
|
22 | + */ |
|
20 | 23 | public function impersonate(UserInterface $user): void; |
21 | 24 | } |
@@ -95,6 +95,7 @@ discard block |
||
95 | 95 | |
96 | 96 | /** |
97 | 97 | * @param object $entity |
98 | + * @param string|null $manager |
|
98 | 99 | */ |
99 | 100 | private function getProperObjectManager(?string $manager, $entity): ?ObjectManager |
100 | 101 | { |
@@ -119,6 +120,7 @@ discard block |
||
119 | 120 | |
120 | 121 | /** |
121 | 122 | * @throws ConstraintDefinitionException |
123 | + * @param ObjectManager|null $objectManager |
|
122 | 124 | */ |
123 | 125 | private function validateObjectManager(?ObjectManager $objectManager, string $exceptionMessage): void |
124 | 126 | { |
@@ -17,5 +17,8 @@ |
||
17 | 17 | |
18 | 18 | interface OrderNumberAssignerInterface |
19 | 19 | { |
20 | + /** |
|
21 | + * @return void |
|
22 | + */ |
|
20 | 23 | public function assignNumber(OrderInterface $order): void; |
21 | 24 | } |
@@ -15,5 +15,8 @@ |
||
15 | 15 | |
16 | 16 | interface ContactEmailManagerInterface |
17 | 17 | { |
18 | + /** |
|
19 | + * @return void |
|
20 | + */ |
|
18 | 21 | public function sendContactRequest(array $data, array $recipients): void; |
19 | 22 | } |
@@ -17,5 +17,8 @@ |
||
17 | 17 | |
18 | 18 | interface OrderEmailManagerInterface |
19 | 19 | { |
20 | + /** |
|
21 | + * @return void |
|
22 | + */ |
|
20 | 23 | public function sendConfirmationEmail(OrderInterface $order): void; |
21 | 24 | } |