mirror of
https://github.com/nextcloud/server.git
synced 2026-05-28 04:32:30 -04:00
fix: correct typo 'occured' to 'occurred' in SetupCheckManager
Signed-off-by: Joud <Joud@iastate.edu>
This commit is contained in:
parent
c1ea92a7de
commit
76d325e532
1 changed files with 1 additions and 1 deletions
|
|
@ -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());
|
||||
|
|
|
|||
Loading…
Reference in a new issue