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 a09991b commit 5436e07Copy full SHA for 5436e07
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->postNetwork(), $data);
152
+ return $this->populateFromResponse($response);
153
}
154
155
public function update()
156
- $this->executeWithState($this->api->putPort());
157
+ i$response = $this->executeWithState($this->api->putPort());
158
+ $this->populateFromResponse($response);
159
160
161
public function delete()
0 commit comments