Commit 51b177f0 authored by Andreas Möller's avatar Andreas Möller

Fix: Unnecessary FCQN

parent bbb63a5d
......@@ -19,14 +19,14 @@ use Silex\Exception\ControllerFrozenException;
* __call() forwards method-calls to Route, but returns instance of Controller
* listing Route's methods below, so that IDEs know they are valid
*
* @method \Silex\Controller assert(string $variable, string $regexp)
* @method \Silex\Controller value(string $variable, mixed $default)
* @method \Silex\Controller convert(string $variable, mixed $callback)
* @method \Silex\Controller method(string $method)
* @method \Silex\Controller requireHttp()
* @method \Silex\Controller requireHttps()
* @method \Silex\Controller before(mixed $callback)
* @method \Silex\Controller after(mixed $callback)
* @method Controller assert(string $variable, string $regexp)
* @method Controller value(string $variable, mixed $default)
* @method Controller convert(string $variable, mixed $callback)
* @method Controller method(string $method)
* @method Controller requireHttp()
* @method Controller requireHttps()
* @method Controller before(mixed $callback)
* @method Controller after(mixed $callback)
* @author Igor Wiedler <igor@wiedler.ch>
*/
class Controller
......
......@@ -24,14 +24,14 @@ use Symfony\Component\HttpFoundation\Request;
* __call() forwards method-calls to Route, but returns instance of ControllerCollection
* listing Route's methods below, so that IDEs know they are valid
*
* @method \Silex\ControllerCollection assert(string $variable, string $regexp)
* @method \Silex\ControllerCollection value(string $variable, mixed $default)
* @method \Silex\ControllerCollection convert(string $variable, mixed $callback)
* @method \Silex\ControllerCollection method(string $method)
* @method \Silex\ControllerCollection requireHttp()
* @method \Silex\ControllerCollection requireHttps()
* @method \Silex\ControllerCollection before(mixed $callback)
* @method \Silex\ControllerCollection after(mixed $callback)
* @method ControllerCollection assert(string $variable, string $regexp)
* @method ControllerCollection value(string $variable, mixed $default)
* @method ControllerCollection convert(string $variable, mixed $callback)
* @method ControllerCollection method(string $method)
* @method ControllerCollection requireHttp()
* @method ControllerCollection requireHttps()
* @method ControllerCollection before(mixed $callback)
* @method ControllerCollection after(mixed $callback)
*
* @author Igor Wiedler <igor@wiedler.ch>
* @author Fabien Potencier <fabien@symfony.com>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment