Merge pull request #26162 from nextcloud/backport/26153/stable21

[stable21] Use correct exception type hint in catch statement
This commit is contained in:
kesselb 2021-03-17 11:09:19 +01:00 committed by GitHub
commit 5ecbfa4f20
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -193,7 +193,7 @@ class MountConfig {
* @param array $options backend configuration options
* @param boolean $isPersonal
* @return int see self::STATUS_*
* @throws Exception
* @throws \Exception
*/
public static function getBackendStatus($class, $options, $isPersonal, $testOnly = true) {
if (self::$skipTest) {
@ -221,7 +221,7 @@ class MountConfig {
$storage->setAvailability(false);
throw $e;
}
} catch (Exception $exception) {
} catch (\Exception $exception) {
\OC::$server->getLogger()->logException($exception, ['app' => 'files_external']);
throw $exception;
}