Completed
Push — 1.1-csrf-token-user ( e22bcb...d4c2fb )
by Kamil
17:31
created
src/Sylius/Component/Order/Processor/OrderProcessorInterface.php 1 patch
Doc Comments   +1 added lines patch added patch discarded remove patch
@@ -22,6 +22,7 @@
 block discarded – undo
22 22
 {
23 23
     /**
24 24
      * @param OrderInterface $order
25
+     * @return void
25 26
      */
26 27
     public function process(OrderInterface $order): void;
27 28
 }
Please login to merge, or discard this patch.
src/Sylius/Component/Order/StateResolver/StateResolverInterface.php 1 patch
Doc Comments   +1 added lines patch added patch discarded remove patch
@@ -22,6 +22,7 @@
 block discarded – undo
22 22
 {
23 23
     /**
24 24
      * @param OrderInterface $order
25
+     * @return void
25 26
      */
26 27
     public function resolve(OrderInterface $order): void;
27 28
 }
Please login to merge, or discard this patch.
src/Sylius/Behat/Page/SymfonyPageInterface.php 1 patch
Doc Comments   +1 added lines patch added patch discarded remove patch
@@ -27,6 +27,7 @@
 block discarded – undo
27 27
      * @param array $requiredUrlParameters
28 28
      *
29 29
      * @throws UnexpectedPageException
30
+     * @return void
30 31
      */
31 32
     public function verifyRoute(array $requiredUrlParameters = []);
32 33
 }
Please login to merge, or discard this patch.
Promotion/Generator/PromotionCouponGeneratorInstructionInterface.php 1 patch
Doc Comments   +4 added lines patch added patch discarded remove patch
@@ -25,6 +25,7 @@  discard block
 block discarded – undo
25 25
 
26 26
     /**
27 27
      * @param int|null $amount
28
+     * @return void
28 29
      */
29 30
     public function setAmount(?int $amount): void;
30 31
 
@@ -35,6 +36,7 @@  discard block
 block discarded – undo
35 36
 
36 37
     /**
37 38
      * @param int|null $codeLength
39
+     * @return void
38 40
      */
39 41
     public function setCodeLength(?int $codeLength): void;
40 42
 
@@ -45,6 +47,7 @@  discard block
 block discarded – undo
45 47
 
46 48
     /**
47 49
      * @param \DateTimeInterface $expiresAt
50
+     * @return void
48 51
      */
49 52
     public function setExpiresAt(?\DateTimeInterface $expiresAt): void;
50 53
 
@@ -55,6 +58,7 @@  discard block
 block discarded – undo
55 58
 
56 59
     /**
57 60
      * @param int $usageLimit
61
+     * @return void
58 62
      */
59 63
     public function setUsageLimit(int $usageLimit): void;
60 64
 }
Please login to merge, or discard this patch.
src/Sylius/Bundle/CoreBundle/Assigner/IpAssignerInterface.php 1 patch
Doc Comments   +1 added lines patch added patch discarded remove patch
@@ -24,6 +24,7 @@
 block discarded – undo
24 24
     /**
25 25
      * @param OrderInterface $order
26 26
      * @param Request $request
27
+     * @return void
27 28
      */
28 29
     public function assign(OrderInterface $order, Request $request): void;
29 30
 }
Please login to merge, or discard this patch.
Sylius/Bundle/CoreBundle/Fixture/Factory/PaymentMethodExampleFactory.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -133,7 +133,7 @@
 block discarded – undo
133 133
     }
134 134
 
135 135
     /**
136
-     * @return iterable
136
+     * @return \Generator
137 137
      */
138 138
     private function getLocales(): iterable
139 139
     {
Please login to merge, or discard this patch.
src/Sylius/Bundle/CoreBundle/Installer/Setup/ChannelSetupInterface.php 1 patch
Doc Comments   +1 added lines patch added patch discarded remove patch
@@ -24,6 +24,7 @@
 block discarded – undo
24 24
     /**
25 25
      * @param LocaleInterface $locale
26 26
      * @param CurrencyInterface $currency
27
+     * @return void
27 28
      */
28 29
     public function setup(LocaleInterface $locale, CurrencyInterface $currency): void;
29 30
 }
Please login to merge, or discard this patch.
src/Sylius/Bundle/CoreBundle/Remover/ReviewerReviewsRemoverInterface.php 1 patch
Doc Comments   +1 added lines patch added patch discarded remove patch
@@ -22,6 +22,7 @@
 block discarded – undo
22 22
 {
23 23
     /**
24 24
      * @param ReviewerInterface $author
25
+     * @return void
25 26
      */
26 27
     public function removeReviewerReviews(ReviewerInterface $author): void;
27 28
 }
Please login to merge, or discard this patch.
src/Sylius/Bundle/CoreBundle/Security/UserImpersonatorInterface.php 1 patch
Doc Comments   +1 added lines patch added patch discarded remove patch
@@ -22,6 +22,7 @@
 block discarded – undo
22 22
 {
23 23
     /**
24 24
      * @param UserInterface $user
25
+     * @return void
25 26
      */
26 27
     public function impersonate(UserInterface $user): void;
27 28
 }
Please login to merge, or discard this patch.