Completed
Push — 1.5-lint-container ( 339259...ddb6cd )
by Kamil
05:28
created
tests/Controller/CartApiTest.php 1 patch
Upper-Lower-Casing   +9 added lines, -9 removed lines patch added patch discarded remove patch
@@ -129,7 +129,7 @@  discard block
 block discarded – undo
129 129
             "channel": "WEB",
130 130
             "localeCode": "en_US"
131 131
         }
132
-EOT;
132
+eot;
133 133
 
134 134
         $this->client->request('POST', $this->getCartApiUrl(), [], [], static::$authorizedHeaderWithContentType, $data);
135 135
 
@@ -290,7 +290,7 @@  discard block
 block discarded – undo
290 290
             "variant": "MUG_SW",
291 291
             "quantity": 1
292 292
         }
293
-EOT;
293
+eot;
294 294
         $this->client->request('POST', $this->getCartItemListUrl($cart), [], [], static::$authorizedHeaderWithContentType, $data);
295 295
 
296 296
         $response = $this->client->getResponse();
@@ -314,7 +314,7 @@  discard block
 block discarded – undo
314 314
             "variant": "MUG_SW",
315 315
             "quantity": -1
316 316
         }
317
-EOT;
317
+eot;
318 318
         $this->client->request('POST', $this->getCartItemListUrl($cart), [], [], static::$authorizedHeaderWithContentType, $data);
319 319
 
320 320
         $response = $this->client->getResponse();
@@ -338,7 +338,7 @@  discard block
 block discarded – undo
338 338
             "variant": "MUG_SW",
339 339
             "quantity": 3
340 340
         }
341
-EOT;
341
+eot;
342 342
         $this->client->request('POST', $this->getCartItemListUrl($cart), [], [], static::$authorizedHeaderWithContentType, $data);
343 343
 
344 344
         $response = $this->client->getResponse();
@@ -362,7 +362,7 @@  discard block
 block discarded – undo
362 362
             "variant": "HARD_AVAILABLE_MUG",
363 363
             "quantity": 1
364 364
         }
365
-EOT;
365
+eot;
366 366
         $this->client->request('POST', $this->getCartItemListUrl($cart), [], [], static::$authorizedHeaderWithContentType, $data);
367 367
 
368 368
         $response = $this->client->getResponse();
@@ -386,7 +386,7 @@  discard block
 block discarded – undo
386 386
             "variant": "HARD_AVAILABLE_MUG",
387 387
             "quantity": 3
388 388
         }
389
-EOT;
389
+eot;
390 390
         $this->client->request('POST', $this->getCartItemListUrl($cart), [], [], static::$authorizedHeaderWithContentType, $data);
391 391
 
392 392
         $response = $this->client->getResponse();
@@ -422,7 +422,7 @@  discard block
 block discarded – undo
422 422
         {
423 423
             "variant": "MUG_SW"
424 424
         }
425
-EOT;
425
+eot;
426 426
 
427 427
         $this->client->request('PUT', $this->getCartItemUrl($cart, $cartItem), [], [], static::$authorizedHeaderWithContentType, $data);
428 428
 
@@ -448,7 +448,7 @@  discard block
 block discarded – undo
448 448
         {
449 449
             "quantity": 3
450 450
         }
451
-EOT;
451
+eot;
452 452
         $this->client->request('PUT', $this->getCartItemUrl($cart, $cartItem), [], [], static::$authorizedHeaderWithContentType, $data);
453 453
 
454 454
         $response = $this->client->getResponse();
@@ -478,7 +478,7 @@  discard block
 block discarded – undo
478 478
         {
479 479
             "quantity": 3
480 480
         }
481
-EOT;
481
+eot;
482 482
         $this->client->request('PUT', $this->getCartItemUrl($cart, $cartItem), [], [], static::$authorizedHeaderWithContentType, $data);
483 483
 
484 484
         $response = $this->client->getResponse();
Please login to merge, or discard this patch.
src/Sylius/Behat/Page/External/PaypalExpressCheckoutPageInterface.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -22,18 +22,21 @@
 block discarded – undo
22 22
     /**
23 23
      * @throws UnsupportedDriverActionException
24 24
      * @throws DriverException
25
+     * @return void
25 26
      */
26 27
     public function authorize();
27 28
     
28 29
     /**
29 30
      * @throws UnsupportedDriverActionException
30 31
      * @throws DriverException
32
+     * @return void
31 33
      */
32 34
     public function pay();
33 35
 
34 36
     /**
35 37
      * @throws UnsupportedDriverActionException
36 38
      * @throws DriverException
39
+     * @return void
37 40
      */
38 41
     public function cancel();
39 42
 }
Please login to merge, or discard this patch.
src/Sylius/Bundle/CoreBundle/Command/InstallSampleDataCommand.php 1 patch
Upper-Lower-Casing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -32,7 +32,7 @@
 block discarded – undo
32 32
             ->setDescription('Install sample data into Sylius.')
33 33
             ->setHelp(<<<EOT
34 34
 The <info>%command.name%</info> command loads the sample data for Sylius.
35
-EOT
35
+eot
36 36
             )
37 37
             ->addOption('fixture-suite', 's', InputOption::VALUE_OPTIONAL, 'Load specified fixture suite during install', null)
38 38
         ;
Please login to merge, or discard this patch.
src/Sylius/Bundle/CoreBundle/Command/InstallCommand.php 1 patch
Upper-Lower-Casing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -51,7 +51,7 @@
 block discarded – undo
51 51
             ->setDescription('Installs Sylius in your preferred environment.')
52 52
             ->setHelp(<<<EOT
53 53
 The <info>%command.name%</info> command installs Sylius.
54
-EOT
54
+eot
55 55
             )
56 56
             ->addOption('fixture-suite', 's', InputOption::VALUE_OPTIONAL, 'Load specified fixture suite during install', null)
57 57
         ;
Please login to merge, or discard this patch.
src/Sylius/Bundle/CoreBundle/Command/InstallDatabaseCommand.php 1 patch
Upper-Lower-Casing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -30,7 +30,7 @@
 block discarded – undo
30 30
             ->setDescription('Install Sylius database.')
31 31
             ->setHelp(<<<EOT
32 32
 The <info>%command.name%</info> command creates Sylius database.
33
-EOT
33
+eot
34 34
             )
35 35
             ->addOption('fixture-suite', 's', InputOption::VALUE_OPTIONAL, 'Load specified fixture suite during install', null)
36 36
         ;
Please login to merge, or discard this patch.
src/Sylius/Behat/Context/Setup/ProductContext.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -947,6 +947,9 @@
 block discarded – undo
947 947
         $this->objectManager->flush();
948 948
     }
949 949
 
950
+    /**
951
+     * @param ProductVariantInterface $variant
952
+     */
950 953
     private function createProductImage(
951 954
         ProductInterface $product,
952 955
         string $imagePath,
Please login to merge, or discard this patch.
src/Sylius/Behat/Context/Ui/Admin/ManagingProductsContext.php 1 patch
Unused Use Statements   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -18,15 +18,15 @@
 block discarded – undo
18 18
 use Sylius\Behat\NotificationType;
19 19
 use Sylius\Behat\Page\Admin\Crud\CreatePageInterface;
20 20
 use Sylius\Behat\Page\Admin\Crud\UpdatePageInterface;
21
+use Sylius\Behat\Page\Admin\ProductReview\IndexPageInterface as ProductReviewIndexPageInterface;
22
+use Sylius\Behat\Page\Admin\ProductVariant\CreatePageInterface as VariantCreatePageInterface;
23
+use Sylius\Behat\Page\Admin\ProductVariant\GeneratePageInterface;
21 24
 use Sylius\Behat\Page\Admin\Product\CreateConfigurableProductPageInterface;
22 25
 use Sylius\Behat\Page\Admin\Product\CreateSimpleProductPageInterface;
23 26
 use Sylius\Behat\Page\Admin\Product\IndexPageInterface;
24 27
 use Sylius\Behat\Page\Admin\Product\IndexPerTaxonPageInterface;
25 28
 use Sylius\Behat\Page\Admin\Product\UpdateConfigurableProductPageInterface;
26 29
 use Sylius\Behat\Page\Admin\Product\UpdateSimpleProductPageInterface;
27
-use Sylius\Behat\Page\Admin\ProductReview\IndexPageInterface as ProductReviewIndexPageInterface;
28
-use Sylius\Behat\Page\Admin\ProductVariant\CreatePageInterface as VariantCreatePageInterface;
29
-use Sylius\Behat\Page\Admin\ProductVariant\GeneratePageInterface;
30 30
 use Sylius\Behat\Service\NotificationCheckerInterface;
31 31
 use Sylius\Behat\Service\Resolver\CurrentPageResolverInterface;
32 32
 use Sylius\Behat\Service\SharedStorageInterface;
Please login to merge, or discard this patch.
Sylius/Behat/Page/Admin/Product/UpdateConfigurableProductPageInterface.php 1 patch
Doc Comments   +31 added lines patch added patch discarded remove patch
@@ -20,6 +20,9 @@  discard block
 block discarded – undo
20 20
 {
21 21
     public function isCodeDisabled(): bool;
22 22
 
23
+    /**
24
+     * @return void
25
+     */
23 26
     public function nameItIn(string $name, string $localeCode): void;
24 27
 
25 28
     public function isProductOptionChosen(string $option): bool;
@@ -28,30 +31,58 @@  discard block
 block discarded – undo
28 31
 
29 32
     public function isMainTaxonChosen(string $taxonName): bool;
30 33
 
34
+    /**
35
+     * @return void
36
+     */
31 37
     public function selectMainTaxon(TaxonInterface $taxon): void;
32 38
 
39
+    /**
40
+     * @return void
41
+     */
33 42
     public function checkChannel(string $channelName): void;
34 43
 
35 44
     public function isImageWithTypeDisplayed(string $type): bool;
36 45
 
37 46
     /**
38 47
      * @param string $type
48
+     * @return void
39 49
      */
40 50
     public function attachImage(string $path, string $type = null): void;
41 51
 
52
+    /**
53
+     * @return void
54
+     */
42 55
     public function changeImageWithType(string $type, string $path): void;
43 56
 
57
+    /**
58
+     * @return void
59
+     */
44 60
     public function removeImageWithType(string $type): void;
45 61
 
62
+    /**
63
+     * @return void
64
+     */
46 65
     public function removeFirstImage(): void;
47 66
 
67
+    /**
68
+     * @return void
69
+     */
48 70
     public function modifyFirstImageType(string $type): void;
49 71
 
50 72
     public function countImages(): int;
51 73
 
74
+    /**
75
+     * @return void
76
+     */
52 77
     public function goToVariantsList(): void;
53 78
 
79
+    /**
80
+     * @return void
81
+     */
54 82
     public function goToVariantCreation(): void;
55 83
 
84
+    /**
85
+     * @return void
86
+     */
56 87
     public function goToVariantGeneration(): void;
57 88
 }
Please login to merge, or discard this patch.
src/Sylius/Behat/Page/Admin/Product/UpdateSimpleProductPageInterface.php 1 patch
Doc Comments   +59 added lines patch added patch discarded remove patch
@@ -25,14 +25,29 @@  discard block
 block discarded – undo
25 25
 
26 26
     public function isSlugReadonlyIn(string $locale): bool;
27 27
 
28
+    /**
29
+     * @return void
30
+     */
28 31
     public function specifyPrice(string $channelName, string $price): void;
29 32
 
33
+    /**
34
+     * @return void
35
+     */
30 36
     public function specifyOriginalPrice(string $channelName, string $originalPrice): void;
31 37
 
38
+    /**
39
+     * @return void
40
+     */
32 41
     public function nameItIn(string $name, string $localeCode): void;
33 42
 
43
+    /**
44
+     * @return void
45
+     */
34 46
     public function addSelectedAttributes(): void;
35 47
 
48
+    /**
49
+     * @return void
50
+     */
36 51
     public function removeAttribute(string $attributeName, string $localeCode): void;
37 52
 
38 53
     public function getAttributeValue(string $attributeName, string $localeCode): string;
@@ -45,48 +60,83 @@  discard block
 block discarded – undo
45 60
 
46 61
     public function isMainTaxonChosen(string $taxonName): bool;
47 62
 
63
+    /**
64
+     * @return void
65
+     */
48 66
     public function selectMainTaxon(TaxonInterface $taxon): void;
49 67
 
68
+    /**
69
+     * @return void
70
+     */
50 71
     public function disableTracking(): void;
51 72
 
73
+    /**
74
+     * @return void
75
+     */
52 76
     public function enableTracking(): void;
53 77
 
54 78
     public function isTracked(): bool;
55 79
 
80
+    /**
81
+     * @return void
82
+     */
56 83
     public function enableSlugModification(string $locale): void;
57 84
 
58 85
     public function isImageWithTypeDisplayed(string $type): bool;
59 86
 
60 87
     /**
61 88
      * @param string $type
89
+     * @return void
62 90
      */
63 91
     public function attachImage(string $path, string $type = null): void;
64 92
 
93
+    /**
94
+     * @return void
95
+     */
65 96
     public function changeImageWithType(string $type, string $path): void;
66 97
 
98
+    /**
99
+     * @return void
100
+     */
67 101
     public function removeImageWithType(string $type): void;
68 102
 
103
+    /**
104
+     * @return void
105
+     */
69 106
     public function removeFirstImage(): void;
70 107
 
108
+    /**
109
+     * @return void
110
+     */
71 111
     public function modifyFirstImageType(string $type): void;
72 112
 
73 113
     public function countImages(): int;
74 114
 
75 115
     /**
76 116
      * @param string[] $productsNames
117
+     * @return void
77 118
      */
78 119
     public function associateProducts(ProductAssociationTypeInterface $productAssociationType, array $productsNames): void;
79 120
 
80 121
     public function hasAssociatedProduct(string $productName, ProductAssociationTypeInterface $productAssociationType): bool;
81 122
 
123
+    /**
124
+     * @return void
125
+     */
82 126
     public function removeAssociatedProduct(string $productName, ProductAssociationTypeInterface $productAssociationType): void;
83 127
 
84 128
     public function getPricingConfigurationForChannelAndCurrencyCalculator(ChannelInterface $channel, CurrencyInterface $currency): string;
85 129
 
130
+    /**
131
+     * @return void
132
+     */
86 133
     public function activateLanguageTab(string $locale): void;
87 134
 
88 135
     public function getSlug(string $locale): string;
89 136
 
137
+    /**
138
+     * @return void
139
+     */
90 140
     public function specifySlugIn(string $slug, string $locale): void;
91 141
 
92 142
     public function getPriceForChannel(string $channelName): string;
@@ -95,9 +145,18 @@  discard block
 block discarded – undo
95 145
 
96 146
     public function isShippingRequired(): bool;
97 147
 
148
+    /**
149
+     * @return void
150
+     */
98 151
     public function goToVariantsList(): void;
99 152
 
153
+    /**
154
+     * @return void
155
+     */
100 156
     public function goToVariantCreation(): void;
101 157
 
158
+    /**
159
+     * @return void
160
+     */
102 161
     public function goToVariantGeneration(): void;
103 162
 }
Please login to merge, or discard this patch.