Completed
Push — master ( c47409...8085bb )
by Florian
03:00
created
Model/Document.php 1 patch
Doc Comments   +7 added lines, -1 removed lines patch added patch discarded remove patch
@@ -85,6 +85,7 @@  discard block
 block discarded – undo
85 85
 	 *        	The name of the field
86 86
 	 * @param mixed $value
87 87
 	 *        	The value of this field
88
+	 * @return void
88 89
 	 */
89 90
 	public function addField($fieldname, $value);
90 91
 
@@ -113,6 +114,7 @@  discard block
 block discarded – undo
113 114
 	 *        	The name of the field
114 115
 	 * @param mixed $value
115 116
 	 *        	The additional value of this field
117
+	 * @return void
116 118
 	 */
117 119
 	public function addMultiValueField($field, $value);
118 120
 
@@ -124,6 +126,7 @@  discard block
 block discarded – undo
124 126
 	 *
125 127
 	 * @param string $clazz
126 128
 	 *        	The classname
129
+	 * @return void
127 130
 	 */
128 131
 	public function setEntityClass($clazz);
129 132
 
@@ -143,6 +146,7 @@  discard block
 block discarded – undo
143 146
 	 *
144 147
 	 * @param mixed $id
145 148
 	 *        	The ID of the corresponding entity
149
+	 * @return void
146 150
 	 */
147 151
 	public function setEntityId($id);
148 152
 
@@ -159,6 +163,7 @@  discard block
 block discarded – undo
159 163
 	 * hiding some programatically needed complexity from the user
160 164
 	 *
161 165
 	 * @param string $type        	
166
+	 * @return void
162 167
 	 */
163 168
 	public function setEntityType($type);
164 169
 	
@@ -169,7 +174,7 @@  discard block
 block discarded – undo
169 174
 	 * 
170 175
 	 * If no entity type is set, the class will be used instead
171 176
 	 *
172
-	 * @param return $type
177
+	 * @return string
173 178
 	 */
174 179
 	public function getEntityType();
175 180
 
@@ -179,6 +184,7 @@  discard block
 block discarded – undo
179 184
 	 * <strong>note:</strong> This may not supported by the underlying implementation
180 185
 	 *
181 186
 	 * @param string $path        	
187
+	 * @return void
182 188
 	 */
183 189
 	public function setFile($path);
184 190
 
Please login to merge, or discard this patch.