Completed
Push — 1.1-csrf-token-user ( e22bcb...d4c2fb )
by Kamil
17:31
created
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.
src/Sylius/Component/Channel/Model/ChannelInterface.php 1 patch
Doc Comments   +4 added lines patch added patch discarded remove patch
@@ -34,6 +34,7 @@  discard block
 block discarded – undo
34 34
 
35 35
     /**
36 36
      * @param string|null $name
37
+     * @return void
37 38
      */
38 39
     public function setName(?string $name): void;
39 40
 
@@ -44,6 +45,7 @@  discard block
 block discarded – undo
44 45
 
45 46
     /**
46 47
      * @param string|null $description
48
+     * @return void
47 49
      */
48 50
     public function setDescription(?string $description): void;
49 51
 
@@ -54,6 +56,7 @@  discard block
 block discarded – undo
54 56
 
55 57
     /**
56 58
      * @param string|null $hostname
59
+     * @return void
57 60
      */
58 61
     public function setHostname(?string $hostname): void;
59 62
 
@@ -64,6 +67,7 @@  discard block
 block discarded – undo
64 67
 
65 68
     /**
66 69
      * @param string|null $color
70
+     * @return void
67 71
      */
68 72
     public function setColor(?string $color): void;
69 73
 }
Please login to merge, or discard this patch.