mirror of
https://github.com/phpbb/phpbb.git
synced 2025-06-11 17:01:07 +02:00
19 lines
206 B
PHP
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);
|
|
}
|
|
}
|