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

10 lines
96 B
PHP

<?php
namespace MyNamespace;
class A {
static function a() {
$a = A::a();
}
}