PHP Class Neos\Flow\Persistence\Doctrine\QueryResult

Inheritance: implements Neos\Flow\Persistence\QueryResultInterface
Mostrar archivo Open project: neos/flow-development-collection Class Usage Examples

Protected Properties

Property Type Description
$numberOfRows integer
$query Query
$rows array

Public Methods

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

Protected Methods

Method Description
initialize ( ) : void Loads the objects this QueryResult is supposed to hold

Method Details

__construct() public method

public __construct ( Query $query )
$query Query

count() public method

Returns the number of objects in the result
public count ( ) : integer
return integer The number of matching objects

current() public method

public current ( ) : mixed
return mixed

getFirst() public method

Returns the first object in the result set
public getFirst ( ) : object
return object

getQuery() public method

Returns a clone of the query object
public getQuery ( ) : Query
return Query

initialize() protected method

Loads the objects this QueryResult is supposed to hold
protected initialize ( ) : void
return void

key() public method

public key ( ) : mixed
return mixed

next() public method

public next ( ) : void
return void

offsetExists() public method

This method is needed to implement the \ArrayAccess interface, but it isn't very useful as the offset has to be an integer
public offsetExists ( mixed $offset ) : boolean
$offset mixed
return boolean

offsetGet() public method

public offsetGet ( mixed $offset ) : mixed
$offset mixed
return mixed

offsetSet() public method

This method has no effect on the persisted objects but only on the result set
public offsetSet ( mixed $offset, mixed $value ) : void
$offset mixed
$value mixed
return void

offsetUnset() public method

This method has no effect on the persisted objects but only on the result set
public offsetUnset ( mixed $offset ) : void
$offset mixed
return void

rewind() public method

public rewind ( ) : void
return void

toArray() public method

Returns an array with the objects in the result set
public toArray ( ) : array
return array

valid() public method

public valid ( ) : boolean
return boolean

Property Details

$numberOfRows protected_oe property

protected int $numberOfRows
return integer

$query protected_oe property

protected Query,Neos\Flow\Persistence\Doctrine $query
return Query

$rows protected_oe property

protected array $rows
return array