PluginProbe
WP-Stateless – Google Cloud Storage / trunk
WP-Stateless – Google Cloud Storage vtrunk
4.4.3 2.1.7 2.1.8 2.1.9 2.2.0 2.2.1 2.2.2 2.2.3 2.2.4 2.2.5 2.2.6 2.2.7 2.3.0 2.3.1 2.3.2 3.0 3.0.1 3.0.2 3.0.3 3.0.4 3.1.0 3.1.1 3.2.0 3.2.1 3.2.2 All 62 releases
← All changes | lib/Google/src/Service.php +5 -1 3.2.2trunk View file →
@@ -22,9 +22,13 @@
22 22
23 23 class Service
24 24 {
25 25 public $batchPath;
26 + /**
27 + * Only used in getBatch
28 + */
26 29 public $rootUrl;
30 + public $rootUrlTemplate;
27 31 public $version;
28 32 public $servicePath;
29 33 public $serviceName;
30 34 public $availableScopes;
@@ -64,9 +68,9 @@
64 68 {
65 69 return new Batch(
66 70 $this->client,
67 71 false,
68 - $this->rootUrl,
72 + $this->rootUrlTemplate ?? $this->rootUrl,
69 73 $this->batchPath
70 74 );
71 75 }
72 76 }