| Total Lines | 23 |
| Duplicated Lines | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 16 | interface MetadataInterface |
||
| 17 | { |
||
| 18 | public function getTitle(): string; |
||
| 19 | |||
| 20 | public function getDescription(): ?string; |
||
| 21 | |||
| 22 | public function getImage(): ?string; |
||
| 23 | |||
| 24 | public function getDomain(): ?string; |
||
| 25 | |||
| 26 | /** |
||
| 27 | * @return array<string, mixed> |
||
|
|
|||
| 28 | */ |
||
| 29 | public function getOptions(): array; |
||
| 30 | |||
| 31 | /** |
||
| 32 | * @param string $name The option key |
||
| 33 | * @param mixed $default The default value if option not found |
||
| 34 | * |
||
| 35 | * @return mixed |
||
| 36 | */ |
||
| 37 | public function getOption($name, $default = null); |
||
| 38 | } |
||
| 39 |
This check marks PHPDoc comments that could not be parsed by our parser. To see which comment annotations we can parse, please refer to our documentation on supported doc-types.