mirror of
https://github.com/phpbb/phpbb.git
synced 2025-05-10 09:35:24 +02:00
class loader now expects all classes to be prefixed with a backslash when resolving paths PHPBB3-11700
19 lines
205 B
PHP
19 lines
205 B
PHP
<?php
|
|
|
|
namespace foo;
|
|
|
|
use Symfony\Component\HttpFoundation\Response;
|
|
|
|
class controller
|
|
{
|
|
/**
|
|
* Handle method
|
|
*
|
|
* @return null
|
|
*/
|
|
public function handle()
|
|
{
|
|
return new Response('Test', 200);
|
|
}
|
|
}
|