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

26 lines
256 B
PHP
Raw Normal View History

2017-03-19 12:55:41 +00:00
<?php
namespace HELLO {
/**
* Does something really cool!
*/
function world() {
}
2017-04-03 14:06:25 +00:00
\HE
2017-03-19 12:55:41 +00:00
}
namespace {
2017-04-03 14:06:25 +00:00
/**
* Lorem ipsum dolor sit amet.
*
* @var bool
*/
2017-03-19 12:55:41 +00:00
define('HELLO', true);
HELLO\world();
}