| Total Complexity | 4 | 
| Total Lines | 39 | 
| Duplicated Lines | 0 % | 
| Changes | 0 | ||
| 1 | <?php | ||
| 5 | class BcaHttpInstance | ||
| 6 | { | ||
| 7 | private static $instance = null; | ||
| 8 | private static $corp_id = ''; | ||
| 9 | private static $client_id = ''; | ||
| 10 | private static $client_secret = ''; | ||
| 11 | private static $api_key = ''; | ||
| 12 | private static $secret_key = ''; | ||
| 13 | private static $options = array( | ||
| 14 | 'scheme' => 'https', | ||
| 15 | 'port' => 443, | ||
| 16 | 'timezone' => 'Asia/Jakarta', | ||
| 17 | 'timeout' => null, | ||
| 18 | 'development' => true, | ||
| 19 | ); | ||
| 20 | |||
| 21 | private function __construct() | ||
| 23 | } | ||
| 24 | |||
| 25 | private function __clone() | ||
| 27 | } | ||
| 28 | |||
| 29 | public static function getBcaHttp() | ||
| 46 |