Completed
Push — remove-content-bundle ( 201341...8d07b3 )
by Kamil
52:29 queued 32:39
created
src/Sylius/Behat/Page/Admin/Product/CreateSimpleProductPageInterface.php 1 patch
Doc Comments   +12 added lines patch added patch discarded remove patch
@@ -21,53 +21,65 @@
 block discarded – undo
21 21
 {
22 22
     /**
23 23
      * @param int $price
24
+     * @return void
24 25
      */
25 26
     public function specifyPrice($price);
26 27
     
27 28
     /**
28 29
      * @param string $code
30
+     * @return void
29 31
      */
30 32
     public function specifyCode($code);
31 33
 
32 34
     /**
33 35
      * @param string $name
34 36
      * @param string $localeCode
37
+     * @return void
35 38
      */
36 39
     public function nameItIn($name, $localeCode);
37 40
 
38 41
     /**
39 42
      * @param string $slug
43
+     * @return void
40 44
      */
41 45
     public function specifySlug($slug);
42 46
 
43 47
     /**
44 48
      * @param string $attribute
45 49
      * @param string $value
50
+     * @return void
46 51
      */
47 52
     public function addAttribute($attribute, $value);
48 53
 
49 54
     /**
50 55
      * @param string $attribute
56
+     * @return void
51 57
      */
52 58
     public function removeAttribute($attribute);
53 59
 
54 60
     /**
55 61
      * @param string $path
56 62
      * @param string $code
63
+     * @return void
57 64
      */
58 65
     public function attachImage($path, $code = null);
59 66
 
67
+    /**
68
+     * @return void
69
+     */
60 70
     public function enableSlugModification();
61 71
 
62 72
     /**
63 73
      * @param ProductAssociationTypeInterface $productAssociationType
64 74
      * @param string[] $productsNames
75
+     * @return void
65 76
      */
66 77
     public function associateProducts(ProductAssociationTypeInterface $productAssociationType, array $productsNames);
67 78
 
68 79
     /**
69 80
      * @param string $productName
70 81
      * @param ProductAssociationTypeInterface $productAssociationType
82
+     * @return void
71 83
      */
72 84
     public function removeAssociatedProduct($productName, ProductAssociationTypeInterface $productAssociationType);
73 85
 }
Please login to merge, or discard this patch.
src/Sylius/Behat/Page/Admin/Product/UpdateSimpleProductPageInterface.php 1 patch
Doc Comments   +17 added lines patch added patch discarded remove patch
@@ -33,12 +33,14 @@  discard block
 block discarded – undo
33 33
     
34 34
     /**
35 35
      * @param int $price
36
+     * @return void
36 37
      */
37 38
     public function specifyPrice($price);
38 39
 
39 40
     /**
40 41
      * @param string $name
41 42
      * @param string $localeCode
43
+     * @return void
42 44
      */
43 45
     public function nameItIn($name, $localeCode);
44 46
 
@@ -65,11 +67,18 @@  discard block
 block discarded – undo
65 67
 
66 68
     /**
67 69
      * @param TaxonInterface $taxon
70
+     * @return void
68 71
      */
69 72
     public function selectMainTaxon(TaxonInterface $taxon);
70 73
 
74
+    /**
75
+     * @return void
76
+     */
71 77
     public function disableTracking();
72 78
 
79
+    /**
80
+     * @return void
81
+     */
73 82
     public function enableTracking();
74 83
 
75 84
     /**
@@ -87,20 +96,26 @@  discard block
 block discarded – undo
87 96
     /**
88 97
      * @param string $path
89 98
      * @param string $code
99
+     * @return void
90 100
      */
91 101
     public function attachImage($path, $code = null);
92 102
 
93 103
     /**
94 104
      * @param string $code
95 105
      * @param string $path
106
+     * @return void
96 107
      */
97 108
     public function changeImageWithCode($code, $path);
98 109
 
99 110
     /**
100 111
      * @param string $code
112
+     * @return void
101 113
      */
102 114
     public function removeImageWithCode($code);
103 115
 
116
+    /**
117
+     * @return void
118
+     */
104 119
     public function removeFirstImage();
105 120
 
106 121
     /**
@@ -123,6 +138,7 @@  discard block
 block discarded – undo
123 138
     /**
124 139
      * @param ProductAssociationTypeInterface $productAssociationType
125 140
      * @param string[] $productsNames
141
+     * @return void
126 142
      */
127 143
     public function associateProducts(ProductAssociationTypeInterface $productAssociationType, array $productsNames);
128 144
 
@@ -137,6 +153,7 @@  discard block
 block discarded – undo
137 153
     /**
138 154
      * @param string $productName
139 155
      * @param ProductAssociationTypeInterface $productAssociationType
156
+     * @return void
140 157
      */
141 158
     public function removeAssociatedProduct($productName, ProductAssociationTypeInterface $productAssociationType);
142 159
 }
Please login to merge, or discard this patch.
src/Sylius/Component/Product/Model/ProductAssociationInterface.php 1 patch
Doc Comments   +7 added lines patch added patch discarded remove patch
@@ -20,24 +20,31 @@
 block discarded – undo
20 20
 {
21 21
     /**
22 22
      * @param string $title
23
+     * @return void
23 24
      */
24 25
     public function titleReview($title);
25 26
 
26 27
     /**
27 28
      * @param string $comment
29
+     * @return void
28 30
      */
29 31
     public function setComment($comment);
30 32
 
31 33
     /**
32 34
      * @param string $author
35
+     * @return void
33 36
      */
34 37
     public function setAuthor($author);
35 38
 
36 39
     /**
37 40
      * @param int $rate
41
+     * @return void
38 42
      */
39 43
     public function rateReview($rate);
40 44
 
45
+    /**
46
+     * @return void
47
+     */
41 48
     public function submitReview();
42 49
 
43 50
     /**
Please login to merge, or discard this patch.