Skip to content
This repository has been archived by the owner on Apr 26, 2020. It is now read-only.

Commit

Permalink
fixes issue #210 (#220)
Browse files Browse the repository at this point in the history
  • Loading branch information
Gamesh authored and antonmedv committed May 14, 2019
1 parent 53056fb commit aa6e7bd
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
3 changes: 3 additions & 0 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -39,5 +39,8 @@
},
"require-dev": {
"deployer/deployer": "^6.3"
},
"require": {
"php": "~7.0"
}
}
4 changes: 2 additions & 2 deletions recipe/sentry.php
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
desc('Notifying Sentry of deployment');
task(
'deploy:sentry',
function () {
static function () {
$now = date('c');

$defaultConfig = [
Expand Down Expand Up @@ -174,7 +174,7 @@ static function (string $line): bool {

return array_map(
static function (string $line): array {
[$ref, $authorName, $authorEmail, $timestamp] = explode('#', $line);
list($ref, $authorName, $authorEmail, $timestamp) = explode('#', $line);

return [
'id' => $ref,
Expand Down

0 comments on commit aa6e7bd

Please sign in to comment.