Completed
Push — 1.1-csrf-token-user ( e22bcb...d4c2fb )
by Kamil
17:31
created
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.
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.