1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23
<?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); } }