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

18 lines
223 B
PHP
Raw Normal View History

2017-01-19 20:18:14 +00:00
<?php
class HelpClass2
{
protected function method(string $param = "")
{
}
public function test()
{
2017-01-20 13:26:14 +00:00
$this->method(1,1);
2017-01-19 20:18:14 +00:00
}
}
2017-01-19 21:54:05 +00:00
$a = new HelpClass2;
2017-01-20 13:26:14 +00:00
$a
->method(
1,
array(),