PATH:
home
/
lab2454c
/
tripvare.com
/
vendor
/
cloudinary
/
cloudinary_php
/
src
/
Transformation
/
Qualifier
/
Color
<?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\ClassUtils; /** * Trait TextColorTrait */ trait TextColorTrait { /** * Sets the color of the text. * * @param string $color The color. * * @return $this */ public function textColor($color) { $this->addQualifier(ClassUtils::verifyInstance($color, ColorQualifier::class)); return $this; } }
[+]
..
[-] TextColorTrait.php
[edit]
[-] ColorToReplaceTrait.php
[edit]
[-] ColorTrait.php
[edit]
[-] ColorQualifier.php
[edit]
[-] ColorQualifierTrait.php
[edit]