diff options
author | Roeland Jago Douma <rullzer@users.noreply.github.com> | 2020-11-22 13:39:46 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-11-22 13:39:46 +0100 |
commit | 032de4f333904dfb3dedb29935d43bfee6bfe0d8 (patch) | |
tree | 690d1247f72d1adca25396defc424f18d2be218a /lib | |
parent | 293410f57659f2765b5dc3b55206f2dab5f4da31 (diff) | |
parent | d25ca1976be643ad123514e4b32f74c0814b2d40 (diff) | |
download | nextcloud-server-032de4f333904dfb3dedb29935d43bfee6bfe0d8.tar.gz nextcloud-server-032de4f333904dfb3dedb29935d43bfee6bfe0d8.zip |
Merge pull request #24269 from nextcloud/taint-specialize
Mark getAppPath as specialized taint
Diffstat (limited to 'lib')
-rw-r--r-- | lib/private/legacy/OC_App.php | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/lib/private/legacy/OC_App.php b/lib/private/legacy/OC_App.php index c6aa3845c64..abc70cc1e25 100644 --- a/lib/private/legacy/OC_App.php +++ b/lib/private/legacy/OC_App.php @@ -518,6 +518,8 @@ class OC_App { * Get the directory for the given app. * If the app is defined in multiple directories, the first one is taken. (false if not found) * + * @psalm-taint-specialize + * * @param string $appId * @return string|false * @deprecated 11.0.0 use \OC::$server->getAppManager()->getAppPath() |