Update the HealthCheck controller to use the MysqlClient from FOR

This commit is contained in:
Dave Smith-Hayes 2024-06-26 22:20:44 -04:00
parent c8b9abf559
commit 509913c86f

View File

@ -19,7 +19,7 @@ class HealthCheck extends Controller
return $this->json([ return $this->json([
'http' => true, 'http' => true,
'database' => (bool) count($results->resultRows); 'database' => (bool) count($results->resultRows),
]); ]);
} }
} }