diff --git a/src/Catalog/CatalogRegistration.php b/src/Catalog/CatalogRegistration.php index edac2fd..05197dc 100644 --- a/src/Catalog/CatalogRegistration.php +++ b/src/Catalog/CatalogRegistration.php @@ -72,7 +72,7 @@ class CatalogRegistration extends AbstractModel /** @var \DCarbone\PHPConsulAPI\Agent\AgentCheck|null */ public ?AgentCheck $Check = null; /** @var \DCarbone\PHPConsulAPI\Health\HealthChecks */ - public HealthChecks $checks; + public HealthChecks $Checks; /** @var bool */ public bool $SkipNodeUpdate = false; @@ -243,7 +243,7 @@ public function setCheck(?AgentCheck $Check): self */ public function getChecks(): HealthChecks { - return $this->checks; + return $this->Checks; } /** @@ -252,7 +252,7 @@ public function getChecks(): HealthChecks */ public function setChecks(HealthChecks $checks): self { - $this->checks = $checks; + $this->Checks = $checks; return $this; }