Completed
Push — 1.2-symfony4-packages ( 39ce77...14945a )
by Kamil
18:11
created
src/Sylius/Behat/Page/Admin/PromotionCoupon/GeneratePageInterface.php 1 patch
Doc Comments   +7 added lines patch added patch discarded remove patch
@@ -39,25 +39,32 @@
 block discarded – undo
39 39
      */
40 40
     public function checkGenerationValidation($message);
41 41
 
42
+    /**
43
+     * @return void
44
+     */
42 45
     public function generate();
43 46
 
44 47
     /**
45 48
      * @param int $amount
49
+     * @return void
46 50
      */
47 51
     public function specifyAmount($amount);
48 52
 
49 53
     /**
50 54
      * @param int $codeLength
55
+     * @return void
51 56
      */
52 57
     public function specifyCodeLength($codeLength);
53 58
 
54 59
     /**
55 60
      * @param \DateTimeInterface $date
61
+     * @return void
56 62
      */
57 63
     public function setExpiresAt(\DateTimeInterface $date);
58 64
 
59 65
     /**
60 66
      * @param int $limit
67
+     * @return void
61 68
      */
62 69
     public function setUsageLimit($limit);
63 70
 }
Please login to merge, or discard this patch.
src/Sylius/Behat/Page/Admin/PromotionCoupon/UpdatePageInterface.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -25,16 +25,19 @@
 block discarded – undo
25 25
 
26 26
     /**
27 27
      * @param int $limit
28
+     * @return void
28 29
      */
29 30
     public function setCustomerUsageLimit($limit);
30 31
 
31 32
     /**
32 33
      * @param \DateTimeInterface $date
34
+     * @return void
33 35
      */
34 36
     public function setExpiresAt(\DateTimeInterface $date);
35 37
 
36 38
     /**
37 39
      * @param int $limit
40
+     * @return void
38 41
      */
39 42
     public function setUsageLimit($limit);
40 43
 }
Please login to merge, or discard this patch.
src/Sylius/Behat/Context/Setup/PromotionContext.php 1 patch
Doc Comments   +2 added lines patch added patch discarded remove patch
@@ -354,6 +354,7 @@  discard block
 block discarded – undo
354 354
 
355 355
     /**
356 356
      * @Given /^([^"]+) gives ("[^"]+%") discount on shipping to every order$/
357
+     * @param integer $discount
357 358
      */
358 359
     public function itGivesPercentageDiscountOnShippingToEveryOrder(PromotionInterface $promotion, $discount)
359 360
     {
@@ -677,6 +678,7 @@  discard block
 block discarded – undo
677 678
 
678 679
     /**
679 680
      * @Given /^([^"]+) gives ("[^"]+%") discount on shipping to every order over ("(?:€|£|\$)[^"]+")$/
681
+     * @param integer $discount
680 682
      */
681 683
     public function itGivesDiscountOnShippingToEveryOrderOver(
682 684
         PromotionInterface $promotion,
Please login to merge, or discard this patch.
src/Sylius/Component/Addressing/Model/AddressInterface.php 1 patch
Doc Comments   +10 added lines patch added patch discarded remove patch
@@ -28,6 +28,7 @@  discard block
 block discarded – undo
28 28
 
29 29
     /**
30 30
      * @param string|null $firstName
31
+     * @return void
31 32
      */
32 33
     public function setFirstName(?string $firstName): void;
33 34
 
@@ -38,6 +39,7 @@  discard block
 block discarded – undo
38 39
 
39 40
     /**
40 41
      * @param string|null $lastName
42
+     * @return void
41 43
      */
42 44
     public function setLastName(?string $lastName): void;
43 45
 
@@ -53,6 +55,7 @@  discard block
 block discarded – undo
53 55
 
54 56
     /**
55 57
      * @param string|null $phoneNumber
58
+     * @return void
56 59
      */
57 60
     public function setPhoneNumber(?string $phoneNumber): void;
58 61
 
@@ -63,6 +66,7 @@  discard block
 block discarded – undo
63 66
 
64 67
     /**
65 68
      * @param string|null $company
69
+     * @return void
66 70
      */
67 71
     public function setCompany(?string $company): void;
68 72
 
@@ -73,6 +77,7 @@  discard block
 block discarded – undo
73 77
 
74 78
     /**
75 79
      * @param string|null $countryCode
80
+     * @return void
76 81
      */
77 82
     public function setCountryCode(?string $countryCode): void;
78 83
 
@@ -83,6 +88,7 @@  discard block
 block discarded – undo
83 88
 
84 89
     /**
85 90
      * @param string|null $provinceCode
91
+     * @return void
86 92
      */
87 93
     public function setProvinceCode(?string $provinceCode): void;
88 94
 
@@ -93,6 +99,7 @@  discard block
 block discarded – undo
93 99
 
94 100
     /**
95 101
      * @param string|null $provinceName
102
+     * @return void
96 103
      */
97 104
     public function setProvinceName(?string $provinceName): void;
98 105
 
@@ -103,6 +110,7 @@  discard block
 block discarded – undo
103 110
 
104 111
     /**
105 112
      * @param string|null $street
113
+     * @return void
106 114
      */
107 115
     public function setStreet(?string $street): void;
108 116
 
@@ -113,6 +121,7 @@  discard block
 block discarded – undo
113 121
 
114 122
     /**
115 123
      * @param string|null $city
124
+     * @return void
116 125
      */
117 126
     public function setCity(?string $city): void;
118 127
 
@@ -123,6 +132,7 @@  discard block
 block discarded – undo
123 132
 
124 133
     /**
125 134
      * @param string|null $postcode
135
+     * @return void
126 136
      */
127 137
     public function setPostcode(?string $postcode): void;
128 138
 }
Please login to merge, or discard this patch.
src/Sylius/Component/Addressing/Model/CountryInterface.php 1 patch
Doc Comments   +2 added lines patch added patch discarded remove patch
@@ -44,11 +44,13 @@
 block discarded – undo
44 44
 
45 45
     /**
46 46
      * @param ProvinceInterface $province
47
+     * @return void
47 48
      */
48 49
     public function addProvince(ProvinceInterface $province): void;
49 50
 
50 51
     /**
51 52
      * @param ProvinceInterface $province
53
+     * @return void
52 54
      */
53 55
     public function removeProvince(ProvinceInterface $province): void;
54 56
 
Please login to merge, or discard this patch.
src/Sylius/Component/Addressing/Model/ZoneInterface.php 1 patch
Doc Comments   +5 added lines patch added patch discarded remove patch
@@ -39,6 +39,7 @@  discard block
 block discarded – undo
39 39
 
40 40
     /**
41 41
      * @param string|null $name
42
+     * @return void
42 43
      */
43 44
     public function setName(?string $name): void;
44 45
 
@@ -49,6 +50,7 @@  discard block
 block discarded – undo
49 50
 
50 51
     /**
51 52
      * @param string|null $type
53
+     * @return void
52 54
      */
53 55
     public function setType(?string $type): void;
54 56
 
@@ -59,6 +61,7 @@  discard block
 block discarded – undo
59 61
 
60 62
     /**
61 63
      * @param string|null $scope
64
+     * @return void
62 65
      */
63 66
     public function setScope(?string $scope): void;
64 67
 
@@ -74,11 +77,13 @@  discard block
 block discarded – undo
74 77
 
75 78
     /**
76 79
      * @param ZoneMemberInterface $member
80
+     * @return void
77 81
      */
78 82
     public function addMember(ZoneMemberInterface $member): void;
79 83
 
80 84
     /**
81 85
      * @param ZoneMemberInterface $member
86
+     * @return void
82 87
      */
83 88
     public function removeMember(ZoneMemberInterface $member): void;
84 89
 
Please login to merge, or discard this patch.
src/Sylius/Component/Addressing/Model/ZoneMemberInterface.php 1 patch
Doc Comments   +1 added lines patch added patch discarded remove patch
@@ -28,6 +28,7 @@
 block discarded – undo
28 28
 
29 29
     /**
30 30
      * @param ZoneInterface|null $belongsTo
31
+     * @return void
31 32
      */
32 33
     public function setBelongsTo(?ZoneInterface $belongsTo): void;
33 34
 }
Please login to merge, or discard this patch.
src/Sylius/Component/Resource/Model/CodeAwareInterface.php 1 patch
Doc Comments   +1 added lines patch added patch discarded remove patch
@@ -25,6 +25,7 @@
 block discarded – undo
25 25
 
26 26
     /**
27 27
      * @param string|null $code
28
+     * @return void
28 29
      */
29 30
     public function setCode(?string $code): void;
30 31
 }
Please login to merge, or discard this patch.
src/Sylius/Component/Channel/Model/ChannelAwareInterface.php 1 patch
Doc Comments   +1 added lines patch added patch discarded remove patch
@@ -25,6 +25,7 @@
 block discarded – undo
25 25
 
26 26
     /**
27 27
      * @param ChannelInterface|null $channel
28
+     * @return void
28 29
      */
29 30
     public function setChannel(?ChannelInterface $channel): void;
30 31
 }
Please login to merge, or discard this patch.