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

12 lines
171 B
PHP

<?php
class NewStatic {
public static function main()
{
$command = new static;
return $command->foo();
}
private function foo() {
}
}