Completed
Branch master (429264)
by Kamil
37:02
created
src/Sylius/Behat/Page/Admin/Crud/CreatePageInterface.php 1 patch
Doc Comments   +1 added lines patch added patch discarded remove patch
@@ -29,6 +29,7 @@
 block discarded – undo
29 29
 
30 30
     /**
31 31
      * @throws ElementNotFoundException
32
+     * @return void
32 33
      */
33 34
     public function create();
34 35
 }
Please login to merge, or discard this patch.
src/Sylius/Behat/Page/Admin/Crud/UpdatePageInterface.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -33,5 +33,8 @@
 block discarded – undo
33 33
      */
34 34
     public function hasResourceValues(array $parameters);
35 35
 
36
+    /**
37
+     * @return void
38
+     */
36 39
     public function saveChanges();
37 40
 }
Please login to merge, or discard this patch.
src/Sylius/Behat/Page/Admin/Currency/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 $name
23
+     * @return void
23 24
      */
24 25
     public function chooseName($name);
25 26
 
26 27
     /**
27 28
      * @param float $exchangeRate
29
+     * @return void
28 30
      */
29 31
     public function specifyExchangeRate($exchangeRate);
30 32
 }
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,11 +18,19 @@
 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
     /**
25 32
      * @param string $exchangeRate
33
+     * @return void
26 34
      */
27 35
     public function changeExchangeRate($exchangeRate);
28 36
 
Please login to merge, or discard this patch.
src/Sylius/Behat/Page/Admin/Customer/CreatePageInterface.php 1 patch
Doc Comments   +9 added lines patch added patch discarded remove patch
@@ -20,33 +20,42 @@
 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
 
57
+    /**
58
+     * @return void
59
+     */
51 60
     public function selectCreateAccount();
52 61
 }
Please login to merge, or discard this patch.
src/Sylius/Behat/Page/Admin/Customer/ShowPageInterface.php 1 patch
Doc Comments   +1 added lines patch added patch discarded remove patch
@@ -31,6 +31,7 @@
 block discarded – undo
31 31
      * Deletes the user on whose show page we are currently on.
32 32
      *
33 33
      * @throws ElementNotFoundException If there is no delete account button on the page
34
+     * @return void
34 35
      */
35 36
     public function deleteAccount();
36 37
 }
Please login to merge, or discard this patch.
src/Sylius/Behat/Page/Admin/Customer/UpdatePageInterface.php 1 patch
Doc Comments   +10 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
     /**
@@ -28,6 +35,7 @@  discard block
 block discarded – undo
28 35
     
29 36
     /**
30 37
      * @param string $firstName
38
+     * @return void
31 39
      */
32 40
     public function changeFirstName($firstName);
33 41
 
@@ -38,6 +46,7 @@  discard block
 block discarded – undo
38 46
 
39 47
     /**
40 48
      * @param string $lastName
49
+     * @return void
41 50
      */
42 51
     public function changeLastName($lastName);
43 52
 
@@ -48,6 +57,7 @@  discard block
 block discarded – undo
48 57
 
49 58
     /**
50 59
      * @param string $email
60
+     * @return void
51 61
      */
52 62
     public function changeEmail($email);
53 63
 
Please login to merge, or discard this patch.
src/Sylius/Behat/Page/Admin/Locale/CreatePageInterface.php 1 patch
Doc Comments   +1 added lines patch added patch discarded remove patch
@@ -23,6 +23,7 @@
 block discarded – undo
23 23
      * @param string $name
24 24
      *
25 25
      * @throws ElementNotFoundException
26
+     * @return void
26 27
      */
27 28
     public function chooseName($name);
28 29
 
Please login to merge, or discard this patch.
src/Sylius/Behat/Page/Admin/Locale/UpdatePageInterface.php 1 patch
Doc Comments   +7 added lines patch added patch discarded remove patch
@@ -18,6 +18,13 @@
 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
 }
Please login to merge, or discard this patch.