apiKey = $apiKey; return $this; } /** * @return mixed */ public function getApiKey() { return $this->apiKey; } /** * @param mixed $apiLoginID * @return $this */ public function setApiLoginID($apiLoginID) { $this->apiLoginID = $apiLoginID; return $this; } /** * @return mixed */ public function getApiLoginID() { return $this->apiLoginID; } protected function parseDate($date) { if (false !== ($time = strtotime($date))) { return date('c', $time); } return null; } }