Completed
Push — 1.3-make-js-behat-faster ( 85e122 )
by Kamil
09:41
created
src/Sylius/Behat/Page/Admin/ProductAttribute/CreatePageInterface.php 1 patch
Doc Comments   +18 added lines patch added patch discarded remove patch
@@ -18,18 +18,36 @@
 block discarded – undo
18 18
 
19 19
 interface CreatePageInterface extends BaseCreatePageInterface
20 20
 {
21
+    /**
22
+     * @return void
23
+     */
21 24
     public function specifyCode(string $code): void;
22 25
 
26
+    /**
27
+     * @return void
28
+     */
23 29
     public function nameIt(string $name, string $language): void;
24 30
 
25 31
     public function isTypeDisabled(): bool;
26 32
 
33
+    /**
34
+     * @return void
35
+     */
27 36
     public function addAttributeValue(string $value, string $localeCode): void;
28 37
 
38
+    /**
39
+     * @return void
40
+     */
29 41
     public function specifyMinValue(int $min): void;
30 42
 
43
+    /**
44
+     * @return void
45
+     */
31 46
     public function specifyMaxValue(int $max): void;
32 47
 
48
+    /**
49
+     * @return void
50
+     */
33 51
     public function checkMultiple(): void;
34 52
 
35 53
     /**
Please login to merge, or discard this patch.
src/Sylius/Behat/Page/Admin/ProductAttribute/UpdatePageInterface.php 1 patch
Doc Comments   +12 added lines patch added patch discarded remove patch
@@ -17,17 +17,29 @@
 block discarded – undo
17 17
 
18 18
 interface UpdatePageInterface extends BaseUpdatePageInterface
19 19
 {
20
+    /**
21
+     * @return void
22
+     */
20 23
     public function changeName(string $name, string $language): void;
21 24
 
22 25
     public function isCodeDisabled(): bool;
23 26
 
24 27
     public function isTypeDisabled(): bool;
25 28
 
29
+    /**
30
+     * @return void
31
+     */
26 32
     public function changeAttributeValue(string $oldValue, string $newValue): void;
27 33
 
28 34
     public function hasAttributeValue(string $value): bool;
29 35
 
36
+    /**
37
+     * @return void
38
+     */
30 39
     public function addAttributeValue(string $value, string $localeCode): void;
31 40
 
41
+    /**
42
+     * @return void
43
+     */
32 44
     public function deleteAttributeValue(string $value): void;
33 45
 }
Please login to merge, or discard this patch.
src/Sylius/Behat/Page/Admin/ProductOption/CreatePageInterface.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 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 nameItIn(string $name, string $language): void;
23 29
 
30
+    /**
31
+     * @return void
32
+     */
24 33
     public function addOptionValue(string $code, string $value): void;
25 34
 
26 35
     public function checkValidationMessageForOptionValues(string $message): bool;
Please login to merge, or discard this patch.
src/Sylius/Behat/Page/Admin/ProductOption/UpdatePageInterface.php 1 patch
Doc Comments   +9 added lines patch added patch discarded remove patch
@@ -19,11 +19,20 @@
 block discarded – undo
19 19
 {
20 20
     public function isCodeDisabled(): bool;
21 21
 
22
+    /**
23
+     * @return void
24
+     */
22 25
     public function nameItIn(string $name, string $languageCode): void;
23 26
 
24 27
     public function isThereOptionValue(string $optionValue): bool;
25 28
 
29
+    /**
30
+     * @return void
31
+     */
26 32
     public function addOptionValue(string $code, string $value): void;
27 33
 
34
+    /**
35
+     * @return void
36
+     */
28 37
     public function removeOptionValue(string $optionValue): void;
29 38
 }
Please login to merge, or discard this patch.
src/Sylius/Behat/Page/Admin/ProductReview/IndexPageInterface.php 1 patch
Doc Comments   +6 added lines patch added patch discarded remove patch
@@ -17,7 +17,13 @@
 block discarded – undo
17 17
 
18 18
 interface IndexPageInterface extends BaseIndexPageInterface
19 19
 {
20
+    /**
21
+     * @return void
22
+     */
20 23
     public function accept(array $parameters): void;
21 24
 
25
+    /**
26
+     * @return void
27
+     */
22 28
     public function reject(array $parameters): void;
23 29
 }
Please login to merge, or discard this patch.
src/Sylius/Behat/Page/Admin/ProductReview/UpdatePageInterface.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 UpdatePageInterface extends BaseUpdatePageInterface
19 19
 {
20
+    /**
21
+     * @return void
22
+     */
20 23
     public function specifyTitle(string $title): void;
21 24
 
25
+    /**
26
+     * @return void
27
+     */
22 28
     public function specifyComment(string $comment): void;
23 29
 
30
+    /**
31
+     * @return void
32
+     */
24 33
     public function chooseRating(string $rating): void;
25 34
 
26 35
     public function getRating(): string;
Please login to merge, or discard this patch.
src/Sylius/Behat/Page/Admin/ProductVariant/CreatePageInterface.php 1 patch
Doc Comments   +30 added lines patch added patch discarded remove patch
@@ -17,27 +17,57 @@
 block discarded – undo
17 17
 
18 18
 interface CreatePageInterface extends BaseCreatePageInterface
19 19
 {
20
+    /**
21
+     * @return void
22
+     */
20 23
     public function specifyPrice(string $price, string $channelName): void;
21 24
 
25
+    /**
26
+     * @return void
27
+     */
22 28
     public function specifyOriginalPrice(string $originalPrice, string $channelName): void;
23 29
 
30
+    /**
31
+     * @return void
32
+     */
24 33
     public function specifyHeightWidthDepthAndWeight(string $height, string $width, string $depth, string $weight): void;
25 34
 
35
+    /**
36
+     * @return void
37
+     */
26 38
     public function specifyCode(string $code): void;
27 39
 
40
+    /**
41
+     * @return void
42
+     */
28 43
     public function specifyCurrentStock(string $currentStock): void;
29 44
 
45
+    /**
46
+     * @return void
47
+     */
30 48
     public function nameItIn(string $name, string $language): void;
31 49
 
50
+    /**
51
+     * @return void
52
+     */
32 53
     public function selectOption(string $optionName, string $optionValue): void;
33 54
 
55
+    /**
56
+     * @return void
57
+     */
34 58
     public function choosePricingCalculator(string $name): void;
35 59
 
36 60
     public function getValidationMessageForForm(): string;
37 61
 
62
+    /**
63
+     * @return void
64
+     */
38 65
     public function selectShippingCategory(string $shippingCategoryName): void;
39 66
 
40 67
     public function getPricesValidationMessage(): string;
41 68
 
69
+    /**
70
+     * @return void
71
+     */
42 72
     public function setShippingRequired(bool $isShippingRequired): void;
43 73
 }
Please login to merge, or discard this patch.
src/Sylius/Behat/Page/Admin/ProductVariant/GeneratePageInterface.php 1 patch
Doc Comments   +12 added lines patch added patch discarded remove patch
@@ -17,12 +17,24 @@
 block discarded – undo
17 17
 
18 18
 interface GeneratePageInterface extends SymfonyPageInterface
19 19
 {
20
+    /**
21
+     * @return void
22
+     */
20 23
     public function generate(): void;
21 24
 
25
+    /**
26
+     * @return void
27
+     */
22 28
     public function specifyPrice(int $nth, int $price, string $channelName): void;
23 29
 
30
+    /**
31
+     * @return void
32
+     */
24 33
     public function specifyCode(int $nth, string $code): void;
25 34
 
35
+    /**
36
+     * @return void
37
+     */
26 38
     public function removeVariant(int $nth): void;
27 39
 
28 40
     public function getValidationMessage(string $element, int $position): string;
Please login to merge, or discard this patch.
src/Sylius/Behat/Page/Admin/ProductVariant/IndexPageInterface.php 1 patch
Doc Comments   +6 added lines patch added patch discarded remove patch
@@ -22,7 +22,13 @@
 block discarded – undo
22 22
 
23 23
     public function getOnHoldQuantityFor(ProductVariantInterface $productVariant): int;
24 24
 
25
+    /**
26
+     * @return void
27
+     */
25 28
     public function setPosition(string $name, int $position): void;
26 29
 
30
+    /**
31
+     * @return void
32
+     */
27 33
     public function savePositions(): void;
28 34
 }
Please login to merge, or discard this patch.