From 41b0be3aec3ea55f119c60a306ce163b05cf6345 Mon Sep 17 00:00:00 2001 From: "Eirik S. Morland" Date: Fri, 25 Jan 2019 18:00:59 +0100 Subject: [PATCH] Code style --- src/ViolinistMessages.php | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/ViolinistMessages.php b/src/ViolinistMessages.php index 5d2b13e..f392adc 100644 --- a/src/ViolinistMessages.php +++ b/src/ViolinistMessages.php @@ -68,10 +68,10 @@ public function getPullRequestBody(ViolinistUpdate $msg) public function getPullRequestTitle(ViolinistUpdate $msg) { return $this->twig->load('pull-request-title.twig')->render([ - 'security_prefix' => $msg->isSecurityUpdate() ? '[SECURITY] ' : '', - 'name' => $msg->getName(), - 'current_version' => $msg->getCurrentVersion(), - 'new_version' => $msg->getNewVersion(), + 'security_prefix' => $msg->isSecurityUpdate() ? '[SECURITY] ' : '', + 'name' => $msg->getName(), + 'current_version' => $msg->getCurrentVersion(), + 'new_version' => $msg->getNewVersion(), ]); } }