We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent be23d97 commit a42ccc4Copy full SHA for a42ccc4
src/Torann/LaravelAsana/AsanaCurl.php
@@ -77,6 +77,17 @@ public function put($url, array $data = array())
77
return $this->request(self::METHOD_PUT, $url, $data);
78
}
79
80
+ /**
81
+ * Delete request
82
+ *
83
+ * @param string $url
84
+ * @param array $data
85
+ */
86
+ public function delete($url, array $data = array())
87
+ {
88
+ return $this->request(self::METHOD_DELETE, $url, $data);
89
+ }
90
+
91
/**
92
* Return error
93
*
0 commit comments