Completed
Push — pull-request/8500 ( e49efc...54b484 )
by Kamil
36:05 queued 17:36
created
Sylius/Bundle/CoreBundle/Fixture/Factory/ShippingMethodExampleFactory.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -94,7 +94,7 @@
 block discarded – undo
94 94
     }
95 95
 
96 96
     /**
97
-     * @return array
97
+     * @return \Generator
98 98
      */
99 99
     private function getLocales()
100 100
     {
Please login to merge, or discard this patch.
src/Sylius/Bundle/CoreBundle/Fixture/Factory/TaxonExampleFactory.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -94,7 +94,7 @@
 block discarded – undo
94 94
     }
95 95
 
96 96
     /**
97
-     * @return array
97
+     * @return \Generator
98 98
      */
99 99
     private function getLocales()
100 100
     {
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
@@ -22,6 +22,7 @@
 block discarded – undo
22 22
     /**
23 23
      * @param LocaleInterface $locale
24 24
      * @param CurrencyInterface $currency
25
+     * @return void
25 26
      */
26 27
     public function setup(LocaleInterface $locale, CurrencyInterface $currency);
27 28
 }
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
@@ -20,6 +20,7 @@
 block discarded – undo
20 20
 {
21 21
     /**
22 22
      * @param ReviewerInterface $author
23
+     * @return void
23 24
      */
24 25
     public function removeReviewerReviews(ReviewerInterface $author);
25 26
 }
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
@@ -20,6 +20,7 @@
 block discarded – undo
20 20
 {
21 21
     /**
22 22
      * @param UserInterface $user
23
+     * @return void
23 24
      */
24 25
     public function impersonate(UserInterface $user);
25 26
 }
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
@@ -22,6 +22,7 @@
 block discarded – undo
22 22
     /**
23 23
      * @param ChannelInterface $channel
24 24
      * @param string $currencyCode
25
+     * @return void
25 26
      */
26 27
     public function set(ChannelInterface $channel, $currencyCode);
27 28
 
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
@@ -22,6 +22,7 @@
 block discarded – undo
22 22
     /**
23 23
      * @param CustomerInterface $customer
24 24
      * @param AddressInterface $address
25
+     * @return void
25 26
      */
26 27
     public function add(CustomerInterface $customer, AddressInterface $address);
27 28
 }
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
@@ -20,6 +20,7 @@
 block discarded – undo
20 20
 {
21 21
     /**
22 22
      * @param OrderInterface $order
23
+     * @return void
23 24
      */
24 25
     public function saveAddresses(OrderInterface $order);
25 26
 }
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
@@ -22,11 +22,13 @@  discard block
 block discarded – undo
22 22
      * @param OrderInterface $order
23 23
      *
24 24
      * @throws \InvalidArgumentException
25
+     * @return void
25 26
      */
26 27
     public function cancel(OrderInterface $order);
27 28
     
28 29
     /**
29 30
      * @param OrderInterface $order
31
+     * @return void
30 32
      */
31 33
     public function hold(OrderInterface $order);
32 34
 
@@ -34,6 +36,7 @@  discard block
 block discarded – undo
34 36
      * @param OrderInterface $order
35 37
      *
36 38
      * @throws \InvalidArgumentException
39
+     * @return void
37 40
      */
38 41
     public function sell(OrderInterface $order);
39 42
 }
Please login to merge, or discard this patch.