PATH:
home
/
lab2454c
/
tripvare.com
/
vendor
/
cloudinary
/
cloudinary_php
/
src
/
Transformation
/
Expression
/
Operator
<?php /** * This file is part of the Cloudinary PHP package. * * (c) Cloudinary * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace Cloudinary\Transformation\Expression; /** * Trait RelationalOperatorsTrait * * @api */ trait RelationalOperatorBuilderTrait { /** * Equals. * * @return ExpressionOperator */ public function equal() { return $this->buildExpression(RelationalOperator::equal()); } /** * Does not equal. * * @return ExpressionOperator */ public function notEqual() { return $this->buildExpression(RelationalOperator::notEqual()); } /** * Less than. * * @return ExpressionOperator */ public function lessThan() { return $this->buildExpression(RelationalOperator::lessThan()); } /** * Greater than. * * @return ExpressionOperator */ public function greaterThan() { return $this->buildExpression(RelationalOperator::greaterThan()); } /** * Less than or equals. * * @return ExpressionOperator */ public function lessThanOrEqual() { return $this->buildExpression(RelationalOperator::lessThanOrEqual()); } /** * Greater than or equals. * * @return ExpressionOperator */ public function greaterThanOrEqual() { return $this->buildExpression(RelationalOperator::greaterThanOrEqual()); } }
[-] BaseOperator.php
[edit]
[+]
..
[-] RelationalOperatorBuilderTrait.php
[edit]
[-] StringRelationalOperator.php
[edit]
[-] ArithmeticOperatorBuilderTrait.php
[edit]
[-] ArithmeticOperator.php
[edit]
[-] RelationalOperator.php
[edit]
[-] LogicalOperator.php
[edit]
[-] StringRelationalOperatorBuilderTrait.php
[edit]
[-] Operator.php
[edit]
[-] LogicalOperatorBuilderTrait.php
[edit]