PATH:
home
/
lab2454c
/
healthvalidate.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; use Cloudinary\Transformation\Qualifier\BaseQualifier; /** * Class EndIfCondition */ class EndIfCondition extends BaseQualifier { /** * @var string $key Serialization key. */ protected static $key = 'if'; /** * EndIf constructor. * */ public function __construct() { parent::__construct('end'); } }
[-] Conditional.php
[edit]
[+]
..
[-] EndIfCondition.php
[edit]
[-] IfCondition.php
[edit]
[-] IfElse.php
[edit]
[-] ConditionQualifierTrait.php
[edit]