Elgg\Timer::end PHP Method

end() public method

Record the end time of a period
public end ( array $keys ) : void
$keys array Keys to identify period. E.g. ['startup', __FUNCTION__]
return void
    public function end(array $keys)
    {
        $this->getTreeNode($keys)[self::MARKER_END] = microtime();
    }