infinito/application/symfony/src/Repository/AbstractRepository.php
2019-02-17 14:33:19 +01:00

13 lines
200 B
PHP

<?php
namespace Infinito\Repository;
use Doctrine\ORM\EntityRepository;
/**
* @author kevinfrantz
*/
abstract class AbstractRepository extends EntityRepository implements RepositoryInterface
{
}