mirror of
https://github.com/phpbb/phpbb.git
synced 2025-06-08 04:18:52 +00:00
23 lines
257 B
PHP
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);
|
|
}
|
|
}
|