Skip to content
This repository was archived by the owner on Feb 7, 2024. It is now read-only.

Commit 345d57f

Browse files
fix PHP 8.1 deprecation notice (#918)
1 parent 2df8ee3 commit 345d57f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Dashboard/DashboardLogger.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ public static function log($appId, string $type, array $attributes = [])
8585
'channel' => $channelName,
8686
'data' => [
8787
'type' => $type,
88-
'time' => strftime('%H:%M:%S'),
88+
'time' => date('H:i:s'),
8989
] + $attributes,
9090
]);
9191
}

0 commit comments

Comments
 (0)