mirror of
https://github.com/phpbb/phpbb.git
synced 2025-05-12 10:35:20 +02:00
24 lines
265 B
PHP
24 lines
265 B
PHP
<?php
|
|
|
|
use Symfony\Component\HttpFoundation\Response;
|
|
|
|
class phpbb_ext_foo_controller
|
|
{
|
|
/**
|
|
* Constructor
|
|
*/
|
|
public function __construct()
|
|
{
|
|
}
|
|
|
|
/**
|
|
* Handle method
|
|
*
|
|
* @return null
|
|
*/
|
|
public function handle()
|
|
{
|
|
return new Response('Test', 200);
|
|
}
|
|
}
|