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