Completed
Push — php-73 ( 5c1258 )
by Kamil
99:15 queued 79:09
created
src/Sylius/Behat/Page/Shop/Contact/ContactPageInterface.php 1 patch
Doc Comments   +9 added lines patch added patch discarded remove patch
@@ -17,10 +17,19 @@
 block discarded – undo
17 17
 
18 18
 interface ContactPageInterface extends PageInterface
19 19
 {
20
+    /**
21
+     * @return void
22
+     */
20 23
     public function specifyEmail(?string $email): void;
21 24
 
25
+    /**
26
+     * @return void
27
+     */
22 28
     public function specifyMessage(?string $message): void;
23 29
 
30
+    /**
31
+     * @return void
32
+     */
24 33
     public function send(): void;
25 34
 
26 35
     public function getValidationMessageFor(string $element): string;
Please login to merge, or discard this patch.
src/Sylius/Behat/Page/Shop/HomePageInterface.php 1 patch
Doc Comments   +9 added lines patch added patch discarded remove patch
@@ -21,6 +21,9 @@  discard block
 block discarded – undo
21 21
 
22 22
     public function hasLogoutButton(): bool;
23 23
 
24
+    /**
25
+     * @return void
26
+     */
24 27
     public function logOut();
25 28
 
26 29
     public function getFullName(): string;
@@ -29,12 +32,18 @@  discard block
 block discarded – undo
29 32
 
30 33
     public function getAvailableCurrencies(): array;
31 34
 
35
+    /**
36
+     * @return void
37
+     */
32 38
     public function switchCurrency(string $currencyCode): void;
33 39
 
34 40
     public function getActiveLocale(): string;
35 41
 
36 42
     public function getAvailableLocales(): array;
37 43
 
44
+    /**
45
+     * @return void
46
+     */
38 47
     public function switchLocale(string $localeCode): void;
39 48
 
40 49
     public function getLatestProductsNames(): array;
Please login to merge, or discard this patch.
src/Sylius/Behat/Page/Shop/Order/ShowPageInterface.php 1 patch
Doc Comments   +6 added lines patch added patch discarded remove patch
@@ -19,8 +19,14 @@
 block discarded – undo
19 19
 {
20 20
     public function hasPayAction(): bool;
21 21
 
22
+    /**
23
+     * @return void
24
+     */
22 25
     public function pay(): void;
23 26
 
27
+    /**
28
+     * @return void
29
+     */
24 30
     public function choosePaymentMethod(string $paymentMethodName): void;
25 31
 
26 32
     public function getNotifications(): array;
Please login to merge, or discard this patch.
src/Sylius/Behat/Page/Shop/Order/ThankYouPageInterface.php 1 patch
Doc Comments   +9 added lines patch added patch discarded remove patch
@@ -17,8 +17,14 @@  discard block
 block discarded – undo
17 17
 
18 18
 interface ThankYouPageInterface extends SymfonyPageInterface
19 19
 {
20
+    /**
21
+     * @return void
22
+     */
20 23
     public function goToTheChangePaymentMethodPage(): void;
21 24
 
25
+    /**
26
+     * @return void
27
+     */
22 28
     public function goToOrderDetailsInAccount(): void;
23 29
 
24 30
     public function hasThankYouMessage(): bool;
@@ -31,5 +37,8 @@  discard block
 block discarded – undo
31 37
 
32 38
     public function hasRegistrationButton(): bool;
33 39
 
40
+    /**
41
+     * @return void
42
+     */
34 43
     public function createAccount(): void;
35 44
 }
Please login to merge, or discard this patch.