1
0
Fork 0
mirror of https://github.com/phpbb/phpbb.git synced 2025-06-19 17:58:51 +00:00
phpbb/tests/controller/ext/vendor2/foo/controller.php
2014-03-07 12:32:38 +01:00

18 lines
205 B
PHP

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