Elgg\Timer::hasEnded PHP Method

hasEnded() public method

Has the end of the period been recorded?
public hasEnded ( array $keys ) : boolean
$keys array Keys to identify period. E.g. ['startup', __FUNCTION__]
return boolean
    public function hasEnded(array $keys)
    {
        $node = $this->getTreeNode($keys);
        return isset($node[self::MARKER_END]);
    }