for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Zenstruck\Foundry\Tests\Fixtures\Repository;
use Doctrine\ORM\EntityRepository;
/**
* @author Kevin Bond <[email protected]>
*/
final class PostRepository extends EntityRepository
{
public function customMethod(): string
return 'from custom method';
}