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

11 lines
117 B
PHP
Raw Normal View History

<?php
namespace MyNamespace;
class A {
static function a() {
$b = new a;
$c = $b->a();
}
}