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

23 lines
197 B
PHP

<?php
namespace HELLO {
/**
* Does something really cool!
*/
function world() {
}
\HELLO;
}
namespace {
define('HELLO', true);
HELLO;
HELLO\world();
}