1
0
Fork 0
php-language-server/fixtures/completion/constant_with_namespace.php

24 lines
232 B
PHP
Raw Permalink Normal View History

2017-04-17 15:03:08 +00:00
<?php
namespace HELLO {
/**
* Does something really cool!
*/
function world() {
}
\HE
}
namespace {
/**
* Lorem ipsum dolor sit amet.
*/
define('HELLO', true);
HELLO\world();
}