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.
PipelinesConfig::variables()
1 parent c2a9a42 commit b31332bCopy full SHA for b31332b
src/Api/Repositories/Workspaces/PipelinesConfig.php
@@ -13,6 +13,7 @@
13
14
namespace Bitbucket\Api\Repositories\Workspaces;
15
16
+use Bitbucket\Api\Repositories\Workspaces\PipelinesConfig\Variables;
17
use Bitbucket\HttpClient\Util\UriBuilder;
18
19
/**
@@ -22,6 +23,14 @@
22
23
*/
24
class PipelinesConfig extends AbstractWorkspacesApi
25
{
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
+
34
35
* @param array $params
36
*
0 commit comments