| Conditions | 1 |
| Paths | 1 |
| Total Lines | 12 |
| Code Lines | 9 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 10 |
| CRAP Score | 1 |
| Changes | 0 | ||
| 1 | <?php |
||
| 20 | 2 | public function __construct(EntityManager $em) |
|
| 21 | { |
||
| 22 | 2 | $this->em = $em; |
|
| 23 | 2 | $this->entities[Ruoli::class] = array('priority' => 10); |
|
| 24 | 2 | $this->entities["Cdf\BiCoreBundle\Entity\Operatori"] = array('priority' => 50); |
|
| 25 | 2 | $this->entities["Cdf\BiCoreBundle\Entity\Permessi"] = array('priority' => 100); |
|
| 26 | 2 | $this->entities["Cdf\BiCoreBundle\Entity\Storicomodifiche"] = array('priority' => 110); |
|
| 27 | 2 | $this->entities["Cdf\BiCoreBundle\Entity\Colonnetabelle"] = array('priority' => 120); |
|
| 28 | 2 | $this->entities["Cdf\BiCoreBundle\Entity\Opzionitabelle"] = array('priority' => 150); |
|
| 29 | 2 | $this->entities["Cdf\BiCoreBundle\Entity\Menuapplicazione"] = array('priority' => 160); |
|
| 30 | |||
| 31 | 2 | $this->countEntitiesRows(); |
|
| 32 | } |
||
| 69 |