mirror of
https://github.com/phpbb/phpbb.git
synced 2025-07-27 20:10:18 +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
|
|
{
|
|
|
|
}
|