19 lines
254 B
PHP
19 lines
254 B
PHP
<?php
|
|
|
|
namespace Doctrine\Tests\Models\DDC753;
|
|
|
|
use Doctrine\ORM\EntityRepository;
|
|
|
|
class DDC753CustomRepository extends EntityRepository
|
|
{
|
|
|
|
/**
|
|
* @return bool
|
|
*/
|
|
public function isCustomRepository()
|
|
{
|
|
return true;
|
|
}
|
|
|
|
}
|