mirror of
https://github.com/Studio-42/elFinder
synced 2026-06-08 12:37:09 +00:00
Update deprecated php type casts (#3739)
In PHP 8.5, non-canonical scalar type casts (boolean|double|integer|binary) deprecated. See https://php.watch/versions/8.5/boolean-double-integer-binary-casts-deprecated.
This commit is contained in:
@@ -4432,7 +4432,7 @@ var go = function() {
|
||||
protected function utime()
|
||||
{
|
||||
$time = explode(" ", microtime());
|
||||
return (double)$time[1] + (double)$time[0];
|
||||
return (float)$time[1] + (float)$time[0];
|
||||
}
|
||||
|
||||
/**
|
||||
|
||||
Reference in New Issue
Block a user