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:
10
tests/functional/fixtures/ext/foo/bar/controller/controller.php
Executable file
10
tests/functional/fixtures/ext/foo/bar/controller/controller.php
Executable 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);
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user