Example #1
0
 /**
  * Pobiera informacje o stanie masowej wysylki SMS
  *
  * @return mixed
  */
 public function getPackageInfo()
 {
     if (empty($this->_packageId)) {
         throw new Exception('Nie zarejestrowano identyfikatora rozsylki', 3);
     }
     return $this->_client->packageinfo(
             $clientHash = $this->_config['clientHash'], $serviceHash = $this->_config['serviceHash'], $packageID = $this->_packageId
     );
 }