Method |
Description |
|
__construct ( Query $query ) |
|
|
count ( ) : integer |
Returns the number of objects in the result |
|
current ( ) : mixed |
|
|
getFirst ( ) : object |
Returns the first object in the result set |
|
getQuery ( ) : Query |
Returns a clone of the query object |
|
key ( ) : mixed |
|
|
next ( ) : void |
|
|
offsetExists ( mixed $offset ) : boolean |
This method is needed to implement the \ArrayAccess interface,
but it isn't very useful as the offset has to be an integer |
|
offsetGet ( mixed $offset ) : mixed |
|
|
offsetSet ( mixed $offset, mixed $value ) : void |
This method has no effect on the persisted objects but only on the result set |
|
offsetUnset ( mixed $offset ) : void |
This method has no effect on the persisted objects but only on the result set |
|
rewind ( ) : void |
|
|
toArray ( ) : array |
Returns an array with the objects in the result set |
|
valid ( ) : boolean |
|
|