phpbb/tests/controller/includes/controller/foo.php
2012-11-16 16:25:09 -05:00

23 lines
257 B
PHP

<?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);
}
}