MetaModels\Filter\Rules\Comparing\GreaterThan::__construct PHP Method

__construct() public method

Creates an instance of this class.
public __construct ( MetaModels\Attribute\IAttribute $objAttribute, mixed $varValue, boolean $blnInclusive = false )
$objAttribute MetaModels\Attribute\IAttribute The attribute that shall be searched.
$varValue mixed The value to compare against.
$blnInclusive boolean If true, the passed value will be included in the check and therefore make the check an equal-or-greater test.
    public function __construct(IAttribute $objAttribute, $varValue, $blnInclusive = false)
    {
        $this->objAttribute = $objAttribute;
        $this->varValue = $varValue;
        $this->blnInclusive = $blnInclusive;
    }