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 | 2 | ||
| Bugs | 1 | Features | 0 |
| 1 | <?php |
||
| 17 | abstract class Builder extends Annotation implements NamedArgumentConstructorAnnotation |
||
| 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 array |
||
| 32 | */ |
||
| 33 | public array $config = []; |
||
| 34 | |||
| 35 | public function __construct(string $value, array $config = []) |
||
| 41 |