コード例 #1
0
ファイル: File.php プロジェクト: awatbayazidi/uploadcare-php
 /**
  * Delete file
  *
  * @return array
  */
 public function delete()
 {
     return $this->api->__preparedRequest('file_storage', 'DELETE', array('uuid' => $this->uuid));
 }
コード例 #2
0
ファイル: Group.php プロジェクト: awatbayazidi/uploadcare-php
 /**
  * Try to store group.
  *
  * @return array
  */
 public function store()
 {
     return $this->api->__preparedRequest('group_storage', 'POST', array('uuid' => $this->getUuid()));
 }
コード例 #3
0
ファイル: File.php プロジェクト: nemoluv/pushwing
 /**
  * Delete file
  *
  * @return array
  */
 public function delete()
 {
     return $this->api->__preparedRequest(API_TYPE_FILE, REQUEST_TYPE_DELETE, array('file_id' => $this->file_id));
 }