mirror of
https://github.com/SpaceVim/SpaceVim.git
synced 2025-02-03 16:00:07 +08:00
29 lines
308 B
PHP
29 lines
308 B
PHP
|
<?php
|
||
|
namespace NS1;
|
||
|
class Foo {
|
||
|
}
|
||
|
const ZAP = '';
|
||
|
function bar(){}
|
||
|
|
||
|
interface FooInterface {
|
||
|
}
|
||
|
|
||
|
|
||
|
namespace NS1\SUBNS;
|
||
|
class FooSub {
|
||
|
}
|
||
|
function barsub(){
|
||
|
print 'barsub';
|
||
|
}
|
||
|
const ZAPSUB = '';
|
||
|
|
||
|
|
||
|
|
||
|
namespace NS1\SUBNS\SUBSUB;
|
||
|
class FooSubSub {
|
||
|
}
|
||
|
function barsubsub(){
|
||
|
print 'barsubsub';
|
||
|
}
|
||
|
const ZAPSUBSUB = '';
|