Page MenuHomeDevCentral

D648.id1634.diff
No OneTemporary

D648.id1634.diff

diff --git a/src/DockerHubImage.php b/src/DockerHubImage.php
--- a/src/DockerHubImage.php
+++ b/src/DockerHubImage.php
@@ -20,20 +20,26 @@
return "https://registry.hub.docker.com/u/$this->user/$this->image";
}
+ ///
+ /// Factory methods to build a TriggerBuild instance or use it.
+ ///
+
/**
* Gets a trigger build for this image
* to be able to prepare a build trigger payload.
*
- * @param string $token The token to authentify the build request
+ * @param \Guzzle\ClientInterface A HTTP client [optional]
+ * @param string $token The token to authentify the build request [optional]
* @return Keruald\DockerHub\Build\TriggerBuild
*/
- public function getTriggerBuild (ClientInterface $client, $token) {
- return new TriggerBuild($this, $token);
+ public function getTriggerBuild (ClientInterface $client = null, $token = "") {
+ return new TriggerBuild($this, $token, $client);
}
/**
* Triggers a full build for this image.
*
+ * @param \Guzzle\ClientInterface A HTTP client
* @param string $token The token to authentify the build request
*/
public function triggerBuild (ClientInterface $client, $token) {

File Metadata

Mime Type
text/plain
Expires
Thu, Nov 7, 03:28 (21 h, 45 m)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
2232582
Default Alt Text
D648.id1634.diff (1 KB)

Event Timeline