@@ -62,7 +62,7 @@ discard block |
||
| 62 | 62 | "name": "Clothing", |
| 63 | 63 | "description": "All items classified as clothing." |
| 64 | 64 | } |
| 65 | -EOT; |
|
| 65 | +eot; |
|
| 66 | 66 | |
| 67 | 67 | $this->client->request('POST', '/api/v1/tax-categories/', [], [], [ |
| 68 | 68 | 'HTTP_Authorization' => 'Bearer SampleTokenNjZkNjY2MDEwMTAzMDkxMGE0OTlhYzU3NzYyMTE0ZGQ3ODcyMDAwM2EwMDZjNDI5NDlhMDdlMQ', |
@@ -253,7 +253,7 @@ discard block |
||
| 253 | 253 | "name": "Clothing & Accessories", |
| 254 | 254 | "description": "All items classified as clothing with accessories." |
| 255 | 255 | } |
| 256 | -EOT; |
|
| 256 | +eot; |
|
| 257 | 257 | |
| 258 | 258 | $this->client->request('PUT', $this->getTaxCategoryUrl($taxCategory), [], [], [ |
| 259 | 259 | 'HTTP_Authorization' => 'Bearer SampleTokenNjZkNjY2MDEwMTAzMDkxMGE0OTlhYzU3NzYyMTE0ZGQ3ODcyMDAwM2EwMDZjNDI5NDlhMDdlMQ', |
@@ -294,7 +294,7 @@ discard block |
||
| 294 | 294 | { |
| 295 | 295 | "name": "Clothing & Accessories" |
| 296 | 296 | } |
| 297 | -EOT; |
|
| 297 | +eot; |
|
| 298 | 298 | |
| 299 | 299 | $this->client->request('PATCH', $this->getTaxCategoryUrl($taxCategory), [], [], [ |
| 300 | 300 | 'HTTP_Authorization' => 'Bearer SampleTokenNjZkNjY2MDEwMTAzMDkxMGE0OTlhYzU3NzYyMTE0ZGQ3ODcyMDAwM2EwMDZjNDI5NDlhMDdlMQ', |
@@ -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 | |
@@ -184,7 +184,7 @@ discard block |
||
| 184 | 184 | { |
| 185 | 185 | $this->loadFixturesFromFile('authentication/api_administrator.yml'); |
| 186 | 186 | $taxCategories = $this->loadFixturesFromFile('resources/tax_categories.yml'); |
| 187 | - $taxCategory = $taxCategories['tax_category_1']; |
|
| 187 | + $taxCategory = $taxCategories['tax_category_1']; |
|
| 188 | 188 | |
| 189 | 189 | $this->client->request('GET', $this->getTaxCategoryUrl($taxCategory), [], [], [ |
| 190 | 190 | 'HTTP_Authorization' => 'Bearer SampleTokenNjZkNjY2MDEwMTAzMDkxMGE0OTlhYzU3NzYyMTE0ZGQ3ODcyMDAwM2EwMDZjNDI5NDlhMDdlMQ', |
@@ -11,8 +11,8 @@ |
||
| 11 | 11 | |
| 12 | 12 | namespace Sylius\Bundle\GridBundle\Doctrine\ORM; |
| 13 | 13 | |
| 14 | -use Doctrine\ORM\Query\Expr\Comparison; |
|
| 15 | 14 | use Doctrine\ORM\QueryBuilder; |
| 15 | +use Doctrine\ORM\Query\Expr\Comparison; |
|
| 16 | 16 | use Sylius\Component\Grid\Data\ExpressionBuilderInterface; |
| 17 | 17 | |
| 18 | 18 | /** |
@@ -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\Bundle\GridBundle\Doctrine\ORM; |
| 15 | 15 | |
@@ -67,7 +67,7 @@ discard block |
||
| 67 | 67 | $parameterName = $this->getParameterName($field); |
| 68 | 68 | $this->queryBuilder->setParameter($parameterName, $value); |
| 69 | 69 | |
| 70 | - return $this->queryBuilder->expr()->eq($this->getFieldName($field), ':'.$parameterName); |
|
| 70 | + return $this->queryBuilder->expr()->eq($this->getFieldName($field), ':' . $parameterName); |
|
| 71 | 71 | } |
| 72 | 72 | |
| 73 | 73 | /** |
@@ -78,7 +78,7 @@ discard block |
||
| 78 | 78 | $parameterName = $this->getParameterName($field); |
| 79 | 79 | $this->queryBuilder->setParameter($parameterName, $value); |
| 80 | 80 | |
| 81 | - return $this->queryBuilder->expr()->neq($this->getFieldName($field), ':'.$parameterName); |
|
| 81 | + return $this->queryBuilder->expr()->neq($this->getFieldName($field), ':' . $parameterName); |
|
| 82 | 82 | } |
| 83 | 83 | |
| 84 | 84 | /** |
@@ -89,7 +89,7 @@ discard block |
||
| 89 | 89 | $parameterName = $this->getParameterName($field); |
| 90 | 90 | $this->queryBuilder->setParameter($parameterName, $value); |
| 91 | 91 | |
| 92 | - $this->queryBuilder->andWhere($this->getFieldName($field).' < :'.$parameterName); |
|
| 92 | + $this->queryBuilder->andWhere($this->getFieldName($field) . ' < :' . $parameterName); |
|
| 93 | 93 | } |
| 94 | 94 | |
| 95 | 95 | /** |
@@ -100,7 +100,7 @@ discard block |
||
| 100 | 100 | $parameterName = $this->getParameterName($field); |
| 101 | 101 | $this->queryBuilder->setParameter($parameterName, $value); |
| 102 | 102 | |
| 103 | - $this->queryBuilder->andWhere($this->getFieldName($field).' <= :'.$parameterName); |
|
| 103 | + $this->queryBuilder->andWhere($this->getFieldName($field) . ' <= :' . $parameterName); |
|
| 104 | 104 | } |
| 105 | 105 | |
| 106 | 106 | /** |
@@ -111,7 +111,7 @@ discard block |
||
| 111 | 111 | $parameterName = $this->getParameterName($field); |
| 112 | 112 | $this->queryBuilder->setParameter($parameterName, $value); |
| 113 | 113 | |
| 114 | - $this->queryBuilder->andWhere($this->getFieldName($field).' > :'.$parameterName); |
|
| 114 | + $this->queryBuilder->andWhere($this->getFieldName($field) . ' > :' . $parameterName); |
|
| 115 | 115 | } |
| 116 | 116 | |
| 117 | 117 | /** |
@@ -122,7 +122,7 @@ discard block |
||
| 122 | 122 | $parameterName = $this->getParameterName($field); |
| 123 | 123 | $this->queryBuilder->setParameter($parameterName, $value); |
| 124 | 124 | |
| 125 | - $this->queryBuilder->andWhere($this->getFieldName($field).' >= :'.$parameterName); |
|
| 125 | + $this->queryBuilder->andWhere($this->getFieldName($field) . ' >= :' . $parameterName); |
|
| 126 | 126 | } |
| 127 | 127 | |
| 128 | 128 | /** |
@@ -197,7 +197,7 @@ discard block |
||
| 197 | 197 | private function getFieldName(string $field): string |
| 198 | 198 | { |
| 199 | 199 | if (false === strpos($field, '.')) { |
| 200 | - return $this->queryBuilder->getRootAlias().'.'.$field; |
|
| 200 | + return $this->queryBuilder->getRootAlias() . '.' . $field; |
|
| 201 | 201 | } |
| 202 | 202 | |
| 203 | 203 | return $field; |
@@ -23,6 +23,7 @@ |
||
| 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, |
@@ -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\ResourceBundle\Controller; |
| 15 | 15 | |
@@ -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]> |
@@ -40,6 +40,7 @@ discard block |
||
| 40 | 40 | |
| 41 | 41 | /** |
| 42 | 42 | * @param float|null $weight |
| 43 | + * @return void |
|
| 43 | 44 | */ |
| 44 | 45 | public function setWeight(?float $weight): void; |
| 45 | 46 | |
@@ -50,6 +51,7 @@ discard block |
||
| 50 | 51 | |
| 51 | 52 | /** |
| 52 | 53 | * @param float|null $width |
| 54 | + * @return void |
|
| 53 | 55 | */ |
| 54 | 56 | public function setWidth(?float $width): void; |
| 55 | 57 | |
@@ -60,6 +62,7 @@ discard block |
||
| 60 | 62 | |
| 61 | 63 | /** |
| 62 | 64 | * @param float|null $height |
| 65 | + * @return void |
|
| 63 | 66 | */ |
| 64 | 67 | public function setHeight(?float $height): void; |
| 65 | 68 | |
@@ -70,16 +73,19 @@ discard block |
||
| 70 | 73 | |
| 71 | 74 | /** |
| 72 | 75 | * @param float|null $depth |
| 76 | + * @return void |
|
| 73 | 77 | */ |
| 74 | 78 | public function setDepth(?float $depth): void; |
| 75 | 79 | |
| 76 | 80 | /** |
| 77 | 81 | * @param TaxCategoryInterface|null $category |
| 82 | + * @return void |
|
| 78 | 83 | */ |
| 79 | 84 | public function setTaxCategory(?TaxCategoryInterface $category): void; |
| 80 | 85 | |
| 81 | 86 | /** |
| 82 | 87 | * @param ShippingCategoryInterface|null $shippingCategory |
| 88 | + * @return void |
|
| 83 | 89 | */ |
| 84 | 90 | public function setShippingCategory(?ShippingCategoryInterface $shippingCategory): void; |
| 85 | 91 | |
@@ -111,11 +117,13 @@ discard block |
||
| 111 | 117 | |
| 112 | 118 | /** |
| 113 | 119 | * @param ChannelPricingInterface $channelPricing |
| 120 | + * @return void |
|
| 114 | 121 | */ |
| 115 | 122 | public function addChannelPricing(ChannelPricingInterface $channelPricing): void; |
| 116 | 123 | |
| 117 | 124 | /** |
| 118 | 125 | * @param ChannelPricingInterface $channelPricing |
| 126 | + * @return void |
|
| 119 | 127 | */ |
| 120 | 128 | public function removeChannelPricing(ChannelPricingInterface $channelPricing): void; |
| 121 | 129 | |
@@ -126,6 +134,7 @@ discard block |
||
| 126 | 134 | |
| 127 | 135 | /** |
| 128 | 136 | * @param bool $shippingRequired |
| 137 | + * @return void |
|
| 129 | 138 | */ |
| 130 | 139 | public function setShippingRequired(bool $shippingRequired): void; |
| 131 | 140 | } |
@@ -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\Component\Core\Model; |
| 15 | 15 | |
@@ -41,7 +41,7 @@ discard block |
||
| 41 | 41 | /** |
| 42 | 42 | * @param float|null $weight |
| 43 | 43 | */ |
| 44 | - public function setWeight(?float $weight): void; |
|
| 44 | + public function setWeight(?float $weight) : void; |
|
| 45 | 45 | |
| 46 | 46 | /** |
| 47 | 47 | * @return float|null |
@@ -51,7 +51,7 @@ discard block |
||
| 51 | 51 | /** |
| 52 | 52 | * @param float|null $width |
| 53 | 53 | */ |
| 54 | - public function setWidth(?float $width): void; |
|
| 54 | + public function setWidth(?float $width) : void; |
|
| 55 | 55 | |
| 56 | 56 | /** |
| 57 | 57 | * @return float|null |
@@ -61,7 +61,7 @@ discard block |
||
| 61 | 61 | /** |
| 62 | 62 | * @param float|null $height |
| 63 | 63 | */ |
| 64 | - public function setHeight(?float $height): void; |
|
| 64 | + public function setHeight(?float $height) : void; |
|
| 65 | 65 | |
| 66 | 66 | /** |
| 67 | 67 | * @return float|null |
@@ -71,17 +71,17 @@ discard block |
||
| 71 | 71 | /** |
| 72 | 72 | * @param float|null $depth |
| 73 | 73 | */ |
| 74 | - public function setDepth(?float $depth): void; |
|
| 74 | + public function setDepth(?float $depth) : void; |
|
| 75 | 75 | |
| 76 | 76 | /** |
| 77 | 77 | * @param TaxCategoryInterface|null $category |
| 78 | 78 | */ |
| 79 | - public function setTaxCategory(?TaxCategoryInterface $category): void; |
|
| 79 | + public function setTaxCategory(?TaxCategoryInterface $category) : void; |
|
| 80 | 80 | |
| 81 | 81 | /** |
| 82 | 82 | * @param ShippingCategoryInterface|null $shippingCategory |
| 83 | 83 | */ |
| 84 | - public function setShippingCategory(?ShippingCategoryInterface $shippingCategory): void; |
|
| 84 | + public function setShippingCategory(?ShippingCategoryInterface $shippingCategory) : void; |
|
| 85 | 85 | |
| 86 | 86 | /** |
| 87 | 87 | * @return Collection|ChannelPricingInterface[] |
@@ -72,7 +72,7 @@ discard block |
||
| 72 | 72 | { |
| 73 | 73 | "code": "BE" |
| 74 | 74 | } |
| 75 | -EOT; |
|
| 75 | +eot; |
|
| 76 | 76 | |
| 77 | 77 | $this->client->request('POST', '/api/v1/countries/', [], [], static::$authorizedHeaderWithContentType, $data); |
| 78 | 78 | |
@@ -98,7 +98,7 @@ discard block |
||
| 98 | 98 | } |
| 99 | 99 | ] |
| 100 | 100 | } |
| 101 | -EOT; |
|
| 101 | +eot; |
|
| 102 | 102 | |
| 103 | 103 | $this->client->request('POST', '/api/v1/countries/', [], [], static::$authorizedHeaderWithContentType, $data); |
| 104 | 104 | |
@@ -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 | |
@@ -75,7 +75,7 @@ discard block |
||
| 75 | 75 | "sourceCurrency": "EUR", |
| 76 | 76 | "targetCurrency": "GBP" |
| 77 | 77 | } |
| 78 | -EOT; |
|
| 78 | +eot; |
|
| 79 | 79 | |
| 80 | 80 | $this->client->request('POST', '/api/v1/exchange-rates/', [], [], static::$authorizedHeaderWithContentType, $data); |
| 81 | 81 | |
@@ -98,7 +98,7 @@ discard block |
||
| 98 | 98 | "sourceCurrency": "EUR", |
| 99 | 99 | "targetCurrency": "GBP" |
| 100 | 100 | } |
| 101 | -EOT; |
|
| 101 | +eot; |
|
| 102 | 102 | |
| 103 | 103 | $this->client->request('POST', '/api/v1/exchange-rates/', [], [], static::$authorizedHeaderWithContentType, $data); |
| 104 | 104 | |
@@ -229,7 +229,7 @@ discard block |
||
| 229 | 229 | { |
| 230 | 230 | "ratio": 0.84 |
| 231 | 231 | } |
| 232 | -EOT; |
|
| 232 | +eot; |
|
| 233 | 233 | |
| 234 | 234 | $this->client->request('PUT', $this->getExchangeRateUrl($exchangeRate), [], [], static::$authorizedHeaderWithContentType, $data); |
| 235 | 235 | |
@@ -261,7 +261,7 @@ discard block |
||
| 261 | 261 | "sourceCurrency": "GBP", |
| 262 | 262 | "targetCurrency": "EUR" |
| 263 | 263 | } |
| 264 | -EOT; |
|
| 264 | +eot; |
|
| 265 | 265 | |
| 266 | 266 | $this->client->request('PATCH', $this->getExchangeRateUrl($exchangeRate), [], [], static::$authorizedHeaderWithContentType, $data); |
| 267 | 267 | |
@@ -290,7 +290,7 @@ discard block |
||
| 290 | 290 | { |
| 291 | 291 | "ratio": "its-a-trap" |
| 292 | 292 | } |
| 293 | -EOT; |
|
| 293 | +eot; |
|
| 294 | 294 | |
| 295 | 295 | $this->client->request('PUT', $this->getExchangeRateUrl($exchangeRate), [], [], static::$authorizedHeaderWithContentType, $data); |
| 296 | 296 | |
@@ -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 | |
@@ -158,7 +158,7 @@ discard block |
||
| 158 | 158 | { |
| 159 | 159 | "code": "MONSTER_MUG" |
| 160 | 160 | } |
| 161 | -EOT; |
|
| 161 | +eot; |
|
| 162 | 162 | |
| 163 | 163 | $this->client->request('POST', $this->getVariantListUrl($product), [], [], static::$authorizedHeaderWithContentType, $data); |
| 164 | 164 | $response = $this->client->getResponse(); |
@@ -208,7 +208,7 @@ discard block |
||
| 208 | 208 | } |
| 209 | 209 | } |
| 210 | 210 | } |
| 211 | -EOT; |
|
| 211 | +eot; |
|
| 212 | 212 | |
| 213 | 213 | $this->client->request('POST', $this->getVariantListUrl($product), [], [], static::$authorizedHeaderWithContentType, $data); |
| 214 | 214 | $response = $this->client->getResponse(); |
@@ -242,7 +242,7 @@ discard block |
||
| 242 | 242 | } |
| 243 | 243 | } |
| 244 | 244 | } |
| 245 | -EOT; |
|
| 245 | +eot; |
|
| 246 | 246 | $this->client->request('POST', $this->getVariantListUrl($product), [], [], static::$authorizedHeaderWithContentType, $data); |
| 247 | 247 | $response = $this->client->getResponse(); |
| 248 | 248 | |
@@ -267,7 +267,7 @@ discard block |
||
| 267 | 267 | "tracked": true, |
| 268 | 268 | "onHand": 5 |
| 269 | 269 | } |
| 270 | -EOT; |
|
| 270 | +eot; |
|
| 271 | 271 | |
| 272 | 272 | $this->client->request('POST', $this->getVariantListUrl($product), [], [], static::$authorizedHeaderWithContentType, $data); |
| 273 | 273 | $response = $this->client->getResponse(); |
@@ -293,7 +293,7 @@ discard block |
||
| 293 | 293 | "code": "MONSTER_MUG", |
| 294 | 294 | "taxCategory": "TC1" |
| 295 | 295 | } |
| 296 | -EOT; |
|
| 296 | +eot; |
|
| 297 | 297 | |
| 298 | 298 | $this->client->request('POST', $this->getVariantListUrl($product), [], [], static::$authorizedHeaderWithContentType, $data); |
| 299 | 299 | $response = $this->client->getResponse(); |
@@ -319,7 +319,7 @@ discard block |
||
| 319 | 319 | "code": "MONSTER_MUG", |
| 320 | 320 | "shippingCategory": "SC1" |
| 321 | 321 | } |
| 322 | -EOT; |
|
| 322 | +eot; |
|
| 323 | 323 | |
| 324 | 324 | $this->client->request('POST', $this->getVariantListUrl($product), [], [], static::$authorizedHeaderWithContentType, $data); |
| 325 | 325 | $response = $this->client->getResponse(); |
@@ -347,7 +347,7 @@ discard block |
||
| 347 | 347 | "MUG_TYPE": "MUG_TYPE_MEDIUM" |
| 348 | 348 | } |
| 349 | 349 | } |
| 350 | -EOT; |
|
| 350 | +eot; |
|
| 351 | 351 | |
| 352 | 352 | $this->client->request('POST', $this->getVariantListUrl($product), [], [], static::$authorizedHeaderWithContentType, $data); |
| 353 | 353 | $response = $this->client->getResponse(); |
@@ -422,7 +422,7 @@ discard block |
||
| 422 | 422 | "code": "NEW_MUG_CODE", |
| 423 | 423 | "version": $version |
| 424 | 424 | } |
| 425 | -EOT; |
|
| 425 | +eot; |
|
| 426 | 426 | $this->client->request('PUT', $this->getVariantUrl($product, $productVariant), [], [], static::$authorizedHeaderWithContentType, $data); |
| 427 | 427 | $response = $this->client->getResponse(); |
| 428 | 428 | |
@@ -455,7 +455,7 @@ discard block |
||
| 455 | 455 | } |
| 456 | 456 | } |
| 457 | 457 | } |
| 458 | -EOT; |
|
| 458 | +eot; |
|
| 459 | 459 | |
| 460 | 460 | $this->client->request('PATCH', $this->getVariantUrl($product, $productVariant), [], [], static::$authorizedHeaderWithContentType, $data); |
| 461 | 461 | $response = $this->client->getResponse(); |
@@ -483,7 +483,7 @@ discard block |
||
| 483 | 483 | { |
| 484 | 484 | "tracked": false |
| 485 | 485 | } |
| 486 | -EOT; |
|
| 486 | +eot; |
|
| 487 | 487 | $this->client->request('PATCH', $this->getVariantUrl($product, $productVariant), [], [], static::$authorizedHeaderWithContentType, $data); |
| 488 | 488 | $response = $this->client->getResponse(); |
| 489 | 489 | |
@@ -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 | |
@@ -112,7 +112,7 @@ discard block |
||
| 112 | 112 | { |
| 113 | 113 | "code": "1234" |
| 114 | 114 | } |
| 115 | -EOT; |
|
| 115 | +eot; |
|
| 116 | 116 | |
| 117 | 117 | $this->client->request('POST', $this->getPromotionCouponsUrl($promotion), [], [], static::$authorizedHeaderWithContentType, $data); |
| 118 | 118 | |
@@ -137,7 +137,7 @@ discard block |
||
| 137 | 137 | "usageLimit": 10, |
| 138 | 138 | "perCustomerUsageLimit": 1 |
| 139 | 139 | } |
| 140 | -EOT; |
|
| 140 | +eot; |
|
| 141 | 141 | |
| 142 | 142 | $this->client->request('POST', $this->getPromotionCouponsUrl($promotion), [], [], static::$authorizedHeaderWithContentType, $data); |
| 143 | 143 | |
@@ -238,7 +238,7 @@ discard block |
||
| 238 | 238 | "usageLimit": 30, |
| 239 | 239 | "perCustomerUsageLimit": 2 |
| 240 | 240 | } |
| 241 | -EOT; |
|
| 241 | +eot; |
|
| 242 | 242 | |
| 243 | 243 | $this->client->request('PUT', $this->getPromotionCouponUrl($promotion, $promotionCoupon), [], [], static::$authorizedHeaderWithContentType, $data); |
| 244 | 244 | |
@@ -296,7 +296,7 @@ discard block |
||
| 296 | 296 | { |
| 297 | 297 | "usageLimit": 30 |
| 298 | 298 | } |
| 299 | -EOT; |
|
| 299 | +eot; |
|
| 300 | 300 | |
| 301 | 301 | $this->client->request('PATCH', $this->getPromotionCouponUrl($promotion, $promotionCoupon), [], [], static::$authorizedHeaderWithContentType, $data); |
| 302 | 302 | |
@@ -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 | |
@@ -46,7 +46,7 @@ |
||
| 46 | 46 | ->setHelp(<<<EOT |
| 47 | 47 | The <info>%command.name%</info>command creates a new client. |
| 48 | 48 | <info>php %command.full_name% [--redirect-uri=...] [--grant-type=...] name</info> |
| 49 | -EOT |
|
| 49 | +eot |
|
| 50 | 50 | ); |
| 51 | 51 | } |
| 52 | 52 | |
@@ -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\AdminApiBundle\Command; |
| 15 | 15 | |