Skip to content

Commit 9a4ec3d

Browse files
committed
Add parameters parameter to put()
1 parent 663722a commit 9a4ec3d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

lib/Github/HttpClient/HttpClient.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -131,9 +131,9 @@ public function delete($path, array $parameters = array(), array $headers = arra
131131
/**
132132
* {@inheritDoc}
133133
*/
134-
public function put($path, array $headers = array())
134+
public function put($path, array $paramters = array(), array $headers = array())
135135
{
136-
return $this->request($path, array(), 'PUT', $headers);
136+
return $this->request($path, $paramters, 'PUT', $headers);
137137
}
138138

139139
/**

0 commit comments

Comments
 (0)