Skip to content

Commit b426751

Browse files
committed
Some fixes to met travis requirements
1 parent 57b3ceb commit b426751

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

lib/Redmine/Client.php

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -146,7 +146,8 @@ public function getUrl()
146146

147147
/**
148148
* HTTP GETs a json $path and tries to decode it
149-
* @param string $path
149+
* @param string $path
150+
* @param boolean $decode
150151
* @return array
151152
*/
152153
public function get($path, $decode = true)

lib/Redmine/TestUrlClient.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
class TestUrlClient extends Client
66
{
7-
public function get($path)
7+
public function get($path, $decode = true)
88
{
99
return $this->runRequest($path, 'GET');
1010
}

0 commit comments

Comments
 (0)