@@ -6,11 +6,20 @@ |
||
6 | 6 | |
7 | 7 | interface ResolveNextRouteInterface |
8 | 8 | { |
9 | + /** |
|
10 | + * @return string |
|
11 | + */ |
|
9 | 12 | public function getRouteName(): ?string; |
10 | 13 | |
14 | + /** |
|
15 | + * @return void |
|
16 | + */ |
|
11 | 17 | public function setRouteName(string $routeName): void; |
12 | 18 | |
13 | 19 | public function getRouteParameters(): array; |
14 | 20 | |
21 | + /** |
|
22 | + * @return void |
|
23 | + */ |
|
15 | 24 | public function setRouteParameters(array $parameters): void; |
16 | 25 | } |
@@ -40,7 +40,7 @@ discard block |
||
40 | 40 | 'translation' => [ |
41 | 41 | 'classes' => [ |
42 | 42 | 'model' => BookTranslation::class, |
43 | - ], |
|
43 | + ], |
|
44 | 44 | ], |
45 | 45 | ], |
46 | 46 | ], |
@@ -77,10 +77,10 @@ discard block |
||
77 | 77 | $this->setParameter('kernel.bundles', []); |
78 | 78 | |
79 | 79 | $this->load([ |
80 | - 'translation' => [ |
|
81 | - 'locale_provider' => 'test.custom_locale_provider', |
|
82 | - ], |
|
83 | - ]); |
|
80 | + 'translation' => [ |
|
81 | + 'locale_provider' => 'test.custom_locale_provider', |
|
82 | + ], |
|
83 | + ]); |
|
84 | 84 | |
85 | 85 | $this->assertContainerBuilderHasAlias('sylius.translation_locale_provider', 'test.custom_locale_provider'); |
86 | 86 | } |
@@ -46,8 +46,8 @@ |
||
46 | 46 | StateMachineInterface $secondOrderStateMachine |
47 | 47 | ): void { |
48 | 48 | $orderRepository->findOrdersUnpaidSince(Argument::type(\DateTimeInterface::class))->willReturn([ |
49 | - $firstOrder, |
|
50 | - $secondOrder, |
|
49 | + $firstOrder, |
|
50 | + $secondOrder, |
|
51 | 51 | ]); |
52 | 52 | |
53 | 53 | $stateMachineFactory->get($firstOrder, 'sylius_order')->willReturn($firstOrderStateMachine); |
@@ -75,7 +75,7 @@ discard block |
||
75 | 75 | "enabled": "true" |
76 | 76 | } |
77 | 77 | } |
78 | -EOT; |
|
78 | +eot; |
|
79 | 79 | |
80 | 80 | $this->client->request('POST', '/api/v1/customers/', [], [], static::$authorizedHeaderWithContentType, $data); |
81 | 81 | |
@@ -98,7 +98,7 @@ discard block |
||
98 | 98 | "email": "[email protected]", |
99 | 99 | "gender": "m" |
100 | 100 | } |
101 | -EOT; |
|
101 | +eot; |
|
102 | 102 | |
103 | 103 | $this->client->request('POST', '/api/v1/customers/', [], [], static::$authorizedHeaderWithContentType, $data); |
104 | 104 | |
@@ -124,7 +124,7 @@ discard block |
||
124 | 124 | "plainPassword" : "testPassword" |
125 | 125 | } |
126 | 126 | } |
127 | -EOT; |
|
127 | +eot; |
|
128 | 128 | |
129 | 129 | $this->client->request('POST', '/api/v1/customers/', [], [], static::$authorizedHeaderWithContentType, $data); |
130 | 130 | |
@@ -277,7 +277,7 @@ discard block |
||
277 | 277 | "email": "[email protected]", |
278 | 278 | "gender": "m" |
279 | 279 | } |
280 | -EOT; |
|
280 | +eot; |
|
281 | 281 | |
282 | 282 | $this->client->request('PUT', '/api/v1/customers/' . $customers['customer_Oliver']->getId(), [], [], static::$authorizedHeaderWithContentType, $data); |
283 | 283 | |
@@ -317,7 +317,7 @@ discard block |
||
317 | 317 | "firstName": "John", |
318 | 318 | "lastName": "Doe" |
319 | 319 | } |
320 | -EOT; |
|
320 | +eot; |
|
321 | 321 | |
322 | 322 | $this->client->request('PATCH', '/api/v1/customers/' . $customers['customer_Oliver']->getId(), [], [], static::$authorizedHeaderWithContentType, $data); |
323 | 323 |
@@ -84,7 +84,7 @@ discard block |
||
84 | 84 | } |
85 | 85 | ] |
86 | 86 | } |
87 | -EOT; |
|
87 | +eot; |
|
88 | 88 | |
89 | 89 | $this->client->request('POST', '/api/v1/zones/country', [], [], static::$authorizedHeaderWithContentType, $data); |
90 | 90 | |
@@ -214,7 +214,7 @@ discard block |
||
214 | 214 | } |
215 | 215 | ] |
216 | 216 | } |
217 | -EOT; |
|
217 | +eot; |
|
218 | 218 | |
219 | 219 | $this->client->request('PUT', '/api/v1/zones/' . $zones['zone_eu']->getCode(), [], [], static::$authorizedHeaderWithContentType, $data); |
220 | 220 | |
@@ -265,7 +265,7 @@ discard block |
||
265 | 265 | { |
266 | 266 | "name": "European Union +" |
267 | 267 | } |
268 | -EOT; |
|
268 | +eot; |
|
269 | 269 | |
270 | 270 | $this->client->request('PATCH', '/api/v1/zones/' . $zones['zone_eu']->getCode(), [], [], static::$authorizedHeaderWithContentType, $data); |
271 | 271 |
@@ -13,8 +13,8 @@ |
||
13 | 13 | |
14 | 14 | namespace Sylius\Bundle\GridBundle\Doctrine\ORM; |
15 | 15 | |
16 | -use Doctrine\ORM\Query\Expr\Comparison; |
|
17 | 16 | use Doctrine\ORM\QueryBuilder; |
17 | +use Doctrine\ORM\Query\Expr\Comparison; |
|
18 | 18 | use Sylius\Component\Grid\Data\ExpressionBuilderInterface; |
19 | 19 | |
20 | 20 | final class ExpressionBuilder implements ExpressionBuilderInterface |
@@ -13,8 +13,8 @@ |
||
13 | 13 | |
14 | 14 | namespace Sylius\Bundle\ReviewBundle\Updater; |
15 | 15 | |
16 | -use Sylius\Component\Review\Model\ReviewableInterface; |
|
17 | 16 | use Sylius\Component\Review\Model\ReviewInterface; |
17 | +use Sylius\Component\Review\Model\ReviewableInterface; |
|
18 | 18 | |
19 | 19 | interface ReviewableRatingUpdaterInterface |
20 | 20 | { |
@@ -18,7 +18,13 @@ |
||
18 | 18 | |
19 | 19 | interface ReviewableRatingUpdaterInterface |
20 | 20 | { |
21 | + /** |
|
22 | + * @return void |
|
23 | + */ |
|
21 | 24 | public function update(ReviewableInterface $reviewSubject): void; |
22 | 25 | |
26 | + /** |
|
27 | + * @return void |
|
28 | + */ |
|
23 | 29 | public function updateFromReview(ReviewInterface $review): void; |
24 | 30 | } |
@@ -19,8 +19,8 @@ |
||
19 | 19 | use Sylius\Component\Resource\Model\VersionedInterface; |
20 | 20 | use Sylius\Component\Shipping\Model\ShippableInterface; |
21 | 21 | use Sylius\Component\Shipping\Model\ShippingCategoryInterface; |
22 | -use Sylius\Component\Taxation\Model\TaxableInterface; |
|
23 | 22 | use Sylius\Component\Taxation\Model\TaxCategoryInterface; |
23 | +use Sylius\Component\Taxation\Model\TaxableInterface; |
|
24 | 24 | |
25 | 25 | interface ProductVariantInterface extends |
26 | 26 | BaseVariantInterface, |
@@ -30,24 +30,58 @@ discard block |
||
30 | 30 | VersionedInterface, |
31 | 31 | ProductImagesAwareInterface |
32 | 32 | { |
33 | + /** |
|
34 | + * @return double |
|
35 | + */ |
|
33 | 36 | public function getWeight(): ?float; |
34 | 37 | |
38 | + /** |
|
39 | + * @return void |
|
40 | + */ |
|
35 | 41 | public function setWeight(?float $weight): void; |
36 | 42 | |
43 | + /** |
|
44 | + * @return double |
|
45 | + */ |
|
37 | 46 | public function getWidth(): ?float; |
38 | 47 | |
48 | + /** |
|
49 | + * @return void |
|
50 | + */ |
|
39 | 51 | public function setWidth(?float $width): void; |
40 | 52 | |
53 | + /** |
|
54 | + * @return double |
|
55 | + */ |
|
41 | 56 | public function getHeight(): ?float; |
42 | 57 | |
58 | + /** |
|
59 | + * @return void |
|
60 | + */ |
|
43 | 61 | public function setHeight(?float $height): void; |
44 | 62 | |
63 | + /** |
|
64 | + * @return double |
|
65 | + */ |
|
45 | 66 | public function getDepth(): ?float; |
46 | 67 | |
68 | + /** |
|
69 | + * @return void |
|
70 | + */ |
|
47 | 71 | public function setDepth(?float $depth): void; |
48 | 72 | |
73 | + /** |
|
74 | + * @param TaxCategoryInterface $category |
|
75 | + * |
|
76 | + * @return void |
|
77 | + */ |
|
49 | 78 | public function setTaxCategory(?TaxCategoryInterface $category): void; |
50 | 79 | |
80 | + /** |
|
81 | + * @param ShippingCategoryInterface $shippingCategory |
|
82 | + * |
|
83 | + * @return void |
|
84 | + */ |
|
51 | 85 | public function setShippingCategory(?ShippingCategoryInterface $shippingCategory): void; |
52 | 86 | |
53 | 87 | /** |
@@ -61,11 +95,20 @@ discard block |
||
61 | 95 | |
62 | 96 | public function hasChannelPricing(ChannelPricingInterface $channelPricing): bool; |
63 | 97 | |
98 | + /** |
|
99 | + * @return void |
|
100 | + */ |
|
64 | 101 | public function addChannelPricing(ChannelPricingInterface $channelPricing): void; |
65 | 102 | |
103 | + /** |
|
104 | + * @return void |
|
105 | + */ |
|
66 | 106 | public function removeChannelPricing(ChannelPricingInterface $channelPricing): void; |
67 | 107 | |
68 | 108 | public function isShippingRequired(): bool; |
69 | 109 | |
110 | + /** |
|
111 | + * @return void |
|
112 | + */ |
|
70 | 113 | public function setShippingRequired(bool $shippingRequired): void; |
71 | 114 | } |
@@ -16,8 +16,8 @@ |
||
16 | 16 | use Sylius\Component\Addressing\Model\ZoneInterface; |
17 | 17 | use Sylius\Component\Channel\Model\ChannelsAwareInterface; |
18 | 18 | use Sylius\Component\Shipping\Model\ShippingMethodInterface as BaseShippingMethodInterface; |
19 | -use Sylius\Component\Taxation\Model\TaxableInterface; |
|
20 | 19 | use Sylius\Component\Taxation\Model\TaxCategoryInterface; |
20 | +use Sylius\Component\Taxation\Model\TaxableInterface; |
|
21 | 21 | |
22 | 22 | interface ShippingMethodInterface extends BaseShippingMethodInterface, TaxableInterface, ChannelsAwareInterface |
23 | 23 | { |
@@ -21,9 +21,20 @@ |
||
21 | 21 | |
22 | 22 | interface ShippingMethodInterface extends BaseShippingMethodInterface, TaxableInterface, ChannelsAwareInterface |
23 | 23 | { |
24 | + /** |
|
25 | + * @return ZoneInterface |
|
26 | + */ |
|
24 | 27 | public function getZone(): ?ZoneInterface; |
25 | 28 | |
29 | + /** |
|
30 | + * @return void |
|
31 | + */ |
|
26 | 32 | public function setZone(?ZoneInterface $zone): void; |
27 | 33 | |
34 | + /** |
|
35 | + * @param TaxCategoryInterface $category |
|
36 | + * |
|
37 | + * @return void |
|
38 | + */ |
|
28 | 39 | public function setTaxCategory(?TaxCategoryInterface $category): void; |
29 | 40 | } |