Completed
Push — to-be-a-hat-or-not-to-be-kuhwa ( 0fbf29 )
by Kamil
45:49
created
src/Sylius/Behat/Page/Admin/PaymentMethod/CreatePageInterface.php 1 patch
Doc Comments   +12 added lines patch added patch discarded remove patch
@@ -18,34 +18,46 @@
 block discarded – undo
18 18
  */
19 19
 interface CreatePageInterface extends BaseCreatePageInterface
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 $name
26 33
      * @param string $languageCode
34
+     * @return void
27 35
      */
28 36
     public function nameIt($name, $languageCode);
29 37
 
30 38
     /**
31 39
      * @param string $code
40
+     * @return void
32 41
      */
33 42
     public function specifyCode($code);
34 43
 
35 44
     /**
36 45
      * @param string $gateway
46
+     * @return void
37 47
      */
38 48
     public function chooseGateway($gateway);
39 49
 
40 50
     /**
41 51
      * @param string $description
42 52
      * @param string $languageCode
53
+     * @return void
43 54
      */
44 55
     public function describeIt($description, $languageCode);
45 56
 
46 57
     /**
47 58
      * @param string $instructions
48 59
      * @param string $languageCode
60
+     * @return void
49 61
      */
50 62
     public function setInstructions($instructions, $languageCode);
51 63
 
Please login to merge, or discard this patch.
Sylius/Behat/Page/Admin/Product/CreateConfigurableProductPageInterface.php 1 patch
Doc Comments   +4 added lines patch added patch discarded remove patch
@@ -36,11 +36,13 @@  discard block
 block discarded – undo
36 36
 
37 37
     /**
38 38
      * @param string $locale
39
+     * @return void
39 40
      */
40 41
     public function setCurrentLocale($locale);
41 42
 
42 43
     /**
43 44
      * @param string $locale
45
+     * @return void
44 46
      */
45 47
     public function setFallbackLocale($locale);
46 48
 
@@ -51,11 +53,13 @@  discard block
 block discarded – undo
51 53
 
52 54
     /**
53 55
      * @param TranslationInterface $translation
56
+     * @return void
54 57
      */
55 58
     public function addTranslation(TranslationInterface $translation);
56 59
 
57 60
     /**
58 61
      * @param TranslationInterface $translation
62
+     * @return void
59 63
      */
60 64
     public function removeTranslation(TranslationInterface $translation);
61 65
 }
Please login to merge, or discard this patch.
src/Sylius/Behat/Page/Admin/Product/CreateSimpleProductPageInterface.php 1 patch
Doc Comments   +6 added lines patch added patch discarded remove patch
@@ -32,16 +32,19 @@  discard block
 block discarded – undo
32 32
 
33 33
     /**
34 34
      * @param Collection $variants
35
+     * @return void
35 36
      */
36 37
     public function setVariants(Collection $variants);
37 38
 
38 39
     /**
39 40
      * @param VariantInterface $variant
41
+     * @return void
40 42
      */
41 43
     public function addVariant(VariantInterface $variant);
42 44
 
43 45
     /**
44 46
      * @param VariantInterface $variant
47
+     * @return void
45 48
      */
46 49
     public function removeVariant(VariantInterface $variant);
47 50
 
@@ -64,16 +67,19 @@  discard block
 block discarded – undo
64 67
 
65 68
     /**
66 69
      * @param Collection $options
70
+     * @return void
67 71
      */
68 72
     public function setOptions(Collection $options);
69 73
 
70 74
     /**
71 75
      * @param OptionInterface $option
76
+     * @return void
72 77
      */
73 78
     public function addOption(OptionInterface $option);
74 79
 
75 80
     /**
76 81
      * @param OptionInterface $option
82
+     * @return void
77 83
      */
78 84
     public function removeOption(OptionInterface $option);
79 85
 
Please login to merge, or discard this patch.
Sylius/Behat/Page/Admin/Product/UpdateConfigurableProductPageInterface.php 1 patch
Doc Comments   +8 added lines patch added patch discarded remove patch
@@ -27,6 +27,7 @@  discard block
 block discarded – undo
27 27
     /**
28 28
      * @param string $name
29 29
      * @param string $localeCode
30
+     * @return void
30 31
      */
31 32
     public function nameItIn($name, $localeCode);
32 33
 
@@ -49,6 +50,7 @@  discard block
 block discarded – undo
49 50
     
50 51
     /**
51 52
      * @param TaxonInterface $taxon
53
+     * @return void
52 54
      */
53 55
     public function selectMainTaxon(TaxonInterface $taxon);
54 56
 
@@ -62,20 +64,26 @@  discard block
 block discarded – undo
62 64
     /**
63 65
      * @param string $code
64 66
      * @param string $path
67
+     * @return void
65 68
      */
66 69
     public function attachImageWithCode($code, $path);
67 70
 
68 71
     /**
69 72
      * @param string $code
70 73
      * @param string $path
74
+     * @return void
71 75
      */
72 76
     public function changeImageWithCode($code, $path);
73 77
 
74 78
     /**
75 79
      * @param string $code
80
+     * @return void
76 81
      */
77 82
     public function removeImageWithCode($code);
78 83
 
84
+    /**
85
+     * @return void
86
+     */
79 87
     public function removeFirstImage();
80 88
 
81 89
     /**
Please login to merge, or discard this patch.
src/Sylius/Behat/Page/Admin/Product/UpdateSimpleProductPageInterface.php 1 patch
Doc Comments   +15 added lines patch added patch discarded remove patch
@@ -27,12 +27,14 @@  discard block
 block discarded – undo
27 27
     
28 28
     /**
29 29
      * @param int $price
30
+     * @return void
30 31
      */
31 32
     public function specifyPrice($price);
32 33
 
33 34
     /**
34 35
      * @param string $name
35 36
      * @param string $localeCode
37
+     * @return void
36 38
      */
37 39
     public function nameItIn($name, $localeCode);
38 40
 
@@ -59,11 +61,18 @@  discard block
 block discarded – undo
59 61
 
60 62
     /**
61 63
      * @param TaxonInterface $taxon
64
+     * @return void
62 65
      */
63 66
     public function selectMainTaxon(TaxonInterface $taxon);
64 67
 
68
+    /**
69
+     * @return void
70
+     */
65 71
     public function disableTracking();
66 72
 
73
+    /**
74
+     * @return void
75
+     */
67 76
     public function enableTracking();
68 77
 
69 78
     /**
@@ -81,20 +90,26 @@  discard block
 block discarded – undo
81 90
     /**
82 91
      * @param string $code
83 92
      * @param string $path
93
+     * @return void
84 94
      */
85 95
     public function attachImageWithCode($code, $path);
86 96
 
87 97
     /**
88 98
      * @param string $code
89 99
      * @param string $path
100
+     * @return void
90 101
      */
91 102
     public function changeImageWithCode($code, $path);
92 103
 
93 104
     /**
94 105
      * @param string $code
106
+     * @return void
95 107
      */
96 108
     public function removeImageWithCode($code);
97 109
 
110
+    /**
111
+     * @return void
112
+     */
98 113
     public function removeFirstImage();
99 114
 
100 115
     /**
Please login to merge, or discard this patch.
src/Sylius/Behat/Page/Admin/ProductVariant/CreatePageInterface.php 1 patch
Doc Comments   +4 added lines patch added patch discarded remove patch
@@ -36,11 +36,13 @@  discard block
 block discarded – undo
36 36
 
37 37
     /**
38 38
      * @param string $locale
39
+     * @return void
39 40
      */
40 41
     public function setCurrentLocale($locale);
41 42
 
42 43
     /**
43 44
      * @param string $locale
45
+     * @return void
44 46
      */
45 47
     public function setFallbackLocale($locale);
46 48
 
@@ -51,11 +53,13 @@  discard block
 block discarded – undo
51 53
 
52 54
     /**
53 55
      * @param TranslationInterface $translation
56
+     * @return void
54 57
      */
55 58
     public function addTranslation(TranslationInterface $translation);
56 59
 
57 60
     /**
58 61
      * @param TranslationInterface $translation
62
+     * @return void
59 63
      */
60 64
     public function removeTranslation(TranslationInterface $translation);
61 65
 }
Please login to merge, or discard this patch.
src/Sylius/Behat/Page/Admin/ProductVariant/UpdatePageInterface.php 1 patch
Doc Comments   +7 added lines patch added patch discarded remove patch
@@ -23,10 +23,17 @@
 block discarded – undo
23 23
 
24 24
     /**
25 25
      * @param bool $enabled
26
+     * @return void
26 27
      */
27 28
     public function setEnabled($enabled);
28 29
 
30
+    /**
31
+     * @return void
32
+     */
29 33
     public function enable();
30 34
 
35
+    /**
36
+     * @return void
37
+     */
31 38
     public function disable();
32 39
 }
Please login to merge, or discard this patch.
src/Sylius/Behat/Page/Admin/Route/CreatePageInterface.php 1 patch
Doc Comments   +2 added lines patch added patch discarded remove patch
@@ -27,6 +27,7 @@  discard block
 block discarded – undo
27 27
 
28 28
     /**
29 29
      * @param OptionInterface $option
30
+     * @return void
30 31
      */
31 32
     public function setOption(OptionInterface $option = null);
32 33
 
@@ -41,6 +42,7 @@  discard block
 block discarded – undo
41 42
      * Set internal value.
42 43
      *
43 44
      * @param string $value
45
+     * @return void
44 46
      */
45 47
     public function setValue($value);
46 48
 
Please login to merge, or discard this patch.
src/Sylius/Behat/Page/Admin/Route/UpdatePageInterface.php 1 patch
Doc Comments   +1 added lines patch added patch discarded remove patch
@@ -27,6 +27,7 @@
 block discarded – undo
27 27
 
28 28
     /**
29 29
      * @param string $value
30
+     * @return void
30 31
      */
31 32
     public function setValue($value);
32 33
 }
Please login to merge, or discard this patch.