Skip to content
Snippets Groups Projects
Commit 162e763e authored by Morris Jobke's avatar Morris Jobke Committed by backportbot[bot]
Browse files

Use correct exception type hint in catch statement


Found by psalm update 4.6.2 to 4.6.3 in #26111

Signed-off-by: default avatarMorris Jobke <hey@morrisjobke.de>
parent fd29c1d7
No related branches found
No related tags found
No related merge requests found
...@@ -193,7 +193,7 @@ class MountConfig { ...@@ -193,7 +193,7 @@ class MountConfig {
* @param array $options backend configuration options * @param array $options backend configuration options
* @param boolean $isPersonal * @param boolean $isPersonal
* @return int see self::STATUS_* * @return int see self::STATUS_*
* @throws Exception * @throws \Exception
*/ */
public static function getBackendStatus($class, $options, $isPersonal, $testOnly = true) { public static function getBackendStatus($class, $options, $isPersonal, $testOnly = true) {
if (self::$skipTest) { if (self::$skipTest) {
...@@ -221,7 +221,7 @@ class MountConfig { ...@@ -221,7 +221,7 @@ class MountConfig {
$storage->setAvailability(false); $storage->setAvailability(false);
throw $e; throw $e;
} }
} catch (Exception $exception) { } catch (\Exception $exception) {
\OC::$server->getLogger()->logException($exception, ['app' => 'files_external']); \OC::$server->getLogger()->logException($exception, ['app' => 'files_external']);
throw $exception; throw $exception;
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment