2011-09-08 15:54:49 -03:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace Doctrine\Tests\Models\DDC753;
|
|
|
|
|
|
|
|
use Doctrine\ORM\EntityRepository;
|
|
|
|
|
|
|
|
class DDC753CustomRepository extends EntityRepository
|
|
|
|
{
|
|
|
|
|
|
|
|
/**
|
2011-12-19 22:56:19 +01:00
|
|
|
* @return bool
|
2011-09-08 15:54:49 -03:00
|
|
|
*/
|
|
|
|
public function isCustomRepository()
|
|
|
|
{
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2016-10-26 13:24:33 -03:00
|
|
|
}
|