Completed
Push — resource-classnames ( 503d2e )
by Kamil
18:12
created
src/Sylius/Behat/Page/Shop/Checkout/SelectShippingPageInterface.php 1 patch
Doc Comments   +10 added lines patch added patch discarded remove patch
@@ -20,6 +20,7 @@  discard block
 block discarded – undo
20 20
 {
21 21
     /**
22 22
      * @param string $shippingMethod
23
+     * @return void
23 24
      */
24 25
     public function selectShippingMethod($shippingMethod);
25 26
 
@@ -50,10 +51,19 @@  discard block
 block discarded – undo
50 51
      */
51 52
     public function getItemSubtotal($itemName);
52 53
 
54
+    /**
55
+     * @return void
56
+     */
53 57
     public function nextStep();
54 58
 
59
+    /**
60
+     * @return void
61
+     */
55 62
     public function changeAddress();
56 63
 
64
+    /**
65
+     * @return void
66
+     */
57 67
     public function changeAddressByStepLabel();
58 68
 
59 69
     /**
Please login to merge, or discard this patch.
src/Sylius/Behat/Page/Shop/Order/ShowPageInterface.php 1 patch
Doc Comments   +4 added lines patch added patch discarded remove patch
@@ -26,10 +26,14 @@
 block discarded – undo
26 26
      */
27 27
     public function checkValidationMessageFor($element, $message);
28 28
 
29
+    /**
30
+     * @return void
31
+     */
29 32
     public function reset();
30 33
 
31 34
     /**
32 35
      * @param string $email
36
+     * @return void
33 37
      */
34 38
     public function specifyEmail($email);
35 39
 }
Please login to merge, or discard this patch.
src/Sylius/Behat/Page/Shop/Order/ThankYouPageInterface.php 1 patch
Doc Comments   +1 added lines patch added patch discarded remove patch
@@ -27,6 +27,7 @@
 block discarded – undo
27 27
 
28 28
     /**
29 29
      * @param string $value
30
+     * @return void
30 31
      */
31 32
     public function setValue($value);
32 33
 }
Please login to merge, or discard this patch.
src/Sylius/Behat/Service/Mocker/MockerInterface.php 1 patch
Doc Comments   +4 added lines patch added patch discarded remove patch
@@ -20,8 +20,12 @@
 block discarded – undo
20 20
 {
21 21
     /**
22 22
      * @param string $shippingMethod
23
+     * @return void
23 24
      */
24 25
     public function selectShippingMethod($shippingMethod);
25 26
 
27
+    /**
28
+     * @return void
29
+     */
26 30
     public function continueCheckout();
27 31
 }
Please login to merge, or discard this patch.
src/Sylius/Behat/Service/SharedSecurityServiceInterface.php 1 patch
Doc Comments   +1 added lines patch added patch discarded remove patch
@@ -27,6 +27,7 @@
 block discarded – undo
27 27
 
28 28
     /**
29 29
      * @param string $value
30
+     * @return void
30 31
      */
31 32
     public function setValue($value);
32 33
 }
Please login to merge, or discard this patch.
Bundle/AttributeBundle/Doctrine/ORM/Subscriber/LoadMetadataSubscriber.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -58,7 +58,7 @@
 block discarded – undo
58 58
     }
59 59
 
60 60
     /**
61
-     * @return array
61
+     * @return string[]
62 62
      */
63 63
     public function getRecipients()
64 64
     {
Please login to merge, or discard this patch.
src/Sylius/Bundle/CoreBundle/Command/SetupCommand.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -215,7 +215,7 @@
 block discarded – undo
215 215
     /**
216 216
      * @param OutputInterface $output
217 217
      *
218
-     * @return mixed
218
+     * @return string
219 219
      */
220 220
     private function getAdministratorPassword(OutputInterface $output)
221 221
     {
Please login to merge, or discard this patch.
Sylius/Bundle/OrderBundle/NumberAssigner/OrderNumberAssignerInterface.php 1 patch
Doc Comments   +1 added lines patch added patch discarded remove patch
@@ -27,6 +27,7 @@
 block discarded – undo
27 27
 
28 28
     /**
29 29
      * @param string $value
30
+     * @return void
30 31
      */
31 32
     public function setValue($value);
32 33
 }
Please login to merge, or discard this patch.
src/Sylius/Bundle/ResourceBundle/Controller/RequestConfiguration.php 1 patch
Doc Comments   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -164,7 +164,7 @@  discard block
 block discarded – undo
164 164
     /**
165 165
      * @param $name
166 166
      *
167
-     * @return mixed|null|string
167
+     * @return string
168 168
      */
169 169
     public function getRedirectRoute($name)
170 170
     {
@@ -224,7 +224,7 @@  discard block
 block discarded – undo
224 224
     }
225 225
 
226 226
     /**
227
-     * @param object|null $resource
227
+     * @param \Sylius\Component\Resource\Model\ResourceInterface|null $resource
228 228
      *
229 229
      * @return array
230 230
      */
@@ -343,7 +343,7 @@  discard block
 block discarded – undo
343 343
     }
344 344
 
345 345
     /**
346
-     * @param $parameter
346
+     * @param string $parameter
347 347
      * @param array $defaults
348 348
      *
349 349
      * @return array
@@ -423,7 +423,7 @@  discard block
 block discarded – undo
423 423
     /**
424 424
      * @param null $message
425 425
      *
426
-     * @return mixed|null
426
+     * @return string
427 427
      */
428 428
     public function getFlashMessage($message)
429 429
     {
@@ -447,7 +447,7 @@  discard block
 block discarded – undo
447 447
     }
448 448
 
449 449
     /**
450
-     * @return mixed|null
450
+     * @return string
451 451
      */
452 452
     public function getSerializationVersion()
453 453
     {
Please login to merge, or discard this patch.