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_controller_foo { /** * Constructor */ public function __construct() { } /** * Bar method * * @return null */ public function bar() { return new Response('bar()', 200); } }