Fixed type annotations

(avoid triggering warning on IDEs like PhpStorm
This commit is contained in:
Luciano Mammino 2014-12-31 17:08:41 +01:00
parent a84c53bf6a
commit e0ff981653

View File

@ -19,10 +19,10 @@ interface HandlerInterface
/** /**
* Parse route parameters in order to populate ApiDoc. * Parse route parameters in order to populate ApiDoc.
* *
* @param Nelmio\ApiDocBundle\Annotation\ApiDoc $annotation * @param \Nelmio\ApiDocBundle\Annotation\ApiDoc $annotation
* @param array $annotations * @param array $annotations
* @param Symfony\Component\Routing\Route $route * @param \Symfony\Component\Routing\Route $route
* @param ReflectionMethod $method * @param \ReflectionMethod $method
*/ */
public function handle(ApiDoc $annotation, array $annotations, Route $route, \ReflectionMethod $method); public function handle(ApiDoc $annotation, array $annotations, Route $route, \ReflectionMethod $method);
} }