Conditions | 1 |
Paths | 1 |
Total Lines | 13 |
Code Lines | 5 |
Lines | 0 |
Ratio | 0 % |
Tests | 6 |
CRAP Score | 1 |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
23 | 6 | public function __construct( |
|
24 | string $id, |
||
25 | string $texto, |
||
26 | bool $retencion, |
||
27 | bool $traslado, |
||
28 | string $ambito, |
||
29 | string $entidad |
||
30 | ) { |
||
31 | 6 | parent::__construct($id, $texto, 0, 0); |
|
32 | 6 | $this->retencion = $retencion; |
|
33 | 6 | $this->traslado = $traslado; |
|
34 | 6 | $this->ambito = $ambito; |
|
35 | 6 | $this->entidad = $entidad; |
|
36 | } |
||
58 |