Code Coverage |
||||||||||
Lines |
Functions and Methods |
Classes and Traits |
||||||||
Total | n/a |
0 / 0 |
n/a |
0 / 0 |
CRAP | n/a |
0 / 0 |
|||
OlzRepository | n/a |
0 / 0 |
n/a |
0 / 0 |
0 | n/a |
0 / 0 |
1 | <?php |
2 | |
3 | namespace Olz\Repository\Common; |
4 | |
5 | use Doctrine\ORM\EntityRepository; |
6 | use Olz\Utils\WithUtilsTrait; |
7 | |
8 | /** |
9 | * @template T of object |
10 | * |
11 | * @extends EntityRepository<T> |
12 | */ |
13 | class OlzRepository extends EntityRepository { |
14 | use WithUtilsTrait; |
15 | } |