mirror of
https://github.com/phpbb/phpbb.git
synced 2025-07-31 22:10:45 +02:00
[ticket/12090] Pass route name to url() to allow admins to change the routes
PHPBB3-12090
This commit is contained in:
18
tests/controller/ext/vendor2/foo/controller.php
Normal file
18
tests/controller/ext/vendor2/foo/controller.php
Normal file
@@ -0,0 +1,18 @@
|
||||
<?php
|
||||
|
||||
namespace foo;
|
||||
|
||||
use Symfony\Component\HttpFoundation\Response;
|
||||
|
||||
class controller
|
||||
{
|
||||
/**
|
||||
* Handle method
|
||||
*
|
||||
* @return null
|
||||
*/
|
||||
public function handle()
|
||||
{
|
||||
return new Response('Test', 200);
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user