Skip to content
This repository has been archived by the owner on Jul 4, 2018. It is now read-only.

Commit

Permalink
minor #1074 Fix: Unnecessary FCQNs (localheinz)
Browse files Browse the repository at this point in the history
This PR was merged into the 1.2 branch.

Discussion
----------

Fix: Unnecessary FCQNs

Unnecessary FQCNs are unnecessary.

Commits
-------

51b177f Fix: Unnecessary FCQN
  • Loading branch information
fabpot committed Dec 16, 2014
2 parents bbb63a5 + 51b177f commit f64ac7b
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 16 deletions.
16 changes: 8 additions & 8 deletions src/Silex/Controller.php
Expand Up @@ -19,14 +19,14 @@
* __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
Expand Down
16 changes: 8 additions & 8 deletions src/Silex/ControllerCollection.php
Expand Up @@ -24,14 +24,14 @@
* __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>
Expand Down

0 comments on commit f64ac7b

Please sign in to comment.