Total Complexity | 2 |
Total Lines | 14 |
Duplicated Lines | 0 % |
Coverage | 0% |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
10 | class DynamicObjectType extends Webonyx\ObjectType implements DynamicObjectTypeInterface |
||
11 | { |
||
12 | public function __construct( |
||
13 | protected readonly DynamicObjectTypeInterface $dynamicType, |
||
14 | array $config, |
||
15 | ) { |
||
16 | parent::__construct($config); |
||
17 | } |
||
18 | |||
19 | public function addAdditionalField(mixed $field): static |
||
24 | } |
||
25 | } |
||
26 |