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