| 1 | <?php |
||
| 19 | class FormUrlEncoded implements DynamoAnnotation |
||
| 20 | { |
||
| 21 | const NAME = 'form_urlencoded'; |
||
| 22 | |||
| 23 | /** |
||
| 24 | * The name of the annotation or class of annotations |
||
| 25 | * |
||
| 26 | * @return string |
||
| 27 | */ |
||
| 28 | public function getName() |
||
| 32 | |||
| 33 | /** |
||
| 34 | * Whether or not multiple annotations of this type can |
||
| 35 | * be added to a method |
||
| 36 | * |
||
| 37 | * @return bool |
||
| 38 | */ |
||
| 39 | public function allowMultiple() |
||
| 43 | } |
||
| 44 |