Esempio n. 1
0
 /**
  * {@inheritDoc}
  */
 public function unregisterDevice(UnregisterDeviceRequest $unregisterDeviceRequest)
 {
     // If the 'application' attribute is not set in the request we try to get a default one from the Pushwoosh
     // client
     $this->setApplicationIfNotSet($unregisterDeviceRequest);
     $response = $this->cURLClient->pushwooshCall('unregisterDevice', $unregisterDeviceRequest->jsonSerialize());
     return UnregisterDeviceResponse::create($response);
 }
Esempio n. 2
0
 /**
  * {@inheritDoc}
  */
 public function unregisterDevice(UnregisterDeviceRequest $unregisterDeviceRequest)
 {
     // If the 'application' attribute is not set in the request we try to get a default one from the Pushwoosh
     // client
     if ($unregisterDeviceRequest->getApplication() === null) {
         // The 'application' must be set
         if (!isset($this->application)) {
             throw new PushwooshException('The  \'application\' property is not set !');
         }
         $unregisterDeviceRequest->setApplication($this->application);
     }
     $response = $this->cURLClient->pushwooshCall('unregisterDevice', $unregisterDeviceRequest->jsonSerialize());
     return UnregisterDeviceResponse::create($response);
 }