Total Complexity | 4 |
Total Lines | 28 |
Duplicated Lines | 0 % |
Coverage | 100% |
Changes | 2 | ||
Bugs | 0 | Features | 1 |
1 | <?php |
||
25 | class Arguments implements Argument, |
||
26 | TransformsToImmutable, |
||
27 | NamespaceDataFilter, |
||
28 | IteratorAggregate, |
||
29 | Countable, |
||
30 | JsonSerializable |
||
31 | { |
||
32 | use AccessorTrait, MutatorTrait, ArrayDataFilterTrait { |
||
33 | MutatorTrait::__set insteadof AccessorTrait; |
||
34 | } |
||
35 | |||
36 | 56 | public function __construct(protected array $data = []) {} |
|
37 | |||
38 | public function __clone() {} |
||
39 | |||
40 | 2 | public function namespace( |
|
47 | 2 | ); |
|
48 | } |
||
49 | |||
50 | 1 | public function toImmutable(): Immutable |
|
53 | } |
||
54 | } |
||
55 |