Completed
Push — locale-in-url ( e92356...151bbf )
by Kamil
61:59 queued 41:57
created
src/Sylius/Component/Product/Model/ProductInterface.php 1 patch
Doc Comments   +10 added lines patch added patch discarded remove patch
@@ -40,6 +40,7 @@  discard block
 block discarded – undo
40 40
 
41 41
     /**
42 42
      * @param string $name
43
+     * @return void
43 44
      */
44 45
     public function setName($name);
45 46
 
@@ -50,6 +51,7 @@  discard block
 block discarded – undo
50 51
 
51 52
     /**
52 53
      * @param string $description
54
+     * @return void
53 55
      */
54 56
     public function setDescription($description);
55 57
 
@@ -60,6 +62,7 @@  discard block
 block discarded – undo
60 62
 
61 63
     /**
62 64
      * @param string $metaKeywords
65
+     * @return void
63 66
      */
64 67
     public function setMetaKeywords($metaKeywords);
65 68
 
@@ -70,6 +73,7 @@  discard block
 block discarded – undo
70 73
 
71 74
     /**
72 75
      * @param string $metaDescription
76
+     * @return void
73 77
      */
74 78
     public function setMetaDescription($metaDescription);
75 79
 
@@ -85,11 +89,13 @@  discard block
 block discarded – undo
85 89
 
86 90
     /**
87 91
      * @param ProductVariantInterface $variant
92
+     * @return void
88 93
      */
89 94
     public function addVariant(ProductVariantInterface $variant);
90 95
 
91 96
     /**
92 97
      * @param ProductVariantInterface $variant
98
+     * @return void
93 99
      */
94 100
     public function removeVariant(ProductVariantInterface $variant);
95 101
 
@@ -112,11 +118,13 @@  discard block
 block discarded – undo
112 118
 
113 119
     /**
114 120
      * @param ProductOptionInterface $option
121
+     * @return void
115 122
      */
116 123
     public function addOption(ProductOptionInterface $option);
117 124
 
118 125
     /**
119 126
      * @param ProductOptionInterface $option
127
+     * @return void
120 128
      */
121 129
     public function removeOption(ProductOptionInterface $option);
122 130
 
@@ -129,6 +137,7 @@  discard block
 block discarded – undo
129 137
 
130 138
     /**
131 139
      * @param ProductAssociationInterface $association
140
+     * @return void
132 141
      */
133 142
     public function addAssociation(ProductAssociationInterface $association);
134 143
 
@@ -139,6 +148,7 @@  discard block
 block discarded – undo
139 148
 
140 149
     /**
141 150
      * @param ProductAssociationInterface $association
151
+     * @return void
142 152
      */
143 153
     public function removeAssociation(ProductAssociationInterface $association);
144 154
 
Please login to merge, or discard this patch.