Skip to content

Commit b1d4b54

Browse files
committed
Need to remove trimming trailing slash due to some weirdness with silex annotations.
1 parent 691c913 commit b1d4b54

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/Kobas/Client.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -137,7 +137,7 @@ protected function call($http_method, $route, array $params = array(), array $he
137137
if (!empty($this->version)) {
138138
$url .= $this->version . '/';
139139
}
140-
$url .= trim($route, '/');
140+
// $url .= trim($route, '/');
141141

142142
$this->request
143143
->setOption(CURLOPT_CUSTOMREQUEST, strtoupper($http_method))

0 commit comments

Comments
 (0)