| Total Complexity | 2 |
| Total Lines | 21 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 5 | class ValuesBag |
||
| 6 | { |
||
| 7 | |||
| 8 | /** |
||
| 9 | * @var array<string, mixed> |
||
| 10 | */ |
||
| 11 | public array $parameters; |
||
| 12 | |||
| 13 | public function __construct(array $parameters) |
||
| 16 | } |
||
| 17 | |||
| 18 | /** |
||
| 19 | * @param string $key |
||
| 20 | * @param mixed $default |
||
| 21 | * @return string|int|null |
||
| 22 | */ |
||
| 23 | public function get(string $key, mixed $default = null): string|int|null |
||
| 26 | } |
||
| 27 | } |