mirror of
https://github.com/phpbb/phpbb.git
synced 2025-06-09 04:48:53 +00:00
class loader now expects all classes to be prefixed with a backslash when resolving paths PHPBB3-11700
8 lines
72 B
PHP
8 lines
72 B
PHP
<?php
|
|
|
|
namespace foo\bar;
|
|
|
|
class ext extends \phpbb\extension\base
|
|
{
|
|
|
|
}
|