Skip to content

Commit e18708d

Browse files
committed
feat: add support for new "list workspace pull requests for a user" endpoint
1 parent 8a006de commit e18708d

File tree

3 files changed

+62
-0
lines changed

3 files changed

+62
-0
lines changed

src/Api/PullRequests.php

+2
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,8 @@ class PullRequests extends AbstractApi
2828
*
2929
* @throws \Http\Client\Exception
3030
*
31+
* @deprecated use the workspaces pull requests instead
32+
*
3133
* @return array
3234
*/
3335
public function list(string $username, array $params = [])

src/Api/Workspaces.php

+9
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@
1818
use Bitbucket\Api\Workspaces\Permissions;
1919
use Bitbucket\Api\Workspaces\PipelinesConfig;
2020
use Bitbucket\Api\Workspaces\Projects;
21+
use Bitbucket\Api\Workspaces\PullRequests as WorkspacesPullRequests;
2122
use Bitbucket\Client;
2223
use Bitbucket\HttpClient\Util\UriBuilder;
2324

@@ -117,6 +118,14 @@ public function projects()
117118
return new Projects($this->getClient(), $this->workspace);
118119
}
119120

121+
/**
122+
* @return \Bitbucket\Api\Workspaces\PullRequests
123+
*/
124+
public function pullRequests()
125+
{
126+
return new WorkspacesPullRequests($this->getClient(), $this->workspace);
127+
}
128+
120129
/**
121130
* Build the workspaces URI from the given parts.
122131
*

src/Api/Workspaces/PullRequests.php

+51
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,51 @@
1+
<?php
2+
3+
declare(strict_types=1);
4+
5+
/*
6+
* This file is part of the Bitbucket API Client.
7+
*
8+
* (c) Graham Campbell <[email protected]>
9+
*
10+
* For the full copyright and license information, please view the LICENSE
11+
* file that was distributed with this source code.
12+
*/
13+
14+
namespace Bitbucket\Api\Workspaces;
15+
16+
use Bitbucket\HttpClient\Util\UriBuilder;
17+
18+
/**
19+
* The pull requests API class.
20+
*
21+
* @author Graham Campbell <[email protected]>
22+
*/
23+
class PullRequests extends AbstractWorkspacesApi
24+
{
25+
/**
26+
* @param string $username
27+
* @param array $params
28+
*
29+
* @throws \Http\Client\Exception
30+
*
31+
* @return array
32+
*/
33+
public function list(string $username, array $params = [])
34+
{
35+
$uri = $this->buildPullRequestsUri($username);
36+
37+
return $this->get($uri, $params);
38+
}
39+
40+
/**
41+
* Build the projects URI from the given parts.
42+
*
43+
* @param string ...$parts
44+
*
45+
* @return string
46+
*/
47+
protected function buildPullRequestsUri(string ...$parts)
48+
{
49+
return UriBuilder::build('workspaces', $this->workspace, 'pullrequests', ...$parts);
50+
}
51+
}

0 commit comments

Comments
 (0)