Jyxo\Input\Fluent::walk PHP Method

walk() public method

Automatically adds the isArray validator.
public walk ( boolean $addFilter = true ) : self
$addFilter boolean Add the Trim filter (removes empty elements)
return self
    public function walk(bool $addFilter = true) : self
    {
        $this->validate('isArray');
        if (false != $addFilter) {
            $this->filter('trim');
        }
        $this->chain = $this->chain->addWalk();
        return $this;
    }