1
0
Fork 0
php-language-server/fixtures/constant-with-namespace.php

23 lines
197 B
PHP
Raw Normal View History

2017-03-19 12:55:41 +00:00
<?php
namespace HELLO {
/**
* Does something really cool!
*/
function world() {
}
\HELLO;
}
namespace {
define('HELLO', true);
HELLO;
HELLO\world();
}