diff options
author | Andrey Borysenko <andrey18106x@gmail.com> | 2023-08-02 17:40:58 +0300 |
---|---|---|
committer | Andy Scherzinger <info@andy-scherzinger.de> | 2023-08-11 01:37:01 +0200 |
commit | c2a8280743d6361339fc8c6188de4063f9ef9268 (patch) | |
tree | 73eeab1da90a13bef54f7878a3cd47ffc15fb023 /build | |
parent | ebf21bed5135d310116ab9ec61b66be2a621922c (diff) | |
download | nextcloud-server-c2a8280743d6361339fc8c6188de4063f9ef9268.tar.gz nextcloud-server-c2a8280743d6361339fc8c6188de4063f9ef9268.zip |
Fix psalm ci (stub). Wrap server container with try-catch
Signed-off-by: Andrey Borysenko <andrey18106x@gmail.com>
Diffstat (limited to 'build')
-rw-r--r-- | build/stubs/app_ecosystem_v2.php | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/build/stubs/app_ecosystem_v2.php b/build/stubs/app_ecosystem_v2.php new file mode 100644 index 00000000000..d2b07c9c616 --- /dev/null +++ b/build/stubs/app_ecosystem_v2.php @@ -0,0 +1,15 @@ +<?php + +namespace OCA\AppEcosystemV2\Service; + +use OCP\IRequest; + +class AppEcosystemV2Service { + /** + * @param IRequest $request + * @param bool $isDav + * + * @return bool + */ + public function validateExAppRequestToNC(IRequest $request, bool $isDav = false): bool {} +} |