Completed
Push — snake-case-tests ( 55729f )
by Kamil
87:29 queued 51:35
created
src/Sylius/Behat/Page/Admin/Account/LoginPageInterface.php 1 patch
Doc Comments   +5 added lines patch added patch discarded remove patch
@@ -25,15 +25,20 @@
 block discarded – undo
25 25
      */
26 26
     public function hasValidationErrorWith($message);
27 27
 
28
+    /**
29
+     * @return void
30
+     */
28 31
     public function logIn();
29 32
 
30 33
     /**
31 34
      * @param string $password
35
+     * @return void
32 36
      */
33 37
     public function specifyPassword($password);
34 38
 
35 39
     /**
36 40
      * @param string $username
41
+     * @return void
37 42
      */
38 43
     public function specifyUsername($username);
39 44
 }
Please login to merge, or discard this patch.
src/Sylius/Behat/Page/Admin/Administrator/CreatePageInterface.php 1 patch
Doc Comments   +7 added lines patch added patch discarded remove patch
@@ -18,25 +18,32 @@
 block discarded – undo
18 18
  */
19 19
 interface CreatePageInterface extends BaseCreatePageInterface
20 20
 {
21
+    /**
22
+     * @return void
23
+     */
21 24
     public function enable();
22 25
 
23 26
     /**
24 27
      * @param string $username
28
+     * @return void
25 29
      */
26 30
     public function specifyUsername($username);
27 31
 
28 32
     /**
29 33
      * @param string $email
34
+     * @return void
30 35
      */
31 36
     public function specifyEmail($email);
32 37
 
33 38
     /**
34 39
      * @param string $password
40
+     * @return void
35 41
      */
36 42
     public function specifyPassword($password);
37 43
 
38 44
     /**
39 45
      * @param string $localeCode
46
+     * @return void
40 47
      */
41 48
     public function specifyLocale($localeCode);
42 49
 }
Please login to merge, or discard this patch.
src/Sylius/Behat/Page/Admin/Administrator/UpdatePageInterface.php 1 patch
Doc Comments   +4 added lines patch added patch discarded remove patch
@@ -20,21 +20,25 @@
 block discarded – undo
20 20
 {
21 21
     /**
22 22
      * @param string $username
23
+     * @return void
23 24
      */
24 25
     public function changeUsername($username);
25 26
 
26 27
     /**
27 28
      * @param string $email
29
+     * @return void
28 30
      */
29 31
     public function changeEmail($email);
30 32
 
31 33
     /**
32 34
      * @param string $password
35
+     * @return void
33 36
      */
34 37
     public function changePassword($password);
35 38
 
36 39
     /**
37 40
      * @param string $localeCode
41
+     * @return void
38 42
      */
39 43
     public function changeLocale($localeCode);
40 44
 }
Please login to merge, or discard this patch.
src/Sylius/Behat/Page/Admin/Channel/UpdatePageInterface.php 1 patch
Doc Comments   +12 added lines patch added patch discarded remove patch
@@ -19,17 +19,25 @@  discard block
 block discarded – undo
19 19
  */
20 20
 interface UpdatePageInterface extends BaseUpdatePageInterface
21 21
 {
22
+    /**
23
+     * @return void
24
+     */
22 25
     public function enable();
23 26
 
27
+    /**
28
+     * @return void
29
+     */
24 30
     public function disable();
25 31
 
26 32
     /**
27 33
      * @param string $themeName
34
+     * @return void
28 35
      */
29 36
     public function setTheme($themeName);
30 37
 
31 38
     /**
32 39
      * @throws ElementNotFoundException
40
+     * @return void
33 41
      */
34 42
     public function unsetTheme();
35 43
 
@@ -40,6 +48,7 @@  discard block
 block discarded – undo
40 48
 
41 49
     /**
42 50
      * @param string $language
51
+     * @return void
43 52
      */
44 53
     public function chooseLocale($language);
45 54
 
@@ -52,6 +61,7 @@  discard block
 block discarded – undo
52 61
 
53 62
     /**
54 63
      * @param string $currencyCode
64
+     * @return void
55 65
      */
56 66
     public function chooseCurrency($currencyCode);
57 67
 
@@ -64,11 +74,13 @@  discard block
 block discarded – undo
64 74
 
65 75
     /**
66 76
      * @param string $taxZone
77
+     * @return void
67 78
      */
68 79
     public function chooseDefaultTaxZone($taxZone);
69 80
 
70 81
     /**
71 82
      * @param string $taxCalculationStrategy
83
+     * @return void
72 84
      */
73 85
     public function chooseTaxCalculationStrategy($taxCalculationStrategy);
74 86
 
Please login to merge, or discard this patch.
src/Sylius/Behat/Page/Admin/Crud/IndexPageInterface.php 1 patch
Doc Comments   +4 added lines patch added patch discarded remove patch
@@ -43,6 +43,7 @@  discard block
 block discarded – undo
43 43
 
44 44
     /**
45 45
      * @param string $fieldName
46
+     * @return void
46 47
      */
47 48
     public function sortBy($fieldName);
48 49
 
@@ -65,5 +66,8 @@  discard block
 block discarded – undo
65 66
      */
66 67
     public function countItems();
67 68
 
69
+    /**
70
+     * @return void
71
+     */
68 72
     public function filter();
69 73
 }
Please login to merge, or discard this patch.
src/Sylius/Behat/Page/Admin/Currency/UpdatePageInterface.php 1 patch
Doc Comments   +8 added lines patch added patch discarded remove patch
@@ -18,7 +18,14 @@  discard block
 block discarded – undo
18 18
  */
19 19
 interface UpdatePageInterface extends BaseUpdatePageInterface
20 20
 {
21
+    /**
22
+     * @return void
23
+     */
21 24
     public function enable();
25
+
26
+    /**
27
+     * @return void
28
+     */
22 29
     public function disable();
23 30
 
24 31
     /**
@@ -33,6 +40,7 @@  discard block
 block discarded – undo
33 40
 
34 41
     /**
35 42
      * @param string $exchangeRate
43
+     * @return void
36 44
      */
37 45
     public function changeExchangeRate($exchangeRate);
38 46
 
Please login to merge, or discard this patch.
src/Sylius/Behat/Page/Admin/Customer/CreatePageInterface.php 1 patch
Doc Comments   +10 added lines patch added patch discarded remove patch
@@ -20,39 +20,49 @@
 block discarded – undo
20 20
 {
21 21
     /**
22 22
      * @param string $name
23
+     * @return void
23 24
      */
24 25
     public function specifyFirstName($name);
25 26
 
26 27
     /**
27 28
      * @param string $name
29
+     * @return void
28 30
      */
29 31
     public function specifyLastName($name);
30 32
 
31 33
     /**
32 34
      * @param string $email
35
+     * @return void
33 36
      */
34 37
     public function specifyEmail($email);
35 38
 
36 39
     /**
37 40
      * @param string $birthday
41
+     * @return void
38 42
      */
39 43
     public function specifyBirthday($birthday);
40 44
 
41 45
     /**
42 46
      * @param string $password
47
+     * @return void
43 48
      */
44 49
     public function specifyPassword($password);
45 50
 
46 51
     /**
47 52
      * @param string $gender
53
+     * @return void
48 54
      */
49 55
     public function chooseGender($gender);
50 56
 
51 57
     /**
52 58
      * @param string $group
59
+     * @return void
53 60
      */
54 61
     public function chooseGroup($group);
55 62
 
63
+    /**
64
+     * @return void
65
+     */
56 66
     public function selectCreateAccount();
57 67
 
58 68
     /**
Please login to merge, or discard this patch.
src/Sylius/Behat/Page/Admin/Customer/ShowPageInterface.php 1 patch
Doc Comments   +4 added lines patch added patch discarded remove patch
@@ -26,6 +26,7 @@  discard block
 block discarded – undo
26 26
 
27 27
     /**
28 28
      * @throws ElementNotFoundException If there is no delete account button on the page
29
+     * @return void
29 30
      */
30 31
     public function deleteAccount();
31 32
 
@@ -86,6 +87,9 @@  discard block
 block discarded – undo
86 87
      */
87 88
     public function hasImpersonateButton();
88 89
 
90
+    /**
91
+     * @return void
92
+     */
89 93
     public function impersonate();
90 94
 
91 95
     /**
Please login to merge, or discard this patch.
src/Sylius/Behat/Page/Admin/CustomerGroup/CreatePageInterface.php 1 patch
Doc Comments   +2 added lines patch added patch discarded remove patch
@@ -20,11 +20,13 @@
 block discarded – undo
20 20
 {
21 21
     /**
22 22
      * @param string $code
23
+     * @return void
23 24
      */
24 25
     public function specifyCode($code);
25 26
 
26 27
     /**
27 28
      * @param string $name
29
+     * @return void
28 30
      */
29 31
     public function nameIt($name);
30 32
 }
Please login to merge, or discard this patch.