Error: PHP: Could not tick level "world": microtime() expects parameter 1 to be boolean, integer given[15:24:19] [Server thread/CRITICAL]: TypeError: "microtime() expects parameter 1 to be boolean, integer given" (EXCEPTION) in "CLAAPI-master/src/CLADevs/utils/Timings" at line 30 Full Code: PHP: public static function startTiming(string $description): bool{ self::$timingsHolder[$description] = round(microtime(1)); } Line 30 code: PHP: self::$timingsHolder[$description] = round(microtime(1)); Thanks for help.
Replace "microtime(1)" with "microtime(true)". Look at the parameter specification of the function on php.net to find out why.