| 1 | <?php |
||
| 22 | class HeaderMap extends ParameterAnnotation |
||
| 23 | { |
||
| 24 | /** |
||
| 25 | * Return the converter interface class |
||
| 26 | * |
||
| 27 | * Can be one of RequestBodyConverter, ResponseBodyConverter, or StringConverter |
||
| 28 | * |
||
| 29 | * @return string |
||
| 30 | */ |
||
| 31 | public function converterType(): ?string |
||
| 35 | |||
| 36 | /** |
||
| 37 | * Returns true if multiple annotations of this type are allowed |
||
| 38 | * |
||
| 39 | * @return bool |
||
| 40 | */ |
||
| 41 | public function allowMultiple(): bool |
||
| 45 | } |
||
| 46 |