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 | 22 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
17 | final class ArgsBuilder implements NamedArgumentConstructorAnnotation, Annotation |
||
18 | { |
||
19 | /** |
||
20 | * Builder name. |
||
21 | * |
||
22 | * @Required |
||
23 | * |
||
24 | * @var string |
||
25 | */ |
||
26 | public string $value; |
||
27 | |||
28 | /** |
||
29 | * The builder config. |
||
30 | * |
||
31 | * @var mixed |
||
32 | */ |
||
33 | public $config = []; |
||
34 | |||
35 | public function __construct(string $value, array $config = []) |
||
41 |