From 4c50cc011dc81740481088d86ca1d118f2dfe4be Mon Sep 17 00:00:00 2001 From: Philip Nelson Date: Sat, 9 Dec 2017 11:48:01 +1100 Subject: [PATCH] formatting --- src/SignatureInformationFactory.php | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/src/SignatureInformationFactory.php b/src/SignatureInformationFactory.php index 0095d5c..6b8a1f0 100644 --- a/src/SignatureInformationFactory.php +++ b/src/SignatureInformationFactory.php @@ -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) + ); } /**