PATH:
home
/
lab2454c
/
tripvare.com
/
backup
/
vendor
/
cloudinary
/
cloudinary_php
/
src
/
Configuration
<?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\Configuration; use JsonSerializable; /** * Interface ConfigurableInterface */ interface ConfigurableInterface extends JsonSerializable { /** * Creates a new instance using json string or an array as a source. * * @param string|array $json Configuration json * * @return static */ public static function fromJson($json); /** * Creates a new instance using Cloudinary url as a source. * * @param string $cloudinaryUrl The Cloudinary url. * * @return static */ public static function fromCloudinaryUrl($cloudinaryUrl); /** * Imports configuration from a json string or an array as a source. * * @param string|array $json Configuration json * * @return static */ public function importJson($json); /** * Imports configuration from a Cloudinary url as a source. * * @param string $cloudinaryUrl The Cloudinary url. * * @return static */ public function importCloudinaryUrl($cloudinaryUrl); /** * Serialises to a string representation. * * @return string */ public function toString(); /** * Serialises to a string representation. * * @return string */ public function __toString(); /** * Serialises to a json array. * * @param bool $includeSensitive Whether to include sensitive keys during serialisation. * @param bool $includeEmptyKeys Whether to include keys without values. * @param bool $includeEmptySections Whether to include sections without keys with non-empty values. * * @return mixed data which can be serialized by json_encode. */ public function jsonSerialize($includeSensitive = true, $includeEmptyKeys = false, $includeEmptySections = false); }
[-] ConfigUtils.php
[edit]
[-] AssetConfigTrait.php
[edit]
[-] ResponsiveBreakpointsConfig.php
[edit]
[-] CloudConfigTrait.php
[edit]
[-] AuthTokenConfig.php
[edit]
[-] BaseConfigSection.php
[edit]
[+]
..
[-] TagConfig.php
[edit]
[-] ConfigurableInterface.php
[edit]
[-] UrlConfig.php
[edit]
[+]
Provisioning
[-] ApiConfig.php
[edit]
[-] UrlConfigTrait.php
[edit]
[-] CloudConfig.php
[edit]
[-] Configuration.php
[edit]
[-] LoggingConfig.php
[edit]