infinito/application/symfony/src/Repository/AbstractRepository.php

13 lines
195 B
PHP
Raw Normal View History

2018-10-04 21:01:45 +02:00
<?php
2018-10-29 19:01:00 +01:00
2018-10-04 21:01:45 +02:00
namespace App\Repository;
use Doctrine\ORM\EntityRepository;
/**
* @author kevinfrantz
*/
2019-01-16 20:40:15 +01:00
abstract class AbstractRepository extends EntityRepository implements RepositoryInterface
2018-10-04 21:01:45 +02:00
{
}