File: /var/www/html/vendor/cloudinary/cloudinary_php/src/Asset/AssetInterface.php
<?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\Asset;
use JsonSerializable;
/**
* Interface AssetInterface
*/
interface AssetInterface extends JsonSerializable
{
/**
* Creates a new asset from the provided string (URL).
*
* @param string $string The asset string (URL).
*
* @return mixed
*/
public static function fromString($string);
/**
* Creates a new asset from the provided JSON.
*
* @param string|array $json The asset json. Can be an array or a JSON string.
*
* @return mixed
*/
public static function fromJson($json);
/**
* Creates a new asset from the provided source and an array of (legacy) parameters.
*
* @param string $source The public ID of the asset.
* @param array $params The asset parameters.
*
* @return mixed
*/
public static function fromParams($source, $params);
/**
* Imports data from the provided string (URL).
*
* @param string $string The asset string (URL).
*
* @return mixed
*/
public function importString($string);
/**
* Imports data from the provided JSON.
*
* @param string|array $json The asset json. Can be an array or a JSON string.
*
* @return mixed
*/
public function importJson($json);
/**
* Serializes to string.
*
* @return string
*/
public function __toString();
/**
* Serializes to json.
*
* @return mixed
*/
#[\ReturnTypeWillChange]
public function jsonSerialize();
}