mirror of
https://github.com/kevinveenbirkenbach/infinito.git
synced 2025-02-23 02:39:40 +01:00
13 lines
200 B
PHP
13 lines
200 B
PHP
<?php
|
|
|
|
namespace Infinito\Repository;
|
|
|
|
use Doctrine\ORM\EntityRepository;
|
|
|
|
/**
|
|
* @author kevinfrantz
|
|
*/
|
|
abstract class AbstractRepository extends EntityRepository implements RepositoryInterface
|
|
{
|
|
}
|