blob: cfc5c2062292b2cb00b0eca3584f9f71efaa8545 (
plain)
| 1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
 | <?php
use Symfony\Component\HttpFoundation\Response;
class phpbb_ext_foo_controller
{
	/**
	* Handle method
	*
	* @return null
	*/
	public function handle()
	{
		return new Response('Test', 200);
	}
}
 |