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 committed by backportbot[bot]
parent 38dba45e83
commit 0ffb295233

View file

@ -33,7 +33,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());