28 lines
705 B
PHP
28 lines
705 B
PHP
<?php
|
|
|
|
namespace Doctrine\Tests\ORM\Hydration;
|
|
|
|
use PDO, Doctrine\ORM\Internal\Hydration\AbstractHydrator;
|
|
|
|
require_once __DIR__ . '/../../TestInit.php';
|
|
|
|
class CustomHydratorTest extends HydrationTestCase
|
|
{
|
|
public function testCustomHydrator()
|
|
{
|
|
$em = $this->_getTestEntityManager();
|
|
$config = $em->getConfiguration();
|
|
$config->addHydrator('CustomHydrator', 'Doctrine\Tests\ORM\Hydration\CustomHydrator');
|
|
|
|
$hydrator = $em->newHydrator('CustomHydrator');
|
|
$this->assertTrue($hydrator instanceof \Doctrine\Tests\ORM\Hydration\CustomHydrator);
|
|
}
|
|
}
|
|
|
|
class CustomHydrator extends AbstractHydrator
|
|
{
|
|
protected function _hydrateAll()
|
|
{
|
|
return $this->_stmt->fetchAll(PDO::FETCH_ASSOC);
|
|
}
|
|
} |