| Conditions | 3 |
| Paths | 3 |
| Total Lines | 11 |
| Code Lines | 7 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 8 |
| CRAP Score | 3 |
| Changes | 0 | ||
| 1 | <?php |
||
| 19 | 232 | public function __construct(string $id, string $texto, int $vigenteDesde, int $vigenteHasta) |
|
| 20 | { |
||
| 21 | 232 | if ('' === $id) { |
|
| 22 | 1 | throw new SatCatalogosLogicException('El campo ID no puede ser una cadena de caracteres vacía'); |
|
| 23 | } |
||
| 24 | 231 | if ('' === $texto) { |
|
| 25 | 1 | throw new SatCatalogosLogicException('El campo texto no puede ser una cadena de caracteres vacía'); |
|
| 26 | } |
||
| 27 | 230 | $this->id = $id; |
|
| 28 | 230 | $this->texto = $texto; |
|
| 29 | 230 | $this->setUpVigencias($vigenteDesde, $vigenteHasta); |
|
| 30 | } |
||
| 42 |