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