| Total Complexity | 2 |
| Total Lines | 21 |
| Duplicated Lines | 0 % |
| Coverage | 100% |
| Changes | 1 | ||
| Bugs | 1 | Features | 0 |
| 1 | <?php |
||
| 5 | class ParametriTabella |
||
| 6 | { |
||
| 7 | /** |
||
| 8 | * |
||
| 9 | * @param string $parametro |
||
| 10 | * @return string |
||
| 11 | * @throws \Exception |
||
| 12 | */ |
||
| 13 | 18 | public static function getParameter(string $parametro) |
|
| 14 | { |
||
| 15 | 18 | return base64_decode($parametro); |
|
| 16 | } |
||
| 17 | |||
| 18 | /** |
||
| 19 | * |
||
| 20 | * @param ?mixed $parametro |
||
| 21 | * @return string |
||
| 22 | */ |
||
| 23 | 18 | public static function setParameter($parametro) |
|
| 26 | } |
||
| 27 | } |
||
| 28 |