Completed
Push — master ( a7ce67...91da13 )
by Kamil
21:30
created
src/Sylius/Component/Payment/Model/PaymentMethodInterface.php 1 patch
Doc Comments   +5 added lines patch added patch discarded remove patch
@@ -33,6 +33,7 @@  discard block
 block discarded – undo
33 33
 
34 34
     /**
35 35
      * @param string $name
36
+     * @return void
36 37
      */
37 38
     public function setName($name);
38 39
 
@@ -43,6 +44,7 @@  discard block
 block discarded – undo
43 44
 
44 45
     /**
45 46
      * @param string $description
47
+     * @return void
46 48
      */
47 49
     public function setDescription($description);
48 50
 
@@ -53,6 +55,7 @@  discard block
 block discarded – undo
53 55
 
54 56
     /**
55 57
      * @param string $instructions
58
+     * @return void
56 59
      */
57 60
     public function setInstructions($instructions);
58 61
 
@@ -63,6 +66,7 @@  discard block
 block discarded – undo
63 66
 
64 67
     /**
65 68
      * @param string $environment
69
+     * @return void
66 70
      */
67 71
     public function setEnvironment($environment);
68 72
 
@@ -73,6 +77,7 @@  discard block
 block discarded – undo
73 77
 
74 78
     /**
75 79
      * @param int $position
80
+     * @return void
76 81
      */
77 82
     public function setPosition($position);
78 83
 }
Please login to merge, or discard this patch.
src/Sylius/Component/Core/Model/ChannelInterface.php 1 patch
Doc Comments   +8 added lines patch added patch discarded remove patch
@@ -33,6 +33,7 @@  discard block
 block discarded – undo
33 33
 
34 34
     /**
35 35
      * @param CurrencyInterface $currency
36
+     * @return void
36 37
      */
37 38
     public function setBaseCurrency(CurrencyInterface $currency);
38 39
 
@@ -43,6 +44,7 @@  discard block
 block discarded – undo
43 44
 
44 45
     /**
45 46
      * @param LocaleInterface $locale
47
+     * @return void
46 48
      */
47 49
     public function setDefaultLocale(LocaleInterface $locale);
48 50
 
@@ -53,6 +55,7 @@  discard block
 block discarded – undo
53 55
 
54 56
     /**
55 57
      * @param ZoneInterface $defaultTaxZone
58
+     * @return void
56 59
      */
57 60
     public function setDefaultTaxZone(ZoneInterface $defaultTaxZone);
58 61
 
@@ -63,6 +66,7 @@  discard block
 block discarded – undo
63 66
 
64 67
     /**
65 68
      * @param string $taxCalculationStrategy
69
+     * @return void
66 70
      */
67 71
     public function setTaxCalculationStrategy($taxCalculationStrategy);
68 72
 
@@ -73,6 +77,7 @@  discard block
 block discarded – undo
73 77
 
74 78
     /**
75 79
      * @param string $themeName
80
+     * @return void
76 81
      */
77 82
     public function setThemeName($themeName);
78 83
 
@@ -83,6 +88,7 @@  discard block
 block discarded – undo
83 88
 
84 89
     /**
85 90
      * @param string $contactEmail
91
+     * @return void
86 92
      */
87 93
     public function setContactEmail($contactEmail);
88 94
 
@@ -93,6 +99,7 @@  discard block
 block discarded – undo
93 99
 
94 100
     /**
95 101
      * @param bool $skippingShippingStepAllowed
102
+     * @return void
96 103
      */
97 104
     public function setSkippingShippingStepAllowed($skippingShippingStepAllowed);
98 105
 
@@ -103,6 +110,7 @@  discard block
 block discarded – undo
103 110
 
104 111
     /**
105 112
      * @param bool $accountVerificationRequired
113
+     * @return void
106 114
      */
107 115
     public function setAccountVerificationRequired($accountVerificationRequired);
108 116
 }
Please login to merge, or discard this patch.
src/Sylius/Bundle/CoreBundle/Doctrine/ORM/AssociationHydrator.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -50,7 +50,7 @@
 block discarded – undo
50 50
 
51 51
     /**
52 52
      * @param mixed $subjects
53
-     * @param array|string[] $associationsPaths
53
+     * @param string[] $associationsPaths
54 54
      */
55 55
     public function hydrateAssociations($subjects, array $associationsPaths)
56 56
     {
Please login to merge, or discard this patch.
src/Sylius/Bundle/ResourceBundle/Controller/FlashHelperInterface.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -23,18 +23,21 @@
 block discarded – undo
23 23
      * @param RequestConfiguration $requestConfiguration
24 24
      * @param string $actionName
25 25
      * @param ResourceInterface|null $resource
26
+     * @return void
26 27
      */
27 28
     public function addSuccessFlash(RequestConfiguration $requestConfiguration, $actionName, ResourceInterface $resource = null);
28 29
 
29 30
     /**
30 31
      * @param RequestConfiguration $requestConfiguration
31 32
      * @param string $actionName
33
+     * @return void
32 34
      */
33 35
     public function addErrorFlash(RequestConfiguration $requestConfiguration, $actionName);
34 36
 
35 37
     /**
36 38
      * @param RequestConfiguration $requestConfiguration
37 39
      * @param ResourceControllerEvent $event
40
+     * @return void
38 41
      */
39 42
     public function addFlashFromEvent(RequestConfiguration $requestConfiguration, ResourceControllerEvent $event);
40 43
 }
Please login to merge, or discard this patch.
Sylius/Bundle/ResourceBundle/Controller/ResourceUpdateHandlerInterface.php 1 patch
Doc Comments   +1 added lines patch added patch discarded remove patch
@@ -23,6 +23,7 @@
 block discarded – undo
23 23
      * @param ResourceInterface $resource
24 24
      * @param RequestConfiguration $requestConfiguration
25 25
      * @param ObjectManager $manager
26
+     * @return void
26 27
      */
27 28
     public function handle(
28 29
         ResourceInterface $resource,
Please login to merge, or discard this patch.
src/Sylius/Component/Resource/Model/VersionedInterface.php 1 patch
Doc Comments   +1 added lines patch added patch discarded remove patch
@@ -23,6 +23,7 @@
 block discarded – undo
23 23
 
24 24
     /**
25 25
      * @param int $version
26
+     * @return void
26 27
      */
27 28
     public function setVersion($version);
28 29
 }
Please login to merge, or discard this patch.
src/Sylius/Behat/Page/Admin/Product/UpdateSimpleProductPageInterface.php 1 patch
Doc Comments   +27 added lines patch added patch discarded remove patch
@@ -29,6 +29,7 @@  discard block
 block discarded – undo
29 29
     public function isCodeDisabled();
30 30
 
31 31
     /**
32
+     * @param string $locale
32 33
      * @return bool
33 34
      */
34 35
     public function isSlugReadOnlyIn($locale);
@@ -36,26 +37,33 @@  discard block
 block discarded – undo
36 37
     /**
37 38
      * @param string $channelName
38 39
      * @param int $price
40
+     * @return void
39 41
      */
40 42
     public function specifyPrice($channelName, $price);
41 43
 
42 44
     /**
43 45
      * @param string $channelName
44 46
      * @param int $originalPrice
47
+     * @return void
45 48
      */
46 49
     public function specifyOriginalPrice($channelName, $originalPrice);
47 50
 
48 51
     /**
49 52
      * @param string $name
50 53
      * @param string $localeCode
54
+     * @return void
51 55
      */
52 56
     public function nameItIn($name, $localeCode);
53 57
 
58
+    /**
59
+     * @return void
60
+     */
54 61
     public function addSelectedAttributes();
55 62
 
56 63
     /**
57 64
      * @param string $attributeName
58 65
      * @param string $localeCode
66
+     * @return void
59 67
      */
60 68
     public function removeAttribute($attributeName, $localeCode);
61 69
 
@@ -88,11 +96,18 @@  discard block
 block discarded – undo
88 96
 
89 97
     /**
90 98
      * @param TaxonInterface $taxon
99
+     * @return void
91 100
      */
92 101
     public function selectMainTaxon(TaxonInterface $taxon);
93 102
 
103
+    /**
104
+     * @return void
105
+     */
94 106
     public function disableTracking();
95 107
 
108
+    /**
109
+     * @return void
110
+     */
96 111
     public function enableTracking();
97 112
 
98 113
     /**
@@ -102,6 +117,7 @@  discard block
 block discarded – undo
102 117
 
103 118
     /**
104 119
      * @param string $locale
120
+     * @return void
105 121
      */
106 122
     public function enableSlugModification($locale);
107 123
 
@@ -115,24 +131,31 @@  discard block
 block discarded – undo
115 131
     /**
116 132
      * @param string $path
117 133
      * @param string $type
134
+     * @return void
118 135
      */
119 136
     public function attachImage($path, $type = null);
120 137
 
121 138
     /**
122 139
      * @param string $type
123 140
      * @param string $path
141
+     * @return void
124 142
      */
125 143
     public function changeImageWithType($type, $path);
126 144
 
127 145
     /**
128 146
      * @param string $type
147
+     * @return void
129 148
      */
130 149
     public function removeImageWithType($type);
131 150
 
151
+    /**
152
+     * @return void
153
+     */
132 154
     public function removeFirstImage();
133 155
 
134 156
     /**
135 157
      * @param string $type
158
+     * @return void
136 159
      */
137 160
     public function modifyFirstImageType($type);
138 161
 
@@ -144,6 +167,7 @@  discard block
 block discarded – undo
144 167
     /**
145 168
      * @param ProductAssociationTypeInterface $productAssociationType
146 169
      * @param string[] $productsNames
170
+     * @return void
147 171
      */
148 172
     public function associateProducts(ProductAssociationTypeInterface $productAssociationType, array $productsNames);
149 173
 
@@ -158,6 +182,7 @@  discard block
 block discarded – undo
158 182
     /**
159 183
      * @param string $productName
160 184
      * @param ProductAssociationTypeInterface $productAssociationType
185
+     * @return void
161 186
      */
162 187
     public function removeAssociatedProduct($productName, ProductAssociationTypeInterface $productAssociationType);
163 188
 
@@ -171,6 +196,7 @@  discard block
 block discarded – undo
171 196
 
172 197
     /**
173 198
      * @param string $locale
199
+     * @return void
174 200
      */
175 201
     public function activateLanguageTab($locale);
176 202
 
@@ -184,6 +210,7 @@  discard block
 block discarded – undo
184 210
     /**
185 211
      * @param string $slug
186 212
      * @param string $locale
213
+     * @return void
187 214
      */
188 215
     public function specifySlugIn($slug, $locale);
189 216
 
Please login to merge, or discard this patch.
src/Sylius/Component/Core/Model/ChannelPricingInterface.php 1 patch
Doc Comments   +4 added lines patch added patch discarded remove patch
@@ -27,6 +27,7 @@  discard block
 block discarded – undo
27 27
 
28 28
     /**
29 29
      * @param ProductVariantInterface|null $productVariant
30
+     * @return void
30 31
      */
31 32
     public function setProductVariant(ProductVariantInterface $productVariant = null);
32 33
 
@@ -37,6 +38,7 @@  discard block
 block discarded – undo
37 38
 
38 39
     /**
39 40
      * @param int $price
41
+     * @return void
40 42
      */
41 43
     public function setPrice($price);
42 44
 
@@ -47,6 +49,7 @@  discard block
 block discarded – undo
47 49
 
48 50
     /**
49 51
      * @param string $channelCode
52
+     * @return void
50 53
      */
51 54
     public function setChannelCode($channelCode);
52 55
 
@@ -57,6 +60,7 @@  discard block
 block discarded – undo
57 60
 
58 61
     /**
59 62
      * @param int $originalPrice
63
+     * @return void
60 64
      */
61 65
     public function setOriginalPrice($originalPrice);
62 66
 
Please login to merge, or discard this patch.
src/Sylius/Component/Core/Model/ProductImageInterface.php 1 patch
Doc Comments   +2 added lines patch added patch discarded remove patch
@@ -30,11 +30,13 @@
 block discarded – undo
30 30
 
31 31
     /**
32 32
      * @param ProductVariantInterface $productVariant
33
+     * @return void
33 34
      */
34 35
     public function addProductVariant(ProductVariantInterface $productVariant);
35 36
 
36 37
     /**
37 38
      * @param ProductVariantInterface $productVariant
39
+     * @return void
38 40
      */
39 41
     public function removeProductVariant(ProductVariantInterface $productVariant);
40 42
 
Please login to merge, or discard this patch.