Doctrine_Hydrate now abstract
This commit is contained in:
parent
7f5844d1db
commit
485067cad7
1 changed files with 8 additions and 2 deletions
|
@ -28,7 +28,7 @@ Doctrine::autoload('Doctrine_Access');
|
||||||
* @url www.phpdoctrine.com
|
* @url www.phpdoctrine.com
|
||||||
* @license LGPL
|
* @license LGPL
|
||||||
*/
|
*/
|
||||||
class Doctrine_Hydrate extends Doctrine_Access {
|
abstract class Doctrine_Hydrate extends Doctrine_Access {
|
||||||
/**
|
/**
|
||||||
* @var array $fetchmodes an array containing all fetchmodes
|
* @var array $fetchmodes an array containing all fetchmodes
|
||||||
*/
|
*/
|
||||||
|
@ -92,6 +92,12 @@ class Doctrine_Hydrate extends Doctrine_Access {
|
||||||
public function __construct(Doctrine_Session $session) {
|
public function __construct(Doctrine_Session $session) {
|
||||||
$this->session = $session;
|
$this->session = $session;
|
||||||
}
|
}
|
||||||
|
/**
|
||||||
|
* getQuery
|
||||||
|
*
|
||||||
|
* @return string
|
||||||
|
*/
|
||||||
|
abstract public function getQuery();
|
||||||
/**
|
/**
|
||||||
* remove
|
* remove
|
||||||
*
|
*
|
||||||
|
@ -272,7 +278,7 @@ class Doctrine_Hydrate extends Doctrine_Access {
|
||||||
if($return == Doctrine::RETURN_VHOLDER) {
|
if($return == Doctrine::RETURN_VHOLDER) {
|
||||||
return $this->hydrateHolders($array);
|
return $this->hydrateHolders($array);
|
||||||
}
|
}
|
||||||
|
|
||||||
foreach($array as $data) {
|
foreach($array as $data) {
|
||||||
/**
|
/**
|
||||||
* remove duplicated data rows and map data into objects
|
* remove duplicated data rows and map data into objects
|
||||||
|
|
Loading…
Add table
Reference in a new issue