Completed
Push — locale-in-url ( 6d9eda )
by Kamil
23:08
created
src/Sylius/Component/Core/Payment/Provider/OrderPaymentProvider.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -106,7 +106,7 @@
 block discarded – undo
106 106
      * @param PaymentInterface $payment
107 107
      * @param OrderInterface $order
108 108
      *
109
-     * @return PaymentMethodInterface|null
109
+     * @return \Sylius\Component\Payment\Model\PaymentMethodInterface|null
110 110
      */
111 111
     private function getDefaultPaymentMethod(PaymentInterface $payment, OrderInterface $order)
112 112
     {
Please login to merge, or discard this patch.
src/Sylius/Component/Grid/Data/ExpressionBuilderInterface.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -81,7 +81,7 @@
 block discarded – undo
81 81
 
82 82
     /**
83 83
      * @param string $field
84
-     * @param mixed $value
84
+     * @param string $value
85 85
      *
86 86
      * @return self
87 87
      */
Please login to merge, or discard this patch.
src/Sylius/Behat/Page/Admin/Channel/CreatePageInterface.php 1 patch
Doc Comments   +18 added lines patch added patch discarded remove patch
@@ -18,67 +18,85 @@
 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
 
26
+    /**
27
+     * @return void
28
+     */
23 29
     public function disable();
24 30
 
25 31
     /**
26 32
      * @param string $name
33
+     * @return void
27 34
      */
28 35
     public function nameIt($name);
29 36
 
30 37
     /**
31 38
      * @param string $code
39
+     * @return void
32 40
      */
33 41
     public function specifyCode($code);
34 42
 
35 43
     /**
36 44
      * @param string $description
45
+     * @return void
37 46
      */
38 47
     public function describeItAs($description);
39 48
 
40 49
     /**
41 50
      * @param string $hostname
51
+     * @return void
42 52
      */
43 53
     public function setHostname($hostname);
44 54
 
45 55
     /**
46 56
      * @param string $contactEmail
57
+     * @return void
47 58
      */
48 59
     public function setContactEmail($contactEmail);
49 60
 
50 61
     /**
51 62
      * @param string $color
63
+     * @return void
52 64
      */
53 65
     public function defineColor($color);
54 66
 
55 67
     /**
56 68
      * @param string $language
69
+     * @return void
57 70
      */
58 71
     public function chooseLocale($language);
59 72
 
60 73
     /**
61 74
      * @param string $currencyCode
75
+     * @return void
62 76
      */
63 77
     public function chooseCurrency($currencyCode);
64 78
 
65 79
     /**
66 80
      * @param string $taxZone
81
+     * @return void
67 82
      */
68 83
     public function chooseDefaultTaxZone($taxZone);
69 84
 
70 85
     /**
71 86
      * @param string $locale
87
+     * @return void
72 88
      */
73 89
     public function chooseDefaultLocale($locale);
74 90
 
75 91
     /**
76 92
      * @param string $currency
93
+     * @return void
77 94
      */
78 95
     public function chooseBaseCurrency($currency);
79 96
 
80 97
     /**
81 98
      * @param string $taxCalculationStrategy
99
+     * @return void
82 100
      */
83 101
     public function chooseTaxCalculationStrategy($taxCalculationStrategy);
84 102
 }
Please login to merge, or discard this patch.
src/Sylius/Behat/Page/Shop/Checkout/AddressPage.php 1 patch
Doc Comments   +2 added lines patch added patch discarded remove patch
@@ -429,6 +429,8 @@
 block discarded – undo
429 429
     }
430 430
 
431 431
     /**
432
+     * @param integer $timeout
433
+     * @param string $elementName
432 434
      * @return bool
433 435
      */
434 436
     private function waitForElement($timeout, $elementName)
Please login to merge, or discard this patch.
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.