Completed
Push — remove-codeowners ( c2a3b4 )
by Kamil
35:29 queued 21:05
created
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.
src/Sylius/Bundle/ResourceBundle/Controller/ParametersParser.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -111,7 +111,7 @@
 block discarded – undo
111 111
     }
112 112
 
113 113
     /**
114
-     * @param mixed $parameter
114
+     * @param string $parameter
115 115
      * @param Request $request
116 116
      *
117 117
      * @return mixed
Please login to merge, or discard this patch.
src/Sylius/Component/Core/Currency/CurrencyStorageInterface.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 ChannelInterface $channel
26 26
      * @param string $currencyCode
27
+     * @return void
27 28
      */
28 29
     public function set(ChannelInterface $channel, string $currencyCode): void;
29 30
 
Please login to merge, or discard this patch.
src/Sylius/Component/Core/Customer/CustomerAddressAdderInterface.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 CustomerInterface $customer
26 26
      * @param AddressInterface $address
27
+     * @return void
27 28
      */
28 29
     public function add(CustomerInterface $customer, AddressInterface $address): void;
29 30
 }
Please login to merge, or discard this patch.
src/Sylius/Component/Core/Customer/OrderAddressesSaverInterface.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 saveAddresses(OrderInterface $order): void;
27 28
 }
Please login to merge, or discard this patch.
Component/Core/Inventory/Operator/OrderInventoryOperatorInterface.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -24,11 +24,13 @@  discard block
 block discarded – undo
24 24
      * @param OrderInterface $order
25 25
      *
26 26
      * @throws \InvalidArgumentException
27
+     * @return void
27 28
      */
28 29
     public function cancel(OrderInterface $order): void;
29 30
 
30 31
     /**
31 32
      * @param OrderInterface $order
33
+     * @return void
32 34
      */
33 35
     public function hold(OrderInterface $order): void;
34 36
 
@@ -36,6 +38,7 @@  discard block
 block discarded – undo
36 38
      * @param OrderInterface $order
37 39
      *
38 40
      * @throws \InvalidArgumentException
41
+     * @return void
39 42
      */
40 43
     public function sell(OrderInterface $order): void;
41 44
 }
Please login to merge, or discard this patch.