| 1 | <?php | ||
| 22 | class SerializationContext extends JmsSerializerContext implements DynamoAnnotation | ||
| 23 | { | ||
| 24 | const NAME = 'serialization_context'; | ||
| 25 | |||
| 26 | /** | ||
| 27 | * The name of the annotation or class of annotations | ||
| 28 | * | ||
| 29 | * @return string | ||
| 30 | */ | ||
| 31 | public function getName() | ||
| 35 | |||
| 36 | /** | ||
| 37 | * Whether or not multiple annotations of this type can | ||
| 38 | * be added to a method | ||
| 39 | * | ||
| 40 | * @return bool | ||
| 41 | */ | ||
| 42 | public function allowMultiple() | ||
| 46 | } | ||
| 47 |