1
0
Fork 0
php-language-server/fixtures/symbols.php

33 lines
378 B
PHP
Raw Normal View History

<?php
namespace TestNamespace;
const TEST_CONST = 123;
class TestClass
{
const TEST_CLASS_CONST = 123;
public static $staticTestProperty;
public $testProperty;
public static function staticTestMethod()
{
}
public function testMethod($testParameter)
{
$testVariable = 123;
}
}
trait TestTrait
{
}
interface TestInterface
{
}