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