Completed
Push — custom-email-per-channel ( 493eee...46b72f )
by Kamil
05:31
created
src/Sylius/Behat/Page/Shop/Account/RequestPasswordResetPageInterface.php 1 patch
Doc Comments   +6 added lines patch added patch discarded remove patch
@@ -19,7 +19,13 @@
 block discarded – undo
19 19
 {
20 20
     public function checkValidationMessageFor(string $element, string $message): bool;
21 21
 
22
+    /**
23
+     * @return void
24
+     */
22 25
     public function reset(): void;
23 26
 
27
+    /**
28
+     * @return void
29
+     */
24 30
     public function specifyEmail(?string $email): void;
25 31
 }
Please login to merge, or discard this patch.
src/Sylius/Behat/Page/Shop/HomePageInterface.php 1 patch
Doc Comments   +5 added lines patch added patch discarded remove patch
@@ -24,6 +24,9 @@  discard block
 block discarded – undo
24 24
 
25 25
     public function hasLogoutButton(): bool;
26 26
 
27
+    /**
28
+     * @return void
29
+     */
27 30
     public function logOut();
28 31
 
29 32
     /**
@@ -43,6 +46,7 @@  discard block
 block discarded – undo
43 46
 
44 47
     /**
45 48
      * @param string $currencyCode
49
+     * @return void
46 50
      */
47 51
     public function switchCurrency($currencyCode);
48 52
 
@@ -58,6 +62,7 @@  discard block
 block discarded – undo
58 62
 
59 63
     /**
60 64
      * @param string $localeCode
65
+     * @return void
61 66
      */
62 67
     public function switchLocale($localeCode);
63 68
 
Please login to merge, or discard this patch.
src/Sylius/Bundle/UiBundle/Twig/TestFormAttributeExtension.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -36,7 +36,7 @@
 block discarded – undo
36 36
                 'sylius_test_form_attribute',
37 37
                 function (string $name, ?string $value = null): array {
38 38
                     if (strpos($this->env, 'test') === 0) {
39
-                        return ['attr' => ['data-test-'.$name => (string) $value]];
39
+                        return ['attr' => ['data-test-' . $name => (string) $value]];
40 40
                     }
41 41
 
42 42
                     return [];
Please login to merge, or discard this patch.