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

Commit

Permalink
fix PHP 8.1 deprecation notice (#918)
Browse files Browse the repository at this point in the history
  • Loading branch information
afilippov1985 authored Feb 14, 2022
1 parent 2df8ee3 commit 345d57f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Dashboard/DashboardLogger.php
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ public static function log($appId, string $type, array $attributes = [])
'channel' => $channelName,
'data' => [
'type' => $type,
'time' => strftime('%H:%M:%S'),
'time' => date('H:i:s'),
] + $attributes,
]);
}
Expand Down

0 comments on commit 345d57f

Please sign in to comment.