CronLingo\Parser::seek PHP Method

seek() protected method

Seek a specific token
protected seek ( $index ) : boolean
$index
return boolean
    protected function seek($index)
    {
        if (isset($this->tokens[$index])) {
            return $this->tokens[$index];
        }
        return false;
    }