PATH:
home
/
lab2454c
/
tripvare.com
/
backup
/
vendor
/
cloudinary
/
cloudinary_php
/
src
/
Transformation
/
Border
<?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 BorderStyleTrait * * @api */ trait BorderStyleTrait { /** * Adds a border around the image. * * @param int $width The width in pixels. * @param string $color The color of the border. * * @return Border */ public static function solid($width = null, $color = null) { return (new Border())->style('solid')->width($width)->color($color); } }
[-] BorderQualifier.php
[edit]
[+]
..
[-] Border.php
[edit]
[-] BorderQualifierTrait.php
[edit]
[-] BorderValue.php
[edit]
[-] BorderStyleTrait.php
[edit]