PATH:
home
/
lab2454c
/
healthvalidate.com
/
vendor
/
cloudinary
/
cloudinary_php
/
src
/
Transformation
/
Expression
<?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; /** * Defines the supported operators for arithmetic expressions. * * **Learn more**: <a * href="https://cloudinary.com/documentation/user_defined_variables#arithmetic_expressions" target="_blank"> * Arithmetic expressions</a> * * * @api */ class Expression extends BaseExpression { use ArithmeticOperatorBuilderTrait; use RelationalOperatorBuilderTrait; use StringRelationalOperatorBuilderTrait; use LogicalOperatorBuilderTrait; /** * Creates an instance of Expression from a raw string. * * @param string $expression Arithmetic expression * * @return static */ public static function expression($expression) { return new static($expression); } }
[+]
Operand
[+]
..
[-] BaseExpression.php
[edit]
[-] Expression.php
[edit]
[-] ExpressionTrait.php
[edit]
[+]
Operator
[-] ExpressionComponent.php
[edit]
[-] BaseExpressionComponent.php
[edit]
[-] ExpressionOperator.php
[edit]
[-] ExpressionUtils.php
[edit]