1
0
Fork 0
php-language-server/tests/Validation/cases/scopedPropertyAccess5.php

13 lines
278 B
PHP
Raw Normal View History

<?php
class TestClass implements TestInterface {
/**
* Lorem excepteur officia sit anim velit veniam enim.
*
* @var TestClass[]
*/
public static $testProperty;
}
echo TestClass::$testProperty;
echo TestClass::$staticTestProperty[123]->testProperty;