@@ -74,7 +74,7 @@ discard block |
||
74 | 74 | "name": "Regular", |
75 | 75 | "description": "Regular weight items" |
76 | 76 | } |
77 | -EOT; |
|
77 | +eot; |
|
78 | 78 | |
79 | 79 | $this->client->request('POST', '/api/v1/shipping-categories/', [], [], static::$authorizedHeaderWithContentType, $data); |
80 | 80 | |
@@ -206,7 +206,7 @@ discard block |
||
206 | 206 | "name": "Light", |
207 | 207 | "description": "Light weight items" |
208 | 208 | } |
209 | -EOT; |
|
209 | +eot; |
|
210 | 210 | |
211 | 211 | $this->client->request('PUT', $this->getShippingCategoryUrl($shippingCategory), [], [], static::$authorizedHeaderWithContentType, $data); |
212 | 212 | |
@@ -249,7 +249,7 @@ discard block |
||
249 | 249 | "name": "Light", |
250 | 250 | "description": "Light weight items" |
251 | 251 | } |
252 | -EOT; |
|
252 | +eot; |
|
253 | 253 | |
254 | 254 | $this->client->request('PATCH', $this->getShippingCategoryUrl($shippingCategory), [], [], static::$authorizedHeaderWithContentType, $data); |
255 | 255 |
@@ -9,7 +9,7 @@ |
||
9 | 9 | * file that was distributed with this source code. |
10 | 10 | */ |
11 | 11 | |
12 | -declare(strict_types=1); |
|
12 | +declare(strict_types = 1); |
|
13 | 13 | |
14 | 14 | namespace Sylius\Tests\Controller; |
15 | 15 |
@@ -40,6 +40,7 @@ discard block |
||
40 | 40 | |
41 | 41 | /** |
42 | 42 | * @param string $name |
43 | + * @return void |
|
43 | 44 | */ |
44 | 45 | public function setName($name); |
45 | 46 | |
@@ -50,6 +51,7 @@ discard block |
||
50 | 51 | |
51 | 52 | /** |
52 | 53 | * @param string $description |
54 | + * @return void |
|
53 | 55 | */ |
54 | 56 | public function setDescription($description); |
55 | 57 | |
@@ -60,6 +62,7 @@ discard block |
||
60 | 62 | |
61 | 63 | /** |
62 | 64 | * @param string $metaKeywords |
65 | + * @return void |
|
63 | 66 | */ |
64 | 67 | public function setMetaKeywords($metaKeywords); |
65 | 68 | |
@@ -70,6 +73,7 @@ discard block |
||
70 | 73 | |
71 | 74 | /** |
72 | 75 | * @param string $metaDescription |
76 | + * @return void |
|
73 | 77 | */ |
74 | 78 | public function setMetaDescription($metaDescription); |
75 | 79 | |
@@ -85,11 +89,13 @@ discard block |
||
85 | 89 | |
86 | 90 | /** |
87 | 91 | * @param ProductVariantInterface $variant |
92 | + * @return void |
|
88 | 93 | */ |
89 | 94 | public function addVariant(ProductVariantInterface $variant); |
90 | 95 | |
91 | 96 | /** |
92 | 97 | * @param ProductVariantInterface $variant |
98 | + * @return void |
|
93 | 99 | */ |
94 | 100 | public function removeVariant(ProductVariantInterface $variant); |
95 | 101 | |
@@ -112,11 +118,13 @@ discard block |
||
112 | 118 | |
113 | 119 | /** |
114 | 120 | * @param ProductOptionInterface $option |
121 | + * @return void |
|
115 | 122 | */ |
116 | 123 | public function addOption(ProductOptionInterface $option); |
117 | 124 | |
118 | 125 | /** |
119 | 126 | * @param ProductOptionInterface $option |
127 | + * @return void |
|
120 | 128 | */ |
121 | 129 | public function removeOption(ProductOptionInterface $option); |
122 | 130 | |
@@ -129,6 +137,7 @@ discard block |
||
129 | 137 | |
130 | 138 | /** |
131 | 139 | * @param ProductAssociationInterface $association |
140 | + * @return void |
|
132 | 141 | */ |
133 | 142 | public function addAssociation(ProductAssociationInterface $association); |
134 | 143 | |
@@ -139,6 +148,7 @@ discard block |
||
139 | 148 | |
140 | 149 | /** |
141 | 150 | * @param ProductAssociationInterface $association |
151 | + * @return void |
|
142 | 152 | */ |
143 | 153 | public function removeAssociation(ProductAssociationInterface $association); |
144 | 154 |
@@ -9,7 +9,7 @@ |
||
9 | 9 | * file that was distributed with this source code. |
10 | 10 | */ |
11 | 11 | |
12 | -declare(strict_types=1); |
|
12 | +declare(strict_types = 1); |
|
13 | 13 | |
14 | 14 | namespace Sylius\Component\Product\Model; |
15 | 15 |
@@ -11,11 +11,8 @@ |
||
11 | 11 | |
12 | 12 | namespace Sylius\Bundle\CoreBundle\Checkout; |
13 | 13 | |
14 | -use Sylius\Bundle\ResourceBundle\Controller\RedirectHandlerInterface; |
|
15 | -use Sylius\Bundle\ResourceBundle\Controller\RequestConfiguration; |
|
16 | 14 | use Sylius\Bundle\ResourceBundle\Event\ResourceControllerEvent; |
17 | 15 | use Sylius\Component\Core\Model\OrderInterface; |
18 | -use Sylius\Component\Resource\Model\ResourceInterface; |
|
19 | 16 | use Symfony\Component\HttpFoundation\RedirectResponse; |
20 | 17 | use Symfony\Component\HttpFoundation\RequestMatcherInterface; |
21 | 18 | use Symfony\Component\HttpFoundation\RequestStack; |
@@ -9,7 +9,7 @@ |
||
9 | 9 | * file that was distributed with this source code. |
10 | 10 | */ |
11 | 11 | |
12 | -declare(strict_types=1); |
|
12 | +declare(strict_types = 1); |
|
13 | 13 | |
14 | 14 | namespace Sylius\Bundle\CoreBundle\Checkout; |
15 | 15 |
@@ -23,9 +23,6 @@ |
||
23 | 23 | final class OrderProductEligibilityValidator extends ConstraintValidator |
24 | 24 | { |
25 | 25 | /** |
26 | - * @param OrderInterface $value |
|
27 | - * |
|
28 | - * {@inheritdoc} |
|
29 | 26 | */ |
30 | 27 | public function validate($order, Constraint $constraint) |
31 | 28 | { |
@@ -9,7 +9,7 @@ |
||
9 | 9 | * file that was distributed with this source code. |
10 | 10 | */ |
11 | 11 | |
12 | -declare(strict_types=1); |
|
12 | +declare(strict_types = 1); |
|
13 | 13 | |
14 | 14 | namespace Sylius\Bundle\CoreBundle\Validator\Constraints; |
15 | 15 |
@@ -36,9 +36,6 @@ |
||
36 | 36 | } |
37 | 37 | |
38 | 38 | /** |
39 | - * @param OrderInterface $value |
|
40 | - * |
|
41 | - * {@inheritdoc} |
|
42 | 39 | */ |
43 | 40 | public function validate($order, Constraint $constraint) |
44 | 41 | { |
@@ -9,7 +9,7 @@ |
||
9 | 9 | * file that was distributed with this source code. |
10 | 10 | */ |
11 | 11 | |
12 | -declare(strict_types=1); |
|
12 | +declare(strict_types = 1); |
|
13 | 13 | |
14 | 14 | namespace Sylius\Bundle\CoreBundle\Validator\Constraints; |
15 | 15 |
@@ -35,6 +35,7 @@ discard block |
||
35 | 35 | |
36 | 36 | /** |
37 | 37 | * @param float $weight |
38 | + * @return void |
|
38 | 39 | */ |
39 | 40 | public function setWeight($weight); |
40 | 41 | |
@@ -45,6 +46,7 @@ discard block |
||
45 | 46 | |
46 | 47 | /** |
47 | 48 | * @param float $width |
49 | + * @return void |
|
48 | 50 | */ |
49 | 51 | public function setWidth($width); |
50 | 52 | |
@@ -55,6 +57,7 @@ discard block |
||
55 | 57 | |
56 | 58 | /** |
57 | 59 | * @param float $height |
60 | + * @return void |
|
58 | 61 | */ |
59 | 62 | public function setHeight($height); |
60 | 63 | |
@@ -65,16 +68,19 @@ discard block |
||
65 | 68 | |
66 | 69 | /** |
67 | 70 | * @param float $depth |
71 | + * @return void |
|
68 | 72 | */ |
69 | 73 | public function setDepth($depth); |
70 | 74 | |
71 | 75 | /** |
72 | 76 | * @param TaxCategoryInterface $category |
77 | + * @return void |
|
73 | 78 | */ |
74 | 79 | public function setTaxCategory(TaxCategoryInterface $category = null); |
75 | 80 | |
76 | 81 | /** |
77 | 82 | * @param ShippingCategoryInterface $shippingCategory |
83 | + * @return void |
|
78 | 84 | */ |
79 | 85 | public function setShippingCategory(ShippingCategoryInterface $shippingCategory); |
80 | 86 | |
@@ -106,11 +112,13 @@ discard block |
||
106 | 112 | |
107 | 113 | /** |
108 | 114 | * @param ChannelPricingInterface $channelPricing |
115 | + * @return void |
|
109 | 116 | */ |
110 | 117 | public function addChannelPricing(ChannelPricingInterface $channelPricing); |
111 | 118 | |
112 | 119 | /** |
113 | 120 | * @param ChannelPricingInterface $channelPricing |
121 | + * @return void |
|
114 | 122 | */ |
115 | 123 | public function removeChannelPricing(ChannelPricingInterface $channelPricing); |
116 | 124 | |
@@ -121,6 +129,7 @@ discard block |
||
121 | 129 | |
122 | 130 | /** |
123 | 131 | * @param bool $shippingRequired |
132 | + * @return void |
|
124 | 133 | */ |
125 | 134 | public function setShippingRequired($shippingRequired); |
126 | 135 | } |
@@ -17,8 +17,8 @@ |
||
17 | 17 | use Sylius\Component\Resource\Model\VersionedInterface; |
18 | 18 | use Sylius\Component\Shipping\Model\ShippableInterface; |
19 | 19 | use Sylius\Component\Shipping\Model\ShippingCategoryInterface; |
20 | -use Sylius\Component\Taxation\Model\TaxableInterface; |
|
21 | 20 | use Sylius\Component\Taxation\Model\TaxCategoryInterface; |
21 | +use Sylius\Component\Taxation\Model\TaxableInterface; |
|
22 | 22 | |
23 | 23 | /** |
24 | 24 | * @author Paweł Jędrzejewski <[email protected]> |
@@ -9,7 +9,7 @@ |
||
9 | 9 | * file that was distributed with this source code. |
10 | 10 | */ |
11 | 11 | |
12 | -declare(strict_types=1); |
|
12 | +declare(strict_types = 1); |
|
13 | 13 | |
14 | 14 | namespace Sylius\Component\Core\Model; |
15 | 15 |
@@ -85,7 +85,7 @@ discard block |
||
85 | 85 | } |
86 | 86 | ] |
87 | 87 | } |
88 | -EOT; |
|
88 | +eot; |
|
89 | 89 | |
90 | 90 | $this->client->request('PUT', $this->getSelectPaymentUrl($cartId), [], [], static::$authorizedHeaderWithContentType, $data); |
91 | 91 | |
@@ -175,7 +175,7 @@ discard block |
||
175 | 175 | } |
176 | 176 | ] |
177 | 177 | } |
178 | -EOT; |
|
178 | +eot; |
|
179 | 179 | |
180 | 180 | $this->client->request('PUT', $this->getSelectPaymentUrl($cartId), [], [], static::$authorizedHeaderWithContentType, $data); |
181 | 181 | |
@@ -216,7 +216,7 @@ discard block |
||
216 | 216 | } |
217 | 217 | ] |
218 | 218 | } |
219 | -EOT; |
|
219 | +eot; |
|
220 | 220 | |
221 | 221 | $this->client->request('PUT', $this->getSelectPaymentUrl($cartId), [], [], static::$authorizedHeaderWithContentType, $data); |
222 | 222 |
@@ -9,7 +9,7 @@ discard block |
||
9 | 9 | * file that was distributed with this source code. |
10 | 10 | */ |
11 | 11 | |
12 | -declare(strict_types=1); |
|
12 | +declare(strict_types = 1); |
|
13 | 13 | |
14 | 14 | namespace Sylius\Tests\Controller; |
15 | 15 | |
@@ -59,7 +59,7 @@ discard block |
||
59 | 59 | $this->addItemToCart($cartId); |
60 | 60 | $this->addressOrder($cartId); |
61 | 61 | |
62 | - $this->client->request('PATCH', $this->getSelectPaymentUrl($cartId), [], [], static::$authorizedHeaderWithContentType); |
|
62 | + $this->client->request('PATCH', $this->getSelectPaymentUrl($cartId), [], [], static::$authorizedHeaderWithContentType); |
|
63 | 63 | |
64 | 64 | $response = $this->client->getResponse(); |
65 | 65 | $this->assertResponse($response, 'checkout/payment_invalid_order_state', Response::HTTP_INTERNAL_SERVER_ERROR); |
@@ -89,7 +89,7 @@ discard block |
||
89 | 89 | } |
90 | 90 | EOT; |
91 | 91 | |
92 | - $this->client->request('PUT', $this->getSelectPaymentUrl($cartId), [], [], static::$authorizedHeaderWithContentType, $data); |
|
92 | + $this->client->request('PUT', $this->getSelectPaymentUrl($cartId), [], [], static::$authorizedHeaderWithContentType, $data); |
|
93 | 93 | |
94 | 94 | $response = $this->client->getResponse(); |
95 | 95 |
@@ -149,7 +149,7 @@ discard block |
||
149 | 149 | } |
150 | 150 | ] |
151 | 151 | } |
152 | -EOT; |
|
152 | +eot; |
|
153 | 153 | |
154 | 154 | $this->client->request('PUT', $this->getSelectShippingUrl($cartId), [], [], static::$authorizedHeaderWithContentType, $data); |
155 | 155 | |
@@ -183,7 +183,7 @@ discard block |
||
183 | 183 | } |
184 | 184 | ] |
185 | 185 | } |
186 | -EOT; |
|
186 | +eot; |
|
187 | 187 | |
188 | 188 | $this->client->request('PUT', $this->getSelectShippingUrl($cartId), [], [], static::$authorizedHeaderWithContentType, $data); |
189 | 189 | |
@@ -223,7 +223,7 @@ discard block |
||
223 | 223 | } |
224 | 224 | ] |
225 | 225 | } |
226 | -EOT; |
|
226 | +eot; |
|
227 | 227 | |
228 | 228 | $this->client->request('PUT', $this->getSelectShippingUrl($cartId), [], [], static::$authorizedHeaderWithContentType, $data); |
229 | 229 | |
@@ -259,7 +259,7 @@ discard block |
||
259 | 259 | } |
260 | 260 | ] |
261 | 261 | } |
262 | -EOT; |
|
262 | +eot; |
|
263 | 263 | |
264 | 264 | $this->client->request('PUT', $this->getSelectShippingUrl($cartId), [], [], static::$authorizedHeaderWithContentType, $data); |
265 | 265 |
@@ -9,7 +9,7 @@ |
||
9 | 9 | * file that was distributed with this source code. |
10 | 10 | */ |
11 | 11 | |
12 | -declare(strict_types=1); |
|
12 | +declare(strict_types = 1); |
|
13 | 13 | |
14 | 14 | namespace Sylius\Tests\Controller; |
15 | 15 |
@@ -12,14 +12,14 @@ |
||
12 | 12 | namespace Sylius\Bundle\CustomerBundle\DependencyInjection; |
13 | 13 | |
14 | 14 | use Sylius\Bundle\CustomerBundle\Form\Type\CustomerGroupType; |
15 | +use Sylius\Bundle\CustomerBundle\Form\Type\CustomerType; |
|
15 | 16 | use Sylius\Bundle\ResourceBundle\Controller\ResourceController; |
16 | 17 | use Sylius\Bundle\ResourceBundle\SyliusResourceBundle; |
17 | -use Sylius\Bundle\CustomerBundle\Form\Type\CustomerType; |
|
18 | -use Sylius\Component\Customer\Model\CustomerGroup; |
|
19 | -use Sylius\Component\Resource\Factory\Factory; |
|
20 | 18 | use Sylius\Component\Customer\Model\Customer; |
21 | -use Sylius\Component\Customer\Model\CustomerInterface; |
|
19 | +use Sylius\Component\Customer\Model\CustomerGroup; |
|
22 | 20 | use Sylius\Component\Customer\Model\CustomerGroupInterface; |
21 | +use Sylius\Component\Customer\Model\CustomerInterface; |
|
22 | +use Sylius\Component\Resource\Factory\Factory; |
|
23 | 23 | use Symfony\Component\Config\Definition\Builder\ArrayNodeDefinition; |
24 | 24 | use Symfony\Component\Config\Definition\Builder\TreeBuilder; |
25 | 25 | use Symfony\Component\Config\Definition\ConfigurationInterface; |
@@ -9,7 +9,7 @@ |
||
9 | 9 | * file that was distributed with this source code. |
10 | 10 | */ |
11 | 11 | |
12 | -declare(strict_types=1); |
|
12 | +declare(strict_types = 1); |
|
13 | 13 | |
14 | 14 | namespace Sylius\Bundle\CustomerBundle\DependencyInjection; |
15 | 15 |