Total Complexity | 4 |
Total Lines | 37 |
Duplicated Lines | 0 % |
Coverage | 100% |
Changes | 3 | ||
Bugs | 1 | Features | 0 |
1 | <?php |
||
14 | trait HasContextTrait { |
||
15 | /** |
||
16 | * Context. |
||
17 | * |
||
18 | * @var array |
||
19 | */ |
||
20 | protected $context = []; |
||
21 | |||
22 | /** |
||
23 | * Get context values. |
||
24 | * |
||
25 | * @param string|null $key |
||
26 | * @param mixed|null $default |
||
27 | * @return mixed |
||
28 | */ |
||
29 | 1 | public function getContext( $key = null, $default = null ) { |
|
35 | } |
||
36 | |||
37 | /** |
||
38 | * Add context values. |
||
39 | * |
||
40 | * @param string|array<string, mixed> $key |
||
41 | * @param mixed $value |
||
42 | * @return static $this |
||
43 | */ |
||
44 | 1 | public function with( $key, $value = null ) { |
|
53 |