We could not synchronize checks via GitHub's checks API since Scrutinizer's GitHub App is not installed for this repository.
| Total Complexity | 0 |
| Total Lines | 22 |
| Duplicated Lines | 0 % |
| Coverage | 0% |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 13 | final class Union implements Annotation |
||
| 14 | { |
||
| 15 | /** |
||
| 16 | * Union name. |
||
| 17 | * |
||
| 18 | * @var string |
||
| 19 | */ |
||
| 20 | public string $name; |
||
| 21 | |||
| 22 | /** |
||
| 23 | * Union types. |
||
| 24 | * |
||
| 25 | * @var array<string> |
||
| 26 | */ |
||
| 27 | public array $types; |
||
| 28 | |||
| 29 | /** |
||
| 30 | * Resolver type for union. |
||
| 31 | * |
||
| 32 | * @var string |
||
| 33 | */ |
||
| 34 | public string $resolveType; |
||
| 35 | } |
||
| 36 |