Completed
Push — locale-in-url-docs ( 2a60a6...8c212f )
by Kamil
28:37 queued 09:45
created
src/Sylius/Behat/Page/Admin/ProductVariant/UpdatePageInterface.php 1 patch
Doc Comments   +8 added lines patch added patch discarded remove patch
@@ -27,11 +27,18 @@  discard block
 block discarded – undo
27 27
     
28 28
     /**
29 29
      * @param int $price
30
+     * @return void
30 31
      */
31 32
     public function specifyPrice($price);
32 33
 
34
+    /**
35
+     * @return void
36
+     */
33 37
     public function disableTracking();
34 38
 
39
+    /**
40
+     * @return void
41
+     */
35 42
     public function enableTracking();
36 43
 
37 44
     /**
@@ -63,6 +70,7 @@  discard block
 block discarded – undo
63 70
 
64 71
     /**
65 72
      * @param int $amount
73
+     * @return void
66 74
      */
67 75
     public function specifyCurrentStock($amount);
68 76
 }
Please login to merge, or discard this patch.
src/Sylius/Component/Product/Model/Product.php 1 patch
Doc Comments   +1 added lines patch added patch discarded remove patch
@@ -505,6 +505,7 @@
 block discarded – undo
505 505
 
506 506
     /**
507 507
      * {@inheritdoc}
508
+     * @param string $localeCode
508 509
      */
509 510
     private function getAttributeInDifferentLocale(ProductAttributeValueInterface $attributeValue, $localeCode)
510 511
     {
Please login to merge, or discard this patch.
src/Sylius/Component/Grid/Definition/Grid.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -225,7 +225,7 @@
 block discarded – undo
225 225
     }
226 226
 
227 227
     /**
228
-     * @return array
228
+     * @return Filter[]
229 229
      */
230 230
     public function getFilters()
231 231
     {
Please login to merge, or discard this patch.
src/Sylius/Component/Mailer/Event/EmailSendEvent.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -40,7 +40,7 @@  discard block
 block discarded – undo
40 40
     protected $data;
41 41
 
42 42
     /**
43
-     * @param mixed $message
43
+     * @param \Swift_Message $message
44 44
      * @param array $recipients
45 45
      * @param EmailInterface $email
46 46
      * @param array $data
@@ -54,7 +54,7 @@  discard block
 block discarded – undo
54 54
     }
55 55
 
56 56
     /**
57
-     * @return array
57
+     * @return string[]
58 58
      */
59 59
     public function getRecipients()
60 60
     {
Please login to merge, or discard this patch.
src/Sylius/Component/Payment/Model/PaymentInterface.php 1 patch
Doc Comments   +6 added lines patch added patch discarded remove patch
@@ -38,6 +38,7 @@  discard block
 block discarded – undo
38 38
 
39 39
     /**
40 40
      * @param null|PaymentMethodInterface $method
41
+     * @return void
41 42
      */
42 43
     public function setMethod(PaymentMethodInterface $method = null);
43 44
 
@@ -48,6 +49,7 @@  discard block
 block discarded – undo
48 49
 
49 50
     /**
50 51
      * @param string $state
52
+     * @return void
51 53
      */
52 54
     public function setState($state);
53 55
 
@@ -58,6 +60,8 @@  discard block
 block discarded – undo
58 60
 
59 61
     /**
60 62
      * @param string
63
+     * @param string $currencyCode
64
+     * @return void
61 65
      */
62 66
     public function setCurrencyCode($currencyCode);
63 67
 
@@ -68,6 +72,7 @@  discard block
 block discarded – undo
68 72
 
69 73
     /**
70 74
      * @param int $amount
75
+     * @return void
71 76
      */
72 77
     public function setAmount($amount);
73 78
 
@@ -78,6 +83,7 @@  discard block
 block discarded – undo
78 83
 
79 84
     /**
80 85
      * @param array|\Traversable $details
86
+     * @return void
81 87
      */
82 88
     public function setDetails($details);
83 89
 }
Please login to merge, or discard this patch.
src/Sylius/Behat/Context/Ui/Admin/ManagingProductVariantsContext.php 1 patch
Doc Comments   +2 added lines, -1 removed lines patch added patch discarded remove patch
@@ -225,6 +225,7 @@  discard block
 block discarded – undo
225 225
 
226 226
     /**
227 227
      * @Then the :productVariantCode variant of the :product product should appear in the store
228
+     * @param string $productVariantCode
228 229
      */
229 230
     public function theProductVariantShouldAppearInTheShop($productVariantCode, ProductInterface $product)
230 231
     {
@@ -763,7 +764,7 @@  discard block
 block discarded – undo
763 764
 
764 765
     /**
765 766
      * @param string $element
766
-     * @param $message
767
+     * @param string $message
767 768
      */
768 769
     private function assertValidationMessage($element, $message)
769 770
     {
Please login to merge, or discard this patch.
src/Sylius/Behat/Page/Admin/Account/LoginPageInterface.php 1 patch
Doc Comments   +5 added lines patch added patch discarded remove patch
@@ -25,15 +25,20 @@
 block discarded – undo
25 25
      */
26 26
     public function hasValidationErrorWith($message);
27 27
 
28
+    /**
29
+     * @return void
30
+     */
28 31
     public function logIn();
29 32
 
30 33
     /**
31 34
      * @param string $password
35
+     * @return void
32 36
      */
33 37
     public function specifyPassword($password);
34 38
 
35 39
     /**
36 40
      * @param string $username
41
+     * @return void
37 42
      */
38 43
     public function specifyUsername($username);
39 44
 }
Please login to merge, or discard this patch.
src/Sylius/Behat/Page/Admin/Administrator/CreatePageInterface.php 1 patch
Doc Comments   +7 added lines patch added patch discarded remove patch
@@ -18,25 +18,32 @@
 block discarded – undo
18 18
  */
19 19
 interface CreatePageInterface extends BaseCreatePageInterface
20 20
 {
21
+    /**
22
+     * @return void
23
+     */
21 24
     public function enable();
22 25
 
23 26
     /**
24 27
      * @param string $username
28
+     * @return void
25 29
      */
26 30
     public function specifyUsername($username);
27 31
 
28 32
     /**
29 33
      * @param string $email
34
+     * @return void
30 35
      */
31 36
     public function specifyEmail($email);
32 37
 
33 38
     /**
34 39
      * @param string $password
40
+     * @return void
35 41
      */
36 42
     public function specifyPassword($password);
37 43
 
38 44
     /**
39 45
      * @param string $localeCode
46
+     * @return void
40 47
      */
41 48
     public function specifyLocale($localeCode);
42 49
 }
Please login to merge, or discard this patch.
src/Sylius/Behat/Page/Admin/Administrator/UpdatePageInterface.php 1 patch
Doc Comments   +4 added lines patch added patch discarded remove patch
@@ -20,21 +20,25 @@
 block discarded – undo
20 20
 {
21 21
     /**
22 22
      * @param string $username
23
+     * @return void
23 24
      */
24 25
     public function changeUsername($username);
25 26
 
26 27
     /**
27 28
      * @param string $email
29
+     * @return void
28 30
      */
29 31
     public function changeEmail($email);
30 32
 
31 33
     /**
32 34
      * @param string $password
35
+     * @return void
33 36
      */
34 37
     public function changePassword($password);
35 38
 
36 39
     /**
37 40
      * @param string $localeCode
41
+     * @return void
38 42
      */
39 43
     public function changeLocale($localeCode);
40 44
 }
Please login to merge, or discard this patch.