/**
  * Will set annotation data to $method
  *
  * @param Method                 $method
  * @param DeserializationContext $annotation
  *
  * @return null
  */
 public function handle(Method $method, $annotation)
 {
     $method->setDeserializationContext(['depth' => $annotation->getDepth(), 'groups' => $annotation->getGroups(), 'serializeNull' => $annotation->getSerializeNull(), 'version' => $annotation->getVersion(), 'attributes' => $annotation->getAttributes()]);
 }