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

Commit

Permalink
Bug with strict type while logging
Browse files Browse the repository at this point in the history
  • Loading branch information
Ralf Eggert committed Apr 11, 2018
1 parent b8ef50c commit 7204906
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 14 deletions.
26 changes: 13 additions & 13 deletions composer.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion src/Middleware/LogAlexaRequestMiddleware.php
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ public function process(Request $request, RequestHandlerInterface $handler): Res
&& $request->getHeaderLine('signaturecertchainurl')
) {
if ($this->logFlag) {
$microtime = explode('.', microtime(true));
$microtime = explode('.', (string) microtime(true));

$random = date('Y-m-d-H-i-s-') . $microtime[1];

Expand Down

0 comments on commit 7204906

Please sign in to comment.