-
Notifications
You must be signed in to change notification settings - Fork 151
Expand file tree
/
Copy pathAssetQualifiers.php
More file actions
52 lines (50 loc) · 1.18 KB
/
Copy pathAssetQualifiers.php
File metadata and controls
52 lines (50 loc) · 1.18 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
<?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;
/**
* Class AssetQualifiers
*
* @package Cloudinary\Tag
*/
abstract class AssetQualifiers
{
/**
* @var array ASSET_KEYS A list of keys used by the fromParams() function
*
* @internal
*/
public const ASSET_KEYS
= [
'api_secret',
'auth_token',
'cdn_subdomain',
'cloud_name',
'cname',
'format',
'long_url_signature',
'private_cdn',
'resource_type',
'secure',
'secure_cdn_subdomain',
'secure_distribution', // deprecated, still consume for backwards compatibility
'secure_cname',
'shorten',
'sign_url',
'ssl_detected',
'type',
'url_suffix',
'use_root_path',
'version',
'responsive',
'responsive_width',
'hidpi',
'client_hints',
];
}