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

__construct() public method

Creates an instance of this class.
public __construct ( MetaModels\Attribute\IAttribute $objAttribute, mixed $varValue )
$objAttribute MetaModels\Attribute\IAttribute The query that shall be executed.
$varValue mixed The value to compare against.
    public function __construct(IAttribute $objAttribute, $varValue)
    {
        $this->objAttribute = $objAttribute;
        $this->varValue = $varValue;
    }