1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-10-06 04:31:38 +02:00
Files
php-phpbb/tests/controller/phpbb/controller/foo.php
2013-07-14 01:32:34 -04:00

17 lines
194 B
PHP

<?php
use Symfony\Component\HttpFoundation\Response;
class phpbb_controller_foo
{
/**
* Bar method
*
* @return null
*/
public function bar()
{
return new Response('bar()', 200);
}
}