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; ...@@ -19,14 +19,14 @@ use Silex\Exception\ControllerFrozenException;
* __call() forwards method-calls to Route, but returns instance of Controller * __call() forwards method-calls to Route, but returns instance of Controller
* listing Route's methods below, so that IDEs know they are valid * listing Route's methods below, so that IDEs know they are valid
* *
* @method \Silex\Controller assert(string $variable, string $regexp) * @method Controller assert(string $variable, string $regexp)
* @method \Silex\Controller value(string $variable, mixed $default) * @method Controller value(string $variable, mixed $default)
* @method \Silex\Controller convert(string $variable, mixed $callback) * @method Controller convert(string $variable, mixed $callback)
* @method \Silex\Controller method(string $method) * @method Controller method(string $method)
* @method \Silex\Controller requireHttp() * @method Controller requireHttp()
* @method \Silex\Controller requireHttps() * @method Controller requireHttps()
* @method \Silex\Controller before(mixed $callback) * @method Controller before(mixed $callback)
* @method \Silex\Controller after(mixed $callback) * @method Controller after(mixed $callback)
* @author Igor Wiedler <igor@wiedler.ch> * @author Igor Wiedler <igor@wiedler.ch>
*/ */
class Controller class Controller
......
...@@ -24,14 +24,14 @@ use Symfony\Component\HttpFoundation\Request; ...@@ -24,14 +24,14 @@ use Symfony\Component\HttpFoundation\Request;
* __call() forwards method-calls to Route, but returns instance of ControllerCollection * __call() forwards method-calls to Route, but returns instance of ControllerCollection
* listing Route's methods below, so that IDEs know they are valid * listing Route's methods below, so that IDEs know they are valid
* *
* @method \Silex\ControllerCollection assert(string $variable, string $regexp) * @method ControllerCollection assert(string $variable, string $regexp)
* @method \Silex\ControllerCollection value(string $variable, mixed $default) * @method ControllerCollection value(string $variable, mixed $default)
* @method \Silex\ControllerCollection convert(string $variable, mixed $callback) * @method ControllerCollection convert(string $variable, mixed $callback)
* @method \Silex\ControllerCollection method(string $method) * @method ControllerCollection method(string $method)
* @method \Silex\ControllerCollection requireHttp() * @method ControllerCollection requireHttp()
* @method \Silex\ControllerCollection requireHttps() * @method ControllerCollection requireHttps()
* @method \Silex\ControllerCollection before(mixed $callback) * @method ControllerCollection before(mixed $callback)
* @method \Silex\ControllerCollection after(mixed $callback) * @method ControllerCollection after(mixed $callback)
* *
* @author Igor Wiedler <igor@wiedler.ch> * @author Igor Wiedler <igor@wiedler.ch>
* @author Fabien Potencier <fabien@symfony.com> * @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