1
0
Fork 0

formatting

pull/547/head
Philip Nelson 2017-12-09 11:48:01 +11:00
parent c7dc5af2d9
commit 4c50cc011d
1 changed files with 6 additions and 6 deletions

View File

@ -31,12 +31,12 @@ class SignatureInformationFactory
public function create(FunctionLike $node): SignatureInformation public function create(FunctionLike $node): SignatureInformation
{ {
$params = $this->createParameters($node); $params = $this->createParameters($node);
$label = $this->createLabel($params); $label = $this->createLabel($params);
return new SignatureInformation( return new SignatureInformation(
$label, $label,
$params, $params,
$this->definitionResolver->getDocumentationFromNode($node) $this->definitionResolver->getDocumentationFromNode($node)
); );
} }
/** /**