Fixed phpdoc

This commit is contained in:
Christophe Coevoet 2012-05-23 00:20:50 +02:00
parent 378f21ec10
commit 84ad827c89

View File

@ -28,7 +28,7 @@ class ApiDocExtractor
private $container; private $container;
/** /**
* @var \ymfony\Component\Routing\RouterInterface * @var \Symfony\Component\Routing\RouterInterface
*/ */
private $router; private $router;
@ -116,7 +116,7 @@ class ApiDocExtractor
* Returns the ReflectionMethod for the given controller string * Returns the ReflectionMethod for the given controller string
* *
* @param string $controller * @param string $controller
* @return ReflectionMethod|null * @return \ReflectionMethod|null
*/ */
public function getReflectionMethod($controller) public function getReflectionMethod($controller)
{ {
@ -174,7 +174,7 @@ class ApiDocExtractor
* *
* @param ApiDoc $annotation * @param ApiDoc $annotation
* @param Route $route * @param Route $route
* @param ReflectionMethod $method * @param \ReflectionMethod $method
* @return array * @return array
*/ */
protected function getData(ApiDoc $annotation, Route $route, \ReflectionMethod $method) protected function getData(ApiDoc $annotation, Route $route, \ReflectionMethod $method)