delete_transformation() public method

public delete_transformation ( $transformation, $options = [] )
コード例 #1
0
ファイル: ApiTest.php プロジェクト: engineor/cloudinary_php
 function test17a_transformation_delete_implicit()
 {
     // should allow deleting implicit transformation
     Curl::mockApi($this);
     $this->api->delete_transformation("c_scale,w_100");
     assertUrl($this, "/transformations/c_scale,w_100");
     assertDelete($this);
 }
コード例 #2
0
 function test17a_transformation_delete_implicit()
 {
     // should allow deleting implicit transformation
     $this->api->transformation("c_scale,w_100");
     $this->api->delete_transformation("c_scale,w_100");
 }