Skip to content

Commit

Permalink
stylo 3
Browse files Browse the repository at this point in the history
  • Loading branch information
arfenis committed Sep 17, 2024
1 parent 1c53a6c commit e3b7770
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Domains/Workflow/Models/Integrations.php
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ public function getIntegrationStatus(): Status
$active = Status::getDefaultStatusByName(StatusEnum::ACTIVE->value);
$integrations = $this->integrationCompany()->where('companies_id', $company->getId());

if (!$integrations->exists()) {
if (! $integrations->exists()) {
return Status::getDefaultStatusByName(StatusEnum::OFFLINE->value);
}

Expand Down

0 comments on commit e3b7770

Please sign in to comment.