From 9f018404ad74efc0717cfa36508ea4d217e97c74 Mon Sep 17 00:00:00 2001 From: Ricardo Kirkner Date: Fri, 29 Aug 2025 11:03:39 -0300 Subject: [PATCH] fix: remove no longer necessary getAutoscalingSettings helper --- src/Model/Environment.php | 14 -------------- 1 file changed, 14 deletions(-) diff --git a/src/Model/Environment.php b/src/Model/Environment.php index b6e96f2..056d12d 100644 --- a/src/Model/Environment.php +++ b/src/Model/Environment.php @@ -769,20 +769,6 @@ public function getSettings() return new Settings($data, $url, $this->client); } - /** - * Lists environment autoscaling settings. - * - * @return AutoscalingSettings - */ - public function getAutoscalingSettings() - { - $url = $this->getUri() . '/autoscaling/settings'; - $request = $this->client->createRequest('get', $url); - $data = self::send($request, $this->client); - - return new AutoscalingSettings($data, $url, $this->client); - } - /** * Runs a source operation. *