delete_transformation() публичный Метод

public delete_transformation ( $transformation, $options = [] )
Пример #1
0
 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);
 }
 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");
 }