aboutsummaryrefslogtreecommitdiffstats
path: root/tests/controller/ext/foo/controller.php
blob: 72b8560c204ab955aa672836b584957e851f92d2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<?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);
	}
}