From e6755de090e247a57af8c57dc9c5ea09da1c4302 Mon Sep 17 00:00:00 2001 From: Veronika Tolkachova Date: Tue, 26 Aug 2025 18:38:56 +0200 Subject: [PATCH 1/2] add env property --- src/Model/Environment.php | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/Model/Environment.php b/src/Model/Environment.php index b6e96f2..770e81b 100644 --- a/src/Model/Environment.php +++ b/src/Model/Environment.php @@ -63,6 +63,8 @@ * @property-read string $type * The type of the environment. This is predominantly used for access control and is usually one of: production, * development, or staging. + * @property-read string $can_rolling_deploy + * If the environment can use rolling deployments, ie zero downtime. */ class Environment extends Resource implements HasActivitiesInterface { From 880378c57ca2c8be9ca00731c5c920a2f614811d Mon Sep 17 00:00:00 2001 From: Veronika Tolkachova Date: Fri, 29 Aug 2025 13:16:31 +0200 Subject: [PATCH 2/2] of course it's bool not string --- src/Model/Environment.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Model/Environment.php b/src/Model/Environment.php index 770e81b..c011667 100644 --- a/src/Model/Environment.php +++ b/src/Model/Environment.php @@ -63,7 +63,7 @@ * @property-read string $type * The type of the environment. This is predominantly used for access control and is usually one of: production, * development, or staging. - * @property-read string $can_rolling_deploy + * @property-read bool $can_rolling_deploy * If the environment can use rolling deployments, ie zero downtime. */ class Environment extends Resource implements HasActivitiesInterface