From 77cb637571b7222928304a38ccedbd1439801551 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Arne=20J=C3=B8rgensen?= Date: Tue, 12 Nov 2024 07:06:51 +0100 Subject: [PATCH] Fix use deprecated DATE_ISO8601 --- src/SyncCommand.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/SyncCommand.php b/src/SyncCommand.php index 20e90cf..8b6275a 100644 --- a/src/SyncCommand.php +++ b/src/SyncCommand.php @@ -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}");