Пример #1
0
 /**
  * Delete container
  *
  * @return void
  */
 public function deleteContainer()
 {
     try {
         $this->_storageClient->deleteContainer($this->_container);
     } catch (WindowsAzureException\ExceptionInterface $e) {
         throw new Exception\RuntimeException('Error on delete: ' . $e->getMessage(), $e->getCode(), $e);
     }
 }