mageekguy\atoum\iterators\filters\recursives\closure::accept PHP Method

accept() public method

public accept ( )
    public function accept()
    {
        foreach ($this->closures as $closure) {
            if ($closure($this->current(), $this->key(), $this->getInnerIterator()) === false) {
                return false;
            }
        }
        return true;
    }