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 | 21 |
Duplicated Lines | 0 % |
Changes | 2 | ||
Bugs | 1 | Features | 0 |
1 | <?php |
||
16 | #[Attribute(Attribute::TARGET_PROPERTY | Attribute::TARGET_METHOD)] |
||
17 | abstract class Builder extends Annotation implements NamedArgumentConstructorAnnotation |
||
18 | { |
||
19 | /** |
||
20 | * Builder name. |
||
21 | */ |
||
22 | public string $name; |
||
23 | |||
24 | /** |
||
25 | * The builder config. |
||
26 | */ |
||
27 | public array $config = []; |
||
28 | |||
29 | /** |
||
30 | * @param string|null $name The name of the builder |
||
31 | * @param array $config The builder configuration array |
||
32 | */ |
||
33 | public function __construct(string $name = null, array $config = []) |
||
39 |