Completed
Push — 1.5-lint-container ( 339259...ddb6cd )
by Kamil
05:28
created
tests/Controller/ChannelApiTest.php 1 patch
Upper-Lower-Casing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -129,7 +129,7 @@  discard block
 block discarded – undo
129 129
             "defaultLocale": "en_US",
130 130
             "enabled": true
131 131
         }
132
-EOT;
132
+eot;
133 133
 
134 134
         $this->client->request('POST', '/api/v1/channels/', [], [], static::$authorizedHeaderWithContentType, $data);
135 135
 
@@ -168,7 +168,7 @@  discard block
 block discarded – undo
168 168
             "skippingPaymentStepAllowed": true,
169 169
             "accountVerificationRequired": false
170 170
         }
171
-EOT;
171
+eot;
172 172
 
173 173
         $this->client->request('POST', '/api/v1/channels/', [], [], static::$authorizedHeaderWithContentType, $data);
174 174
 
@@ -225,7 +225,7 @@  discard block
 block discarded – undo
225 225
             "hostname": "localhost",
226 226
             "taxCalculationStrategy": "order_items_based"
227 227
         }
228
-EOT;
228
+eot;
229 229
 
230 230
         $this->client->request('PUT', $this->getChannelUrl($channel), [], [], static::$authorizedHeaderWithContentType, $data);
231 231
 
@@ -284,7 +284,7 @@  discard block
 block discarded – undo
284 284
             "color": "black",
285 285
             "enabled": false
286 286
         }
287
-EOT;
287
+eot;
288 288
 
289 289
         $this->client->request('PATCH', $this->getChannelUrl($channel), [], [], static::$authorizedHeaderWithContentType, $data);
290 290
 
Please login to merge, or discard this patch.
src/Sylius/Behat/Page/Shop/Cart/SummaryPage.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -299,7 +299,7 @@
 block discarded – undo
299 299
 
300 300
     /**
301 301
      * @param string $attributeName
302
-     * @param string|array $selector
302
+     * @param string $selector
303 303
      *
304 304
      * @return bool
305 305
      *
Please login to merge, or discard this patch.
src/Sylius/Bundle/ReviewBundle/spec/Updater/AverageRatingUpdaterSpec.php 1 patch
Unused Use Statements   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -17,8 +17,8 @@
 block discarded – undo
17 17
 use PhpSpec\ObjectBehavior;
18 18
 use Sylius\Bundle\ReviewBundle\Updater\ReviewableRatingUpdaterInterface;
19 19
 use Sylius\Component\Review\Calculator\ReviewableRatingCalculatorInterface;
20
-use Sylius\Component\Review\Model\ReviewableInterface;
21 20
 use Sylius\Component\Review\Model\ReviewInterface;
21
+use Sylius\Component\Review\Model\ReviewableInterface;
22 22
 
23 23
 final class AverageRatingUpdaterSpec extends ObjectBehavior
24 24
 {
Please login to merge, or discard this patch.
src/Sylius/Component/Core/spec/Model/ProductVariantSpec.php 1 patch
Unused Use Statements   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -26,8 +26,8 @@
 block discarded – undo
26 26
 use Sylius\Component\Resource\Model\VersionedInterface;
27 27
 use Sylius\Component\Shipping\Model\ShippableInterface;
28 28
 use Sylius\Component\Shipping\Model\ShippingCategoryInterface;
29
-use Sylius\Component\Taxation\Model\TaxableInterface;
30 29
 use Sylius\Component\Taxation\Model\TaxCategoryInterface;
30
+use Sylius\Component\Taxation\Model\TaxableInterface;
31 31
 
32 32
 final class ProductVariantSpec extends ObjectBehavior
33 33
 {
Please login to merge, or discard this patch.
src/Sylius/Component/User/Canonicalizer/CanonicalizerInterface.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -15,5 +15,8 @@
 block discarded – undo
15 15
 
16 16
 interface CanonicalizerInterface
17 17
 {
18
+    /**
19
+     * @return string
20
+     */
18 21
     public function canonicalize(?string $string): ?string;
19 22
 }
Please login to merge, or discard this patch.
src/Sylius/Behat/Service/NotificationCheckerInterface.php 1 patch
Doc Comments   +1 added lines patch added patch discarded remove patch
@@ -20,6 +20,7 @@
 block discarded – undo
20 20
 {
21 21
     /**
22 22
      * @throws NotificationExpectationMismatchException
23
+     * @return void
23 24
      */
24 25
     public function checkNotification(string $message, NotificationType $type): void;
25 26
 }
Please login to merge, or discard this patch.
src/Sylius/Component/Channel/Context/ChannelNotFoundException.php 1 patch
Doc Comments   +1 added lines patch added patch discarded remove patch
@@ -17,6 +17,7 @@
 block discarded – undo
17 17
 {
18 18
     /**
19 19
      * {@inheritdoc}
20
+     * @param \UnexpectedValueException $messageOrPreviousException
20 21
      */
21 22
     public function __construct($messageOrPreviousException = null, ?\Throwable $previousException = null)
22 23
     {
Please login to merge, or discard this patch.
src/Sylius/Bundle/CoreBundle/Tests/Application/SyliusPluginTraitTest.php 1 patch
Braces   +2 added lines, -1 removed lines patch added patch discarded remove patch
@@ -25,7 +25,8 @@
 block discarded – undo
25 25
      */
26 26
     public function it_does_not_crash(): void
27 27
     {
28
-        $class = new class() extends Bundle {
28
+        $class = new class() extends Bundle
29
+        {
29 30
             use SyliusPluginTrait;
30 31
         };
31 32
 
Please login to merge, or discard this patch.
src/Sylius/Behat/Element/Shop/Account/RegisterElementInterface.php 1 patch
Doc Comments   +26 added lines patch added patch discarded remove patch
@@ -13,21 +13,47 @@
 block discarded – undo
13 13
      */
14 14
     public function checkValidationMessageFor(string $element, string $message): bool;
15 15
 
16
+    /**
17
+     * @return void
18
+     */
16 19
     public function register(): void;
17 20
 
21
+    /**
22
+     * @return void
23
+     */
18 24
     public function specifyEmail(?string $email): void;
19 25
 
20 26
     public function getEmail(): string;
21 27
 
28
+    /**
29
+     * @return void
30
+     */
22 31
     public function specifyFirstName(?string $firstName): void;
23 32
 
33
+    /**
34
+     * @return void
35
+     */
24 36
     public function specifyLastName(?string $lastName): void;
25 37
 
38
+    /**
39
+     * @return void
40
+     */
26 41
     public function specifyPassword(?string $password): void;
27 42
 
43
+    /**
44
+     * @return void
45
+     */
28 46
     public function specifyPhoneNumber(string $phoneNumber): void;
29 47
 
48
+    /**
49
+     * @param string|null $password
50
+     *
51
+     * @return void
52
+     */
30 53
     public function verifyPassword(?string $password): void;
31 54
 
55
+    /**
56
+     * @return void
57
+     */
32 58
     public function subscribeToTheNewsletter(): void;
33 59
 }
Please login to merge, or discard this patch.