1
0
Fork 0
php-language-server/fixtures/signature/methodClosed.php

15 lines
186 B
PHP
Raw Normal View History

2017-07-14 23:12:48 +00:00
<?php
class HelpClass1
{
public function method(string $param = "")
{
}
public function test()
{
$this->method();
}
}
$a = new HelpClass1;
$a->method();