fix: correct typo 'occured' to 'occurred' in SetupCheckManager

Signed-off-by: Joud <Joud@iastate.edu>
This commit is contained in:
Joud 2026-05-07 00:27:52 -05:00
parent c1ea92a7de
commit 76d325e532

View file

@ -34,7 +34,7 @@ class SetupCheckManager implements ISetupCheckManager {
try {
$setupResult = $setupCheckObject->run();
} catch (\Throwable $t) {
$setupResult = SetupResult::error("An exception occured while running the setup check:\n$t");
$setupResult = SetupResult::error("An exception occurred while running the setup check:\n$t");
$this->logger->error('Exception running check ' . get_class($setupCheckObject) . ': ' . $t->getMessage(), ['exception' => $t]);
}
$setupResult->setName($setupCheckObject->getName());