From e0ff981653e8fa5ad772d34b9d9c64570ad928b9 Mon Sep 17 00:00:00 2001 From: Luciano Mammino Date: Wed, 31 Dec 2014 17:08:41 +0100 Subject: [PATCH] Fixed type annotations (avoid triggering warning on IDEs like PhpStorm --- Extractor/HandlerInterface.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Extractor/HandlerInterface.php b/Extractor/HandlerInterface.php index 37a5e74..60ed166 100644 --- a/Extractor/HandlerInterface.php +++ b/Extractor/HandlerInterface.php @@ -19,10 +19,10 @@ interface HandlerInterface /** * Parse route parameters in order to populate ApiDoc. * - * @param Nelmio\ApiDocBundle\Annotation\ApiDoc $annotation + * @param \Nelmio\ApiDocBundle\Annotation\ApiDoc $annotation * @param array $annotations - * @param Symfony\Component\Routing\Route $route - * @param ReflectionMethod $method + * @param \Symfony\Component\Routing\Route $route + * @param \ReflectionMethod $method */ public function handle(ApiDoc $annotation, array $annotations, Route $route, \ReflectionMethod $method); }