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 2a2e18f commit 158f8e5Copy full SHA for 158f8e5
src/Api/Repositories/Users/Commit/BuildStatus.php
@@ -44,7 +44,7 @@ public function create(array $params = [])
44
*/
45
public function show(string $key, array $params = [])
46
{
47
- $path = $this->buildBuildStatusPath($key);
+ $path = $this->buildBuildStatusPath(...explode('/', $key));
48
49
return $this->get($path, $params);
50
}
@@ -59,7 +59,7 @@ public function show(string $key, array $params = [])
59
60
public function update(string $key, array $params = [])
61
62
63
64
return $this->put($path, $params);
65
0 commit comments