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 d4af179 commit 454278dCopy full SHA for 454278d
lib/Gitlab/Client.php
@@ -126,6 +126,14 @@ public function deployKeys()
126
return new Api\DeployKeys($this);
127
}
128
129
+ /**
130
+ * @return Api\Environments
131
+ */
132
+ public function environments()
133
+ {
134
+ return new Api\Environments($this);
135
+ }
136
+
137
/**
138
* @return Api\Groups
139
*/
@@ -267,6 +275,9 @@ public function api($name)
267
275
case 'deploy_keys':
268
276
return $this->deployKeys();
269
277
278
+ case 'environments':
279
+ return $this->environments();
280
270
281
case 'groups':
271
282
return $this->groups();
272
283
0 commit comments