Skip to content

Commit

Permalink
Code style
Browse files Browse the repository at this point in the history
  • Loading branch information
eiriksm committed Jan 25, 2019
1 parent 645adcd commit 41b0be3
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/ViolinistMessages.php
Expand Up @@ -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(),
]);
}
}

0 comments on commit 41b0be3

Please sign in to comment.