for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Fixtures\Bundles\RepositoryServiceBundle\Repository;
use Doctrine\Bundle\DoctrineBundle\Repository\ServiceEntityRepository;
use Doctrine\Persistence\ManagerRegistry;
use Fixtures\Bundles\RepositoryServiceBundle\Entity\TestCustomServiceRepoEntity;
class TestCustomServiceRepoRepository extends ServiceEntityRepository
{
public function __construct(ManagerRegistry $registry)
parent::__construct($registry, TestCustomServiceRepoEntity::class);
}