Skip to content

Commit

Permalink
Fix use deprecated DATE_ISO8601
Browse files Browse the repository at this point in the history
  • Loading branch information
arnested committed Nov 12, 2024
1 parent fac955b commit 77cb637
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/SyncCommand.php
Original file line number Diff line number Diff line change
Expand Up @@ -297,7 +297,7 @@ protected function log(OutputInterface $output, string $message): void
return;
}

$timestamp = \gmdate(\DATE_ISO8601);
$timestamp = \gmdate(\DATE_ATOM);
$jira_project = \getenv('JIRA_PROJECT');

$output->writeln("{$timestamp} - {$jira_project} - {$message}");
Expand Down

0 comments on commit 77cb637

Please sign in to comment.