1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-07-31 22:10:45 +02:00

[feature/controller] Adapt functional tests given new controller framework

PHPBB3-10864
This commit is contained in:
David King
2012-11-16 09:23:57 -05:00
parent c9588572c9
commit 7691755883
16 changed files with 69 additions and 193 deletions

View File

@@ -0,0 +1,10 @@
<?php
use Symfony\Component\HttpFoundation\Response;
class phpbb_ext_foo_bar_controller
{
public function handle()
{
return new Response('foo/bar controller handle() method', 200);
}
}