| 1 | <?php |
||
| 24 | final class UrlAnnotHandler implements AnnotationHandler |
||
| 25 | { |
||
| 26 | /** |
||
| 27 | * Add url param handler |
||
| 28 | * |
||
| 29 | * @param AbstractAnnotation $annotation The annotation to handle |
||
| 30 | * @param ServiceMethodBuilder $serviceMethodBuilder Used to construct a [@see ServiceMethod] |
||
| 31 | * @param Converter|StringConverter $converter Converter used to convert types before sending to service method |
||
| 32 | * @param int|null $index The position of the parameter or null if annotation does not reference parameter |
||
| 33 | * @return void |
||
| 34 | * @throws \InvalidArgumentException |
||
| 35 | */ |
||
| 36 | 3 | public function handle( |
|
| 51 | } |
||
| 52 |