Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions src/Catalog/CatalogRegistration.php
Original file line number Diff line number Diff line change
Expand Up @@ -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;

Expand Down Expand Up @@ -243,7 +243,7 @@ public function setCheck(?AgentCheck $Check): self
*/
public function getChecks(): HealthChecks
{
return $this->checks;
return $this->Checks;
}

/**
Expand All @@ -252,7 +252,7 @@ public function getChecks(): HealthChecks
*/
public function setChecks(HealthChecks $checks): self
{
$this->checks = $checks;
$this->Checks = $checks;
return $this;
}

Expand Down