Create New Item
Item Type
File
Folder
Item Name
Search file in folder and subfolders...
Are you sure want to rename?
unsatisfiableness
/
shoplemo
/
php-sdk
/
source
/
Model
:
Config.php
Advanced Search
Upload
New Item
Settings
Back
Back Up
Advanced Editor
Save
<?php namespace Shoplemo; class Config { private $apiKey; private $secretKey; private $serviceBaseUrl; private $sdkVersion = "1.0.0"; public function getSDKVersion() { return $this->sdkVersion; } public function getAPIKey() { return $this->apiKey; } public function setAPIKey($apiKey) { $this->apiKey = $apiKey; } public function getSecretKey() { return $this->secretKey; } public function setSecretKey($secretKey) { $this->secretKey = $secretKey; } public function getServiceBaseUrl() { return $this->serviceBaseUrl; } public function setServiceBaseUrl($serviceBaseUrl) { $this->serviceBaseUrl = $serviceBaseUrl; } }