aboutsummaryrefslogtreecommitdiffstats
path: root/tests/controller/includes/controller/foo.php
blob: cd1c4849cbebee2cb202522f24d6371de956b551 (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_controller_foo
{
	/**
	* Constructor
	*/
	public function __construct()
	{	
	}

	/**
	* Bar method
	*
	* @return null
	*/
	public function bar()
	{
		return new Response('bar()', 200);
	}
}