Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix an error with newer PHP versions erroring on date() calls
This solves: Uncaught TypeError: date(): Argument #2 ($timestamp) must be of type ?int, string given in ... You can recreate this error with the following code: ``` $x = [ 'query_time' => '123456789 ms', 'query_time2' => 123456789 ]; k($x); ```
- Loading branch information