| Conditions | 1 |
| Paths | 1 |
| Total Lines | 6 |
| Code Lines | 4 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 5 |
| CRAP Score | 1 |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php declare(strict_types=1); |
||
| 38 | 11 | public function __construct(string $valor, array $valoresPermitidos) |
|
| 39 | { |
||
| 40 | 11 | $this->_valores = $valoresPermitidos; |
|
| 41 | 11 | $this->_valor = $this->setValor($valor); |
|
| 42 | 11 | $this->_texto = $this->valorTexto(); |
|
| 43 | 11 | $this->_numero = $this->valorNumero(); |
|
| 44 | 11 | } |
|
| 110 |