Skip to content

Commit

Permalink
CS fix
Browse files Browse the repository at this point in the history
  • Loading branch information
padraic committed Jul 15, 2017
1 parent 72e113f commit 27d97ac
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/functions.php
Original file line number Diff line number Diff line change
Expand Up @@ -70,14 +70,14 @@ function create_application(): SymfonyApplication
function get_version(): string
{
if ('phar:' === substr(__FILE__, 0, 5)) {
$gitVersion = "@git-version@";
$gitVersion = '@git-version@';
$semanticVersion = preg_replace(
["/\.\d\-/","/\-/"],
['-','-dev+'],
["/\.\d\-/", "/\-/"],
['-', '-dev+'],
$gitVersion,
1
);

return $semanticVersion;
}

Expand Down

0 comments on commit 27d97ac

Please sign in to comment.