Completed
Push — 1.3 ( ea96f1...08f6de )
by Kamil
13:44
created
src/Sylius/Behat/Context/Transform/TaxonContext.php 1 patch
Doc Comments   +1 added lines patch added patch discarded remove patch
@@ -37,6 +37,7 @@
 block discarded – undo
37 37
      * @Transform /^taxon with "([^"]+)" name/
38 38
      * @Transform /^taxon "([^"]+)"$/
39 39
      * @Transform :taxon
40
+     * @param string $name
40 41
      */
41 42
     public function getTaxonByName($name)
42 43
     {
Please login to merge, or discard this patch.
src/Sylius/Behat/Page/Admin/ProductVariant/UpdatePageInterface.php 1 patch
Doc Comments   +15 added lines patch added patch discarded remove patch
@@ -19,8 +19,14 @@  discard block
 block discarded – undo
19 19
 
20 20
 interface UpdatePageInterface extends BaseUpdatePageInterface
21 21
 {
22
+    /**
23
+     * @return void
24
+     */
22 25
     public function disableTracking(): void;
23 26
 
27
+    /**
28
+     * @return void
29
+     */
24 30
     public function enableTracking(): void;
25 31
 
26 32
     public function isCodeDisabled(): bool;
@@ -39,9 +45,18 @@  discard block
 block discarded – undo
39 45
 
40 46
     public function getNameInLanguage(string $language): string;
41 47
 
48
+    /**
49
+     * @return void
50
+     */
42 51
     public function selectOption(string $optionName, string $optionValue): void;
43 52
 
53
+    /**
54
+     * @return void
55
+     */
44 56
     public function specifyCurrentStock(int $amount): void;
45 57
 
58
+    /**
59
+     * @return void
60
+     */
46 61
     public function specifyPrice(int $price): void;
47 62
 }
Please login to merge, or discard this patch.