1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-06-24 03:53:15 +02:00
Files
php-phpbb/tests/controller/includes/controller/foo.php
2012-11-16 16:47:32 -05: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);
}
}