1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-06-11 17:01:07 +02:00
Files
php-phpbb/tests/controller/phpbb/controller/foo.php
2013-09-19 18:50:08 +02:00

19 lines
206 B
PHP

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