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

15 lines
186 B
PHP
Raw Normal View History

2017-01-19 20:18:14 +00:00
<?php
class HelpClass1
{
2017-01-19 21:54:05 +00:00
public function method(string $param = "")
2017-01-19 20:18:14 +00:00
{
}
public function test()
{
$this->method();
}
}
2017-01-19 21:54:05 +00:00
$a = new HelpClass1;
2017-01-20 15:47:18 +00:00
$a->method();