diff options
| author | David King <imkingdavid@gmail.com> | 2012-10-19 19:54:19 -0400 |
|---|---|---|
| committer | David King <imkingdavid@gmail.com> | 2012-11-16 16:25:09 -0500 |
| commit | 06158693c7b846518abfe9d72491fc7376e457f3 (patch) | |
| tree | 46ce44bfeab4bb9f5275fee8ad8e01df3babaddf /tests/controller/includes | |
| parent | 65dde648cab316fd0f0715f13d57ef45452398a3 (diff) | |
| download | forums-06158693c7b846518abfe9d72491fc7376e457f3.tar forums-06158693c7b846518abfe9d72491fc7376e457f3.tar.gz forums-06158693c7b846518abfe9d72491fc7376e457f3.tar.bz2 forums-06158693c7b846518abfe9d72491fc7376e457f3.tar.xz forums-06158693c7b846518abfe9d72491fc7376e457f3.zip | |
[feature/controller] Implement a front controller
PHPBB3-10864
Diffstat (limited to 'tests/controller/includes')
| -rw-r--r-- | tests/controller/includes/controller/foo.php | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/tests/controller/includes/controller/foo.php b/tests/controller/includes/controller/foo.php new file mode 100644 index 0000000000..cd1c4849cb --- /dev/null +++ b/tests/controller/includes/controller/foo.php @@ -0,0 +1,23 @@ +<?php + +use Symfony\Component\HttpFoundation\Response; + +class phpbb_controller_foo +{ + /** + * Constructor + */ + public function __construct() + { + } + + /** + * Bar method + * + * @return null + */ + public function bar() + { + return new Response('bar()', 200); + } +} |
