| Total Lines | 17 |
| Duplicated Lines | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 7 | interface Parameterized |
||
| 8 | { |
||
| 9 | /** |
||
| 10 | * Get the parameters |
||
| 11 | * |
||
| 12 | * @return array[string]string |
||
|
|
|||
| 13 | */ |
||
| 14 | public function getParameters(); |
||
| 15 | |||
| 16 | /** |
||
| 17 | * Set the parameters |
||
| 18 | * |
||
| 19 | * @param array[string]string $parameters |
||
| 20 | * @return Parameterized |
||
| 21 | */ |
||
| 22 | public function setParameters(array $parameters); |
||
| 23 | } |
||
| 24 |
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.