1 | <?php |
||
18 | class CompoundQueryResult extends QueryResult { |
||
19 | |||
20 | /** |
||
21 | * Adds in the pages from a new query result to the existing set of |
||
22 | * pages - only pages that weren't in the set already get added. |
||
23 | * |
||
24 | * @param QueryResult $newResult |
||
25 | */ |
||
26 | public function addResult( QueryResult $newResult ) { |
||
50 | |||
51 | } |
||
52 |
An attempt at access to an undefined property has been detected. This may either be a typographical error or the property has been renamed but there are still references to its old name.
If you really want to allow access to undefined properties, you can define magic methods to allow access. See the php core documentation on Overloading.