PATH:
home
/
lab2454c
/
tripvare.com
/
vendor
/
cloudinary
/
cloudinary_php
/
src
/
Transformation
/
Condition
<?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; /** * Trait ConditionQualifierTrait * * @api */ trait ConditionQualifierTrait { /** * Sets up a conditional transformation. * * @param string $expression The condition to meet in order to apply the transformation. * * @return IfCondition * * @see \Cloudinary\Transformation\IfCondition * @see https://cloudinary.com/documentation/conditional_transformations Conditional transformations */ public static function ifCondition($expression) { return new IfCondition($expression); } }
[-] Conditional.php
[edit]
[+]
..
[-] EndIfCondition.php
[edit]
[-] IfCondition.php
[edit]
[-] IfElse.php
[edit]
[-] ConditionQualifierTrait.php
[edit]