Completed
Push — a-bulwa-travis-is-2 ( 0d480d...8a564e )
by Kamil
94:47 queued 55:12
created
src/Sylius/Component/Core/Customer/AddressAdderInterface.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/Component/Core/Customer/OrderAddressesSaverInterface.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/Component/Core/Model/CustomerInterface.php 1 patch
Doc Comments   +4 added lines patch added patch discarded remove patch
@@ -36,11 +36,13 @@  discard block
 block discarded – undo
36 36
 
37 37
     /**
38 38
      * @param string $locale
39
+     * @return void
39 40
      */
40 41
     public function setCurrentLocale($locale);
41 42
 
42 43
     /**
43 44
      * @param string $locale
45
+     * @return void
44 46
      */
45 47
     public function setFallbackLocale($locale);
46 48
 
@@ -51,11 +53,13 @@  discard block
 block discarded – undo
51 53
 
52 54
     /**
53 55
      * @param TranslationInterface $translation
56
+     * @return void
54 57
      */
55 58
     public function addTranslation(TranslationInterface $translation);
56 59
 
57 60
     /**
58 61
      * @param TranslationInterface $translation
62
+     * @return void
59 63
      */
60 64
     public function removeTranslation(TranslationInterface $translation);
61 65
 }
Please login to merge, or discard this patch.
src/Sylius/Behat/Context/Setup/PromotionContext.php 1 patch
Doc Comments   +5 added lines, -2 removed lines patch added patch discarded remove patch
@@ -267,6 +267,7 @@  discard block
 block discarded – undo
267 267
 
268 268
     /**
269 269
      * @Given /^([^"]+) gives ("[^"]+%") discount on shipping to every order$/
270
+     * @param integer $discount
270 271
      */
271 272
     public function itGivesPercentageDiscountOnShippingToEveryOrder(PromotionInterface $promotion, $discount)
272 273
     {
@@ -580,7 +581,7 @@  discard block
 block discarded – undo
580 581
     }
581 582
 
582 583
     /**
583
-     * @param array $taxonCodes
584
+     * @param string[] $taxonCodes
584 585
      *
585 586
      * @return array
586 587
      */
@@ -590,7 +591,7 @@  discard block
 block discarded – undo
590 591
     }
591 592
 
592 593
     /**
593
-     * @param array $productCodes
594
+     * @param string[] $productCodes
594 595
      *
595 596
      * @return array
596 597
      */
@@ -619,6 +620,7 @@  discard block
 block discarded – undo
619 620
      * @param PromotionInterface $promotion
620 621
      * @param int $discount
621 622
      * @param array $configuration
623
+     * @param PromotionRuleInterface $rule
622 624
      */
623 625
     private function createUnitFixedPromotion(PromotionInterface $promotion, $discount, array $configuration = [], $rule = null)
624 626
     {
@@ -629,6 +631,7 @@  discard block
 block discarded – undo
629 631
      * @param PromotionInterface $promotion
630 632
      * @param int $discount
631 633
      * @param array $configuration
634
+     * @param PromotionRuleInterface $rule
632 635
      */
633 636
     private function createUnitPercentagePromotion(PromotionInterface $promotion, $discount, array $configuration = [], $rule = null)
634 637
     {
Please login to merge, or discard this patch.
src/Sylius/Behat/Page/Shop/Checkout/AddressPageInterface.php 1 patch
Doc Comments   +20 added lines patch added patch discarded remove patch
@@ -21,6 +21,7 @@  discard block
 block discarded – undo
21 21
 {
22 22
     /**
23 23
      * @throws \RuntimeException
24
+     * @return void
24 25
      */
25 26
     public function chooseDifferentBillingAddress();
26 27
 
@@ -39,21 +40,25 @@  discard block
 block discarded – undo
39 40
 
40 41
     /**
41 42
      * @param AddressInterface $billingAddress
43
+     * @return void
42 44
      */
43 45
     public function specifyBillingAddress(AddressInterface $billingAddress);
44 46
 
45 47
     /**
46 48
      * @param string $province
49
+     * @return void
47 50
      */
48 51
     public function selectBillingAddressProvince($province);
49 52
 
50 53
     /**
51 54
      * @param AddressInterface $shippingAddress
55
+     * @return void
52 56
      */
53 57
     public function specifyShippingAddress(AddressInterface $shippingAddress);
54 58
 
55 59
     /**
56 60
      * @param string $province
61
+     * @return void
57 62
      */
58 63
     public function selectShippingAddressProvince($province);
59 64
 
@@ -62,15 +67,20 @@  discard block
 block discarded – undo
62 67
      */
63 68
     public function canSignIn();
64 69
 
70
+    /**
71
+     * @return void
72
+     */
65 73
     public function signIn();
66 74
 
67 75
     /**
68 76
      * @param string $email
77
+     * @return void
69 78
      */
70 79
     public function specifyEmail($email);
71 80
 
72 81
     /**
73 82
      * @param string $password
83
+     * @return void
74 84
      */
75 85
     public function specifyPassword($password);
76 86
 
@@ -86,17 +96,25 @@  discard block
 block discarded – undo
86 96
      */
87 97
     public function getShippingAddressCountry();
88 98
 
99
+    /**
100
+     * @return void
101
+     */
89 102
     public function nextStep();
90 103
 
104
+    /**
105
+     * @return void
106
+     */
91 107
     public function backToStore();
92 108
 
93 109
     /**
94 110
      * @param string $provinceName
111
+     * @return void
95 112
      */
96 113
     public function specifyBillingAddressProvince($provinceName);
97 114
 
98 115
     /**
99 116
      * @param string $provinceName
117
+     * @return void
100 118
      */
101 119
     public function specifyShippingAddressProvince($provinceName);
102 120
 
@@ -112,11 +130,13 @@  discard block
 block discarded – undo
112 130
 
113 131
     /**
114 132
      * @param AddressInterface $address
133
+     * @return void
115 134
      */
116 135
     public function selectShippingAddressFromAddressBook(AddressInterface $address);
117 136
 
118 137
     /**
119 138
      * @param AddressInterface $address
139
+     * @return void
120 140
      */
121 141
     public function selectBillingAddressFromAddressBook(AddressInterface $address);
122 142
 
Please login to merge, or discard this patch.
src/Sylius/Behat/Page/Shop/Taxon/ShowPageInterface.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.