| 1 | <?php |
||
| 24 | class Header extends ParameterAnnotation |
||
| 25 | { |
||
| 26 | /** |
||
| 27 | * Whether or not multiple annotations of this type can |
||
| 28 | * be added to a method |
||
| 29 | * |
||
| 30 | * @return bool |
||
| 31 | */ |
||
| 32 | 1 | public function allowMultiple(): bool |
|
| 36 | |||
| 37 | /** |
||
| 38 | * Return the converter interface class |
||
| 39 | * |
||
| 40 | * Can be one of RequestBodyConverter, ResponseBodyConverter, or StringConverter |
||
| 41 | * |
||
| 42 | * @return string |
||
| 43 | */ |
||
| 44 | 1 | public function converterType(): ?string |
|
| 48 | } |
||
| 49 |