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
{
$params = $this->createParameters($node);
$label = $this->createLabel($params);
return new SignatureInformation(
$label,
$params,
$this->definitionResolver->getDocumentationFromNode($node)
);
$label = $this->createLabel($params);
return new SignatureInformation(
$label,
$params,
$this->definitionResolver->getDocumentationFromNode($node)
);
}
/**