Completed
Push — phpspec-7 ( 2faf6a )
by Kamil
62:22 queued 34:00
created
src/Sylius/Behat/Page/Admin/ShippingMethod/UpdatePageInterface.php 1 patch
Doc Comments   +9 added lines patch added patch discarded remove patch
@@ -22,10 +22,19 @@
 block discarded – undo
22 22
 
23 23
     public function isAvailableInChannel(string $channelName): bool;
24 24
 
25
+    /**
26
+     * @return void
27
+     */
25 28
     public function enable(): void;
26 29
 
30
+    /**
31
+     * @return void
32
+     */
27 33
     public function disable(): void;
28 34
 
35
+    /**
36
+     * @return void
37
+     */
29 38
     public function removeZone(): void;
30 39
 
31 40
     /**
Please login to merge, or discard this patch.
src/Sylius/Behat/Page/Admin/TaxCategory/CreatePageInterface.php 1 patch
Doc Comments   +9 added lines patch added patch discarded remove patch
@@ -17,9 +17,18 @@
 block discarded – undo
17 17
 
18 18
 interface CreatePageInterface extends BaseCreatePageInterface
19 19
 {
20
+    /**
21
+     * @return void
22
+     */
20 23
     public function specifyCode(string $code): void;
21 24
 
25
+    /**
26
+     * @return void
27
+     */
22 28
     public function nameIt(string $name): void;
23 29
 
30
+    /**
31
+     * @return void
32
+     */
24 33
     public function describeItAs(string $description): void;
25 34
 }
Please login to merge, or discard this patch.
src/Sylius/Behat/Page/Admin/TaxCategory/UpdatePageInterface.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -19,5 +19,8 @@
 block discarded – undo
19 19
 {
20 20
     public function isCodeDisabled(): bool;
21 21
 
22
+    /**
23
+     * @return void
24
+     */
22 25
     public function nameIt(string $name): void;
23 26
 }
Please login to merge, or discard this patch.
src/Sylius/Behat/Page/Admin/Taxon/UpdatePage.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -260,6 +260,9 @@
 block discarded – undo
260 260
         return $images->findAll('css', 'div[data-form-collection="item"]');
261 261
     }
262 262
 
263
+    /**
264
+     * @return string
265
+     */
263 266
     private function getImageElementByType(string $type): ?NodeElement
264 267
     {
265 268
         $images = $this->getElement('images');
Please login to merge, or discard this patch.
src/Sylius/Behat/Page/Admin/TaxRate/CreatePageInterface.php 1 patch
Doc Comments   +21 added lines patch added patch discarded remove patch
@@ -17,17 +17,38 @@
 block discarded – undo
17 17
 
18 18
 interface CreatePageInterface extends BaseCreatePageInterface
19 19
 {
20
+    /**
21
+     * @return void
22
+     */
20 23
     public function specifyCode(string $code): void;
21 24
 
25
+    /**
26
+     * @return void
27
+     */
22 28
     public function nameIt(string $name): void;
23 29
 
30
+    /**
31
+     * @return void
32
+     */
24 33
     public function specifyAmount(string $amount): void;
25 34
 
35
+    /**
36
+     * @return void
37
+     */
26 38
     public function chooseZone(string $name): void;
27 39
 
40
+    /**
41
+     * @return void
42
+     */
28 43
     public function chooseCategory(string $name): void;
29 44
 
45
+    /**
46
+     * @return void
47
+     */
30 48
     public function chooseCalculator(string $name): void;
31 49
 
50
+    /**
51
+     * @return void
52
+     */
32 53
     public function chooseIncludedInPrice(): void;
33 54
 }
Please login to merge, or discard this patch.
src/Sylius/Behat/Page/Admin/TaxRate/UpdatePageInterface.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -19,5 +19,8 @@
 block discarded – undo
19 19
 {
20 20
     public function isCodeDisabled(): bool;
21 21
 
22
+    /**
23
+     * @return void
24
+     */
22 25
     public function removeZone(): void;
23 26
 }
Please login to merge, or discard this patch.
src/Sylius/Behat/Page/Admin/Zone/CreatePageInterface.php 1 patch
Doc Comments   +15 added lines patch added patch discarded remove patch
@@ -17,19 +17,34 @@
 block discarded – undo
17 17
 
18 18
 interface CreatePageInterface extends BaseCreatePageInterface
19 19
 {
20
+    /**
21
+     * @return void
22
+     */
20 23
     public function addMember(): void;
21 24
 
22 25
     public function checkValidationMessageForMembers(string $message): bool;
23 26
 
27
+    /**
28
+     * @return void
29
+     */
24 30
     public function chooseMember(string $name): void;
25 31
 
32
+    /**
33
+     * @return void
34
+     */
26 35
     public function selectScope(string $scope): void;
27 36
 
28 37
     public function hasType(string $type): bool;
29 38
 
30 39
     public function isTypeFieldDisabled(): bool;
31 40
 
41
+    /**
42
+     * @return void
43
+     */
32 44
     public function nameIt(string $name): void;
33 45
 
46
+    /**
47
+     * @return void
48
+     */
34 49
     public function specifyCode(string $code): void;
35 50
 }
Please login to merge, or discard this patch.
src/Sylius/Behat/Page/Admin/Zone/UpdatePageInterface.php 1 patch
Doc Comments   +6 added lines patch added patch discarded remove patch
@@ -18,6 +18,9 @@  discard block
 block discarded – undo
18 18
 
19 19
 interface UpdatePageInterface extends BaseUpdatePageInterface
20 20
 {
21
+    /**
22
+     * @return void
23
+     */
21 24
     public function nameIt(string $name): void;
22 25
 
23 26
     public function countMembers(): int;
@@ -28,5 +31,8 @@  discard block
 block discarded – undo
28 31
 
29 32
     public function isCodeDisabled(): bool;
30 33
 
34
+    /**
35
+     * @return void
36
+     */
31 37
     public function removeMember(ZoneMemberInterface $zoneMember): void;
32 38
 }
Please login to merge, or discard this patch.
src/Sylius/Behat/Page/Admin/Product/UpdateSimpleProductPage.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -192,6 +192,9 @@
 block discarded – undo
192 192
         }
193 193
     }
194 194
 
195
+    /**
196
+     * @return string
197
+     */
195 198
     private function getImageElementByType(string $type): ?NodeElement
196 199
     {
197 200
         $images = $this->getElement('images');
Please login to merge, or discard this patch.