@@ 190-199 (lines=10) @@ | ||
187 | return $this; |
|
188 | } |
|
189 | ||
190 | public function fields($fields) |
|
191 | { |
|
192 | if (is_array($fields) || $fields === null) { |
|
193 | $this->fields = $fields; |
|
194 | } else { |
|
195 | $this->fields = func_get_args(); |
|
196 | } |
|
197 | ||
198 | return $this; |
|
199 | } |
|
200 | ||
201 | public function source($source) |
|
202 | { |
|
@@ 201-210 (lines=10) @@ | ||
198 | return $this; |
|
199 | } |
|
200 | ||
201 | public function source($source) |
|
202 | { |
|
203 | if (is_array($source) || $source === null) { |
|
204 | $this->source = $source; |
|
205 | } else { |
|
206 | $this->source = func_get_args(); |
|
207 | } |
|
208 | ||
209 | return $this; |
|
210 | } |
|
211 | } |
|
212 |