Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Submit feedback
Sign in
Toggle navigation
S
Silex
Project overview
Project overview
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Commits
Open sidebar
common
Silex
Commits
51b177f0
Commit
51b177f0
authored
Dec 14, 2014
by
Andreas Möller
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix: Unnecessary FCQN
parent
bbb63a5d
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
16 additions
and
16 deletions
+16
-16
src/Silex/Controller.php
src/Silex/Controller.php
+8
-8
src/Silex/ControllerCollection.php
src/Silex/ControllerCollection.php
+8
-8
No files found.
src/Silex/Controller.php
View file @
51b177f0
...
@@ -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
...
...
src/Silex/ControllerCollection.php
View file @
51b177f0
...
@@ -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>
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment