phpDataMapper_Query::all PHP Method

all() public method

Find records with given conditions If all parameters are empty, find all records
public all ( array $conditions = [] )
$conditions array Array of conditions in column => value pairs
    public function all(array $conditions = array())
    {
        return $this->where($conditions);
    }