SassLiteral::op_gt PHP Method

op_gt() public method

The SassScript > operation.
public op_gt ( sassLiteral $other ) : SassBoolean
$other sassLiteral the value to compare to this
return SassBoolean SassBoolean object with the value true if the values of this is greater than the value of other, false if it is not
    public function op_gt($other)
    {
        return new SassBoolean($this->value > $other->value);
    }