diff --git a/src/Api/PullRequests.php b/src/Api/PullRequests.php index 241cfae..a2ced1f 100644 --- a/src/Api/PullRequests.php +++ b/src/Api/PullRequests.php @@ -28,6 +28,8 @@ class PullRequests extends AbstractApi * * @throws \Http\Client\Exception * + * @deprecated use the workspaces pull requests instead + * * @return array */ public function list(string $username, array $params = []) diff --git a/src/Api/Workspaces.php b/src/Api/Workspaces.php index 4ca5e83..f372983 100644 --- a/src/Api/Workspaces.php +++ b/src/Api/Workspaces.php @@ -18,6 +18,7 @@ use Bitbucket\Api\Workspaces\Permissions; use Bitbucket\Api\Workspaces\PipelinesConfig; use Bitbucket\Api\Workspaces\Projects; +use Bitbucket\Api\Workspaces\PullRequests as WorkspacesPullRequests; use Bitbucket\Client; use Bitbucket\HttpClient\Util\UriBuilder; @@ -117,6 +118,14 @@ public function projects() return new Projects($this->getClient(), $this->workspace); } + /** + * @return \Bitbucket\Api\Workspaces\PullRequests + */ + public function pullRequests() + { + return new WorkspacesPullRequests($this->getClient(), $this->workspace); + } + /** * Build the workspaces URI from the given parts. * diff --git a/src/Api/Workspaces/PullRequests.php b/src/Api/Workspaces/PullRequests.php new file mode 100644 index 0000000..6a9c638 --- /dev/null +++ b/src/Api/Workspaces/PullRequests.php @@ -0,0 +1,51 @@ + + * + * For the full copyright and license information, please view the LICENSE + * file that was distributed with this source code. + */ + +namespace Bitbucket\Api\Workspaces; + +use Bitbucket\HttpClient\Util\UriBuilder; + +/** + * The pull requests API class. + * + * @author Graham Campbell + */ +class PullRequests extends AbstractWorkspacesApi +{ + /** + * @param string $username + * @param array $params + * + * @throws \Http\Client\Exception + * + * @return array + */ + public function list(string $username, array $params = []) + { + $uri = $this->buildPullRequestsUri($username); + + return $this->get($uri, $params); + } + + /** + * Build the projects URI from the given parts. + * + * @param string ...$parts + * + * @return string + */ + protected function buildPullRequestsUri(string ...$parts) + { + return UriBuilder::build('workspaces', $this->workspace, 'pullrequests', ...$parts); + } +}