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

17 lines
201 B
PHP
Raw Permalink Normal View History

<?php
namespace MyNamespace;
class B {
function b() {
}
}
class A extends B {
function a () {
// TODO - should 'self' be included in references?
$a = self::b();
}
}