2011-09-07 18:29:43 -03:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace Doctrine\Tests\Models\DDC869;
|
|
|
|
|
|
|
|
use Doctrine\ORM\EntityRepository;
|
|
|
|
|
|
|
|
class DDC869PaymentRepository extends EntityRepository
|
|
|
|
{
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Very complex method
|
2011-12-19 22:56:19 +01:00
|
|
|
*
|
|
|
|
* @return bool
|
2011-09-07 18:29:43 -03:00
|
|
|
*/
|
|
|
|
public function isTrue()
|
|
|
|
{
|
|
|
|
return true;
|
|
|
|
}
|
2016-10-26 13:24:33 -03:00
|
|
|
}
|