Code Coverage |
||||||||||||||||
Lines |
Branches |
Paths |
Functions and Methods |
Classes and Traits |
||||||||||||
| Total | |
0.00% |
0 / 1 |
n/a |
0 / 0 |
n/a |
0 / 0 |
|
0.00% |
0 / 1 |
CRAP | |
0.00% |
0 / 1 |
||
| DoctrinePartRepository | |
0.00% |
0 / 1 |
n/a |
0 / 0 |
n/a |
0 / 0 |
|
0.00% |
0 / 1 |
2 | |
0.00% |
0 / 1 |
||
| __construct | |
0.00% |
0 / 1 |
n/a |
0 / 0 |
n/a |
0 / 0 |
|
0.00% |
0 / 1 |
2 | |||||
| 1 | <?php |
| 2 | |
| 3 | namespace App\CollectionManagement\Infrastructure\Persistence\Doctrine\Repository; |
| 4 | |
| 5 | use App\CollectionManagement\Domain\Model\Local\Part; |
| 6 | use App\CollectionManagement\Domain\Port\Driven\PartRepository; |
| 7 | use Doctrine\Bundle\DoctrineBundle\Repository\ServiceEntityRepository; |
| 8 | use Doctrine\Persistence\ManagerRegistry; |
| 9 | |
| 10 | /** |
| 11 | * @author Wilhelm Zwertvaegher |
| 12 | * @extends ServiceEntityRepository<Part> |
| 13 | */ |
| 14 | class DoctrinePartRepository extends ServiceEntityRepository implements PartRepository |
| 15 | { |
| 16 | public function __construct(ManagerRegistry $entityManager) |
| 17 | { |
| 18 | parent::__construct($entityManager, Part::class); |
| 19 | } |
| 20 | } |