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

namespace phpbb\controller;

use Symfony\Component\HttpFoundation\Response;

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