. */ declare(strict_types=1); namespace Fisharebest\Webtrees\Contracts; /** * What is the time? */ interface TimeFactoryInterface { /** * @return float */ public function now(): float; }