Merge pull request #562 from lmammino/patch-1

Fixed type annotations
This commit is contained in:
William Durand 2015-01-01 18:25:04 +01:00
commit d641bbf32f

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);
} }