@@ 200-209 (lines=10) @@ | ||
197 | return $this; |
|
198 | } |
|
199 | ||
200 | public function fields($fields) |
|
201 | { |
|
202 | if (is_array($fields) || $fields === null) { |
|
203 | $this->fields = $fields; |
|
204 | } else { |
|
205 | $this->fields = func_get_args(); |
|
206 | } |
|
207 | ||
208 | return $this; |
|
209 | } |
|
210 | ||
211 | public function source($source) |
|
212 | { |
|
@@ 211-220 (lines=10) @@ | ||
208 | return $this; |
|
209 | } |
|
210 | ||
211 | public function source($source) |
|
212 | { |
|
213 | if (is_array($source) || $source === null) { |
|
214 | $this->source = $source; |
|
215 | } else { |
|
216 | $this->source = func_get_args(); |
|
217 | } |
|
218 | ||
219 | return $this; |
|
220 | } |
|
221 | } |
|
222 |