Completed
Push — pull-request/8500 ( e49efc...54b484 )
by Kamil
36:05 queued 17:36
created
src/Sylius/Behat/Context/Ui/Admin/BrowsingProductVariantsContext.php 1 patch
Doc Comments   +1 added lines patch added patch discarded remove patch
@@ -57,6 +57,7 @@
 block discarded – undo
57 57
 
58 58
     /**
59 59
      * @Then the :productVariantCode variant of the :product product should appear in the store
60
+     * @param string|null $productVariantCode
60 61
      */
61 62
     public function theProductVariantShouldAppearInTheShop($productVariantCode, ProductInterface $product)
62 63
     {
Please login to merge, or discard this patch.
src/Sylius/Component/Addressing/Matcher/ZoneMatcher.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -148,7 +148,7 @@
 block discarded – undo
148 148
     /**
149 149
      * @param string $code
150 150
      *
151
-     * @return ZoneInterface|null
151
+     * @return AddressInterface
152 152
      */
153 153
     private function getZoneByCode(string $code): ?ZoneInterface
154 154
     {
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/ProvinceInterface.php 1 patch
Doc Comments   +3 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 $name
31
+     * @return void
31 32
      */
32 33
     public function setName(?string $name): void;
33 34
 
@@ -38,6 +39,7 @@  discard block
 block discarded – undo
38 39
 
39 40
     /**
40 41
      * @param string|null $abbreviation
42
+     * @return void
41 43
      */
42 44
     public function setAbbreviation(?string $abbreviation): void;
43 45
 
@@ -48,6 +50,7 @@  discard block
 block discarded – undo
48 50
 
49 51
     /**
50 52
      * @param CountryInterface $country
53
+     * @return void
51 54
      */
52 55
     public function setCountry(?CountryInterface $country): void;
53 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.