Skip to content

Commit 6719b84

Browse files
fix(foxyclient): add put request
1 parent 88a196b commit 6719b84

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

src/Foxy/FoxyClient/FoxyClient.php

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -200,6 +200,11 @@ public function patch($uri, $post = null)
200200
return $this->go('PATCH', $uri, $post);
201201
}
202202

203+
public function put($uri, $post = null)
204+
{
205+
return $this->go('PUT', $uri, $post);
206+
}
207+
203208
public function delete($uri, $post = null)
204209
{
205210
return $this->go('DELETE', $uri, $post);

0 commit comments

Comments
 (0)