PATH:
home
/
lab2454c
/
tripvare.com
/
vendor
/
cloudinary
/
cloudinary_php
/
src
/
Transformation
/
Delivery
/
Format
<?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 FormatTrait * * @api */ trait FormatTrait { use AudioFormatTrait; use ImageFormatTrait; use VideoFormatTrait; /** * Named constructor. * * @param string|array $format The format. * * @return static * * @internal */ protected static function createFormat(...$format) { return new static(...$format); } /** * Auto format. * * @return static */ public static function auto() { return static::createFormat(FormatInterface::AUTO); } }
[-] AudioFormatInterface.php
[edit]
[-] AnimatedFormat.php
[edit]
[+]
..
[-] FormatQualifier.php
[edit]
[-] Format.php
[edit]
[-] ImageFormatTrait.php
[edit]
[-] FormatTrait.php
[edit]
[-] VideoFormatTrait.php
[edit]
[-] FormatQualifierTrait.php
[edit]
[-] AnimatedFormatTrait.php
[edit]
[-] ImageFormatInterface.php
[edit]
[-] AudioFormatTrait.php
[edit]
[-] VideoFormatInterface.php
[edit]
[-] FormatInterface.php
[edit]