/**
  * Overwrites the type and description in the Argument Descriptor with that from the tag if the names match.
  *
  * @param ArgumentReflector  $argument
  * @param ParamDescriptor    $paramDescriptor
  * @param ArgumentDescriptor $argumentDescriptor
  *
  * @return void
  */
 protected function overwriteTypeAndDescriptionFromParamTag(ArgumentReflector $argument, ParamDescriptor $paramDescriptor, ArgumentDescriptor $argumentDescriptor)
 {
     if ($paramDescriptor->getVariableName() != $argument->getName()) {
         return;
     }
     $argumentDescriptor->setDescription($paramDescriptor->getDescription());
     $argumentDescriptor->setTypes($paramDescriptor->getTypes() ?: $this->builder->buildDescriptor(new Collection(array($argument->getType() ?: 'mixed'))));
 }