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 57b3ceb commit b426751Copy full SHA for b426751
lib/Redmine/Client.php
@@ -146,7 +146,8 @@ public function getUrl()
146
147
/**
148
* HTTP GETs a json $path and tries to decode it
149
- * @param string $path
+ * @param string $path
150
+ * @param boolean $decode
151
* @return array
152
*/
153
public function get($path, $decode = true)
lib/Redmine/TestUrlClient.php
@@ -4,7 +4,7 @@
4
5
class TestUrlClient extends Client
6
{
7
- public function get($path)
+ public function get($path, $decode = true)
8
9
return $this->runRequest($path, 'GET');
10
}
0 commit comments