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.
2 parents a2f6e87 + b1cbdcb commit 38325c0Copy full SHA for 38325c0
src/Networking/v2/Models/Port.php
@@ -148,12 +148,14 @@ public function bulkCreate(array $userOptions): array
148
149
public function retrieve()
150
{
151
- $this->executeWithState($this->api->getPort());
+ $response = $this->execute($this->api->getPort(), ['id' => (string)$this->id]);
152
+ $this->populateFromResponse($response);
153
}
154
155
public function update()
156
- $this->executeWithState($this->api->putPort());
157
+ $response = $this->executeWithState($this->api->putPort());
158
159
160
161
public function delete()
0 commit comments