Conditions | 1 |
Paths | 1 |
Total Lines | 12 |
Code Lines | 9 |
Lines | 0 |
Ratio | 0 % |
Tests | 10 |
CRAP Score | 1 |
Changes | 0 |
1 | <?php |
||
11 | 2 | public function __construct($em) |
|
12 | { |
||
13 | 2 | $this->em = $em; |
|
14 | 2 | $this->entities[\Cdf\BiCoreBundle\Entity\Ruoli::class] = array('priority' => 10); |
|
15 | 2 | $this->entities["Cdf\BiCoreBundle\Entity\Operatori"] = array('priority' => 50); |
|
16 | 2 | $this->entities["Cdf\BiCoreBundle\Entity\Permessi"] = array('priority' => 100); |
|
17 | 2 | $this->entities["Cdf\BiCoreBundle\Entity\Storicomodifiche"] = array('priority' => 110); |
|
18 | 2 | $this->entities["Cdf\BiCoreBundle\Entity\Colonnetabelle"] = array('priority' => 120); |
|
19 | 2 | $this->entities["Cdf\BiCoreBundle\Entity\Opzionitabelle"] = array('priority' => 150); |
|
20 | 2 | $this->entities["Cdf\BiCoreBundle\Entity\Menuapplicazione"] = array('priority' => 160); |
|
21 | |||
22 | 2 | $this->countEntitiesRows(); |
|
23 | 2 | } |
|
52 |