astrXbian/www/multitube/vendor/nikic/php-parser/test/code/prettyPrinter/stmt/namespaces.test
2021-03-20 01:33:02 +01:00

50 lines
376 B
Plaintext

Namespaces
-----
<?php
namespace Foo;
function foo()
{
}
namespace Bar;
function bar()
{
}
-----
namespace Foo;
function foo()
{
}
namespace Bar;
function bar()
{
}
-----
<?php
namespace Foo {
function foo()
{
}
}
namespace {
function glob() {
}
}
-----
namespace Foo {
function foo()
{
}
}
namespace {
function glob()
{
}
}