MetaModels\Filter\Rules\Condition\ConditionOr::__construct PHP Method

__construct() public method

Create a new FilterRule instance.
public __construct ( boolean $stopAfterMatch = false )
$stopAfterMatch boolean Flag determining if filtering shall return the first non-empty match.
    public function __construct($stopAfterMatch = false)
    {
        parent::__construct();
        $this->stopAfterMatch = $stopAfterMatch;
    }