| 1 | <?php |
||
| 32 | class Path extends ParameterAnnotation |
||
| 33 | { |
||
| 34 | /** |
||
| 35 | * Returns true if multiple annotations of this type are allowed |
||
| 36 | * |
||
| 37 | * @return bool |
||
| 38 | */ |
||
| 39 | 1 | public function allowMultiple(): bool |
|
| 43 | |||
| 44 | /** |
||
| 45 | * Return the converter interface class |
||
| 46 | * |
||
| 47 | * Can be one of RequestBodyConverter, ResponseBodyConverter, or StringConverter |
||
| 48 | * |
||
| 49 | * @return string |
||
| 50 | */ |
||
| 51 | 1 | public function converterType(): ?string |
|
| 55 | } |
||
| 56 |