aboutsummaryrefslogtreecommitdiffstats
path: root/tests/controller/ext/foo/controller.php
blob: ce2233b3c9b370fc54fa27ea11df43c26ed6d9f4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
<?php

namespace foo;

use Symfony\Component\HttpFoundation\Response;

class controller
{
	/**
	* Handle method
	*
	* @return null
	*/
	public function handle()
	{
		return new Response('Test', 200);
	}
}