EmployeeRepository   A
last analyzed

Complexity

Total Complexity 1

Size/Duplication

Total Lines 7
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 1

Test Coverage

Coverage 100%

Importance

Changes 0
Metric Value
dl 0
loc 7
ccs 3
cts 3
cp 1
rs 10
c 0
b 0
f 0
wmc 1
lcom 0
cbo 1

1 Method

Rating   Name   Duplication   Size   Complexity  
A __construct() 0 4 1
1
<?php
2
3
namespace App\Repository;
4
5
use App\Entity\Employee;
6
use Doctrine\Common\Persistence\ManagerRegistry;
7
8
class EmployeeRepository extends AbstractRepository
9
{
10 10
    public function __construct(ManagerRegistry $registry)
11
    {
12 10
        parent::__construct($registry, Employee::class);
13 10
    }
14
}
15