MetaModels\Filter\Rules\Condition\ConditionOr::__construct PHP Метод

__construct() публичный Метод

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;
    }