-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathContentstackRegion.php
More file actions
executable file
·35 lines (34 loc) · 1018 Bytes
/
ContentstackRegion.php
File metadata and controls
executable file
·35 lines (34 loc) · 1018 Bytes
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
<?php
/**
* Contentstack Regions
*
* PHP version 5
*
* @category PHP
* @package Contentstack
* @author Uttam K Ukkoji <uttamukkoji@gmail.com>
* @author Rohit Mishra <rhtmishra4545@gmail.com>
* @copyright 2012-2021 Contentstack. All Rights Reserved
* @license https://github.com/contentstack/contentstack-php/blob/master/LICENSE.txt MIT Licence
* @link https://pear.php.net/package/contentstack
* */
namespace Contentstack;
/**
* Contentstack Regions
*
* @category PHP
* @package Contentstack
* @author Uttam K Ukkoji <uttamukkoji@gmail.com>
* @author Rohit Mishra <rhtmishra4545@gmail.com>
* @copyright 2012-2021 Contentstack. All Rights Reserved
* @license https://github.com/contentstack/contentstack-php/blob/master/LICENSE.txt MIT Licence
* @link https://pear.php.net/package/contentstack
* */
class ContentstackRegion
{
const EU= "eu";
const US= "us";
const AZURE_NA= "azure-na";
const AZURE_EU= "azure-eu";
const GCP_NA= "gcp-na";
}