| Total Lines | 16 |
| Duplicated Lines | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 16 | interface Invocation extends Joinpoint |
||
| 17 | { |
||
| 18 | /** |
||
| 19 | * Get the arguments as an array object. |
||
| 20 | * |
||
| 21 | * @return ArrayObject<int, mixed> the argument of the invocation ['arg1', 'arg2'] |
||
|
|
|||
| 22 | */ |
||
| 23 | public function getArguments() : ArrayObject; |
||
| 24 | |||
| 25 | /** |
||
| 26 | * Get the named arguments as an array object. |
||
| 27 | * |
||
| 28 | * @return ArrayObject<string, mixed> the argument of the invocation [`paramName1'=>'arg1', `paramName2'=>'arg2'] |
||
| 29 | */ |
||
| 30 | public function getNamedArguments() : ArrayObject; |
||
| 31 | } |
||
| 32 |
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.