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 ArithmeticExpressionOperatorsTrait * * @api */ trait ArithmeticOperatorBuilderTrait { /** * Add. * * @return ExpressionOperator */ public function add() { return $this->buildExpression(ArithmeticOperator::add()); } /** * Subtract. * * @return ExpressionOperator */ public function subtract() { return $this->buildExpression(ArithmeticOperator::subtract()); } /** * Multiply. * * @return ExpressionOperator */ public function multiply() { return $this->buildExpression(ArithmeticOperator::multiply()); } /** * Divide. * * @return ExpressionOperator */ public function divide() { return $this->buildExpression(ArithmeticOperator::divide()); } /** * Modulo. * * @return ExpressionOperator */ public function modulo() { return $this->buildExpression(ArithmeticOperator::modulo()); } }
[-] 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]