Skip to content

Commit b31332b

Browse files
dvcom69David
andauthored
[4.0] Added missing PipelinesConfig::variables() method to point to existing implementation (#68)
Co-authored-by: David <[email protected]>
1 parent c2a9a42 commit b31332b

File tree

1 file changed

+9
-0
lines changed

1 file changed

+9
-0
lines changed

src/Api/Repositories/Workspaces/PipelinesConfig.php

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@
1313

1414
namespace Bitbucket\Api\Repositories\Workspaces;
1515

16+
use Bitbucket\Api\Repositories\Workspaces\PipelinesConfig\Variables;
1617
use Bitbucket\HttpClient\Util\UriBuilder;
1718

1819
/**
@@ -22,6 +23,14 @@
2223
*/
2324
class PipelinesConfig extends AbstractWorkspacesApi
2425
{
26+
/**
27+
* @return \Bitbucket\Api\Repositories\Workspaces\PipelinesConfig\Variables
28+
*/
29+
public function variables()
30+
{
31+
return new Variables($this->getClient(), $this->workspace, $this->repo);
32+
}
33+
2534
/**
2635
* @param array $params
2736
*

0 commit comments

Comments
 (0)