mirror of
https://github.com/phpbb/phpbb.git
synced 2025-07-29 21:10:31 +02:00
class loader now expects all classes to be prefixed with a backslash when resolving paths PHPBB3-11700
9 lines
72 B
PHP
9 lines
72 B
PHP
<?php
|
|
|
|
namespace foo\bar;
|
|
|
|
class ext extends \phpbb\extension\base
|
|
{
|
|
|
|
}
|