1
0
Fork 0

Fixed default value for parameters in SignatureInformation

pull/250/head
Ivan Bozhanov 2017-01-26 18:56:04 +02:00
parent 1f206052a5
commit 32b9984e94
1 changed files with 1 additions and 1 deletions

View File

@ -37,7 +37,7 @@ class SignatureInformation
* @param string|null $documentation The human-readable doc-comment of this signature.
* @param ParameterInformation[]|null $parameters The parameters of this signature.
*/
public function __construct(string $label = null, string $documentation = null, array $parameters = [])
public function __construct(string $label = null, string $documentation = null, array $parameters = null)
{
$this->label = $label;
$this->documentation = $documentation;