phpbb/tests/controller/ext/foo/controller.php
2012-11-16 16:25:09 -05:00

23 lines
265 B
PHP

<?php
use Symfony\Component\HttpFoundation\Response;
class phpbb_ext_foo_controller
{
/**
* Constructor
*/
public function __construct()
{
}
/**
* Handle method
*
* @return null
*/
public function handle()
{
return new Response('Test', 200);
}
}