diff options
author | zorn-v <zorn7@yandex.ru> | 2021-07-24 06:15:28 +1000 |
---|---|---|
committer | John Molakvoæ (Rebase PR Action) <skjnldsv@users.noreply.github.com> | 2021-10-22 09:29:03 +0000 |
commit | 9cb0b8c713f795212149e1d08cfa9131e5db9737 (patch) | |
tree | 880559359bbcf2939924a4ba867e72f746b3ef08 /lib/private/legacy | |
parent | a9fe0fc5274fe6190c394fdb201cbb0c9f5c5976 (diff) | |
download | nextcloud-server-9cb0b8c713f795212149e1d08cfa9131e5db9737.tar.gz nextcloud-server-9cb0b8c713f795212149e1d08cfa9131e5db9737.zip |
Fix "never catch" catches in OC_App
Need to check another legacy. Need to explicitly add to use or do not forget add slash `\`
Diffstat (limited to 'lib/private/legacy')
-rw-r--r-- | lib/private/legacy/OC_App.php | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/private/legacy/OC_App.php b/lib/private/legacy/OC_App.php index 1ce3662000e..695020703a9 100644 --- a/lib/private/legacy/OC_App.php +++ b/lib/private/legacy/OC_App.php @@ -63,6 +63,7 @@ use OCP\Authentication\IAlternativeLogin; use OCP\ILogger; use OCP\Settings\IManager as ISettingsManager; use Psr\Log\LoggerInterface; +use Throwable; /** * This class manages the apps. It allows them to register and integrate in the |