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

15 lines
188 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()
{
$this->method(
}
}
2017-01-19 21:54:05 +00:00
$a = new HelpClass2;
$a->method(1,