We could not synchronize checks via GitHub's checks API since Scrutinizer's GitHub App is not installed for this repository.
Total Complexity | 1 |
Total Lines | 17 |
Duplicated Lines | 0 % |
Coverage | 100% |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
7 | final class Arg extends AbstractConfig |
||
8 | { |
||
9 | public string $type; |
||
10 | public ?string $description = null; |
||
11 | public ?Validation $validation = null; |
||
12 | |||
13 | /** |
||
14 | * @var mixed |
||
15 | */ |
||
16 | public $defaultValue; |
||
17 | |||
18 | public bool $hasDefaultValue; |
||
19 | |||
20 | 29 | public function __construct(array $config) |
|
26 |