示例#1
0
 /**
  * {@inheritDoc}
  */
 public function getNearestZone(GetNearestZoneRequest $getNearestZoneRequest)
 {
     // If the 'application' attribute is not set in the request we try to get a default one from the Pushwoosh
     // client
     if ($getNearestZoneRequest->getApplication() === null) {
         // The 'application' must be set
         if (!isset($this->application)) {
             throw new PushwooshException('The  \'application\' property is not set !');
         }
         $getNearestZoneRequest->setApplication($this->application);
     }
     $response = $this->cURLClient->pushwooshCall('getNearestZone', $getNearestZoneRequest->jsonSerialize());
     return GetNearestZoneResponse::create($response);
 }