We could not synchronize checks via GitHub's checks API since Scrutinizer's GitHub App is not installed for this repository.
| Total Complexity | 2 |
| Total Lines | 22 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 13 | class Service implements ConverterAnnotationInterface |
||
| 14 | { |
||
| 15 | /** |
||
| 16 | * Service ID. |
||
| 17 | */ |
||
| 18 | public string $value; |
||
| 19 | |||
| 20 | /** |
||
| 21 | * Method name to call on the target service. |
||
| 22 | */ |
||
| 23 | public string $method; |
||
| 24 | |||
| 25 | public bool $isCollection; |
||
| 26 | |||
| 27 | public static function getConverterClass(): string |
||
| 30 | } |
||
| 31 | |||
| 32 | public function isCollection(): bool |
||
| 35 | } |
||
| 36 | } |