PATH:
home
/
lab2454c
/
tripvare.com
/
vendor
/
cloudinary
/
cloudinary_php
/
src
/
Transformation
/
Effect
/
Argument
<?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 EffectTypeTrait * * @property array qualifiers The qualifiers of the action. */ trait EffectActionTypeTrait { /** * Setter of the effect type. * * @param string $type The type to set. * * @return $this */ public function type($type) { $this->qualifiers[EffectQualifier::getName()]->type($type); return $this; } }
[-] EffectMode.php
[edit]
[-] EffectRange.php
[edit]
[+]
..
[-] EffectModeTrait.php
[edit]
[-] EffectActionTypeTrait.php
[edit]
[-] EffectType.php
[edit]
[-] EffectTypeTrait.php
[edit]
[-] EffectName.php
[edit]