1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-07-27 20:10:18 +02:00
Files
php-phpbb/tests/functional/fixtures/ext/foo/bar/ext.php
Nils Adermann fe36375a36 [ticket/11700] Fix extension loading with namespaces
class loader now expects all classes to be prefixed with a backslash
when resolving paths

PHPBB3-11700
2013-09-19 18:29:08 +02:00

9 lines
72 B
PHP

<?php
namespace foo\bar;
class ext extends \phpbb\extension\base
{
}