summaryrefslogtreecommitdiffstats
path: root/lib/public
diff options
context:
space:
mode:
authorJulius Härtl <jus@bitgrid.net>2023-01-16 14:00:57 +0100
committerGitHub <noreply@github.com>2023-01-16 14:00:57 +0100
commit8557c61389e297130ee80828b680cbbd3485c697 (patch)
tree16f65997afbac0ff111b317f51d6ae4e52bdf79c /lib/public
parent052f09633b84cfb80e39b281e60c6dbffc3d3c36 (diff)
parentcf1bd0eb70e81915ba018afc22d3a2374b179cbe (diff)
downloadnextcloud-server-8557c61389e297130ee80828b680cbbd3485c697.tar.gz
nextcloud-server-8557c61389e297130ee80828b680cbbd3485c697.zip
Merge pull request #35970 from nextcloud/perf/noid/exception-serializer
Diffstat (limited to 'lib/public')
-rw-r--r--lib/public/Support/CrashReport/IRegistry.php9
1 files changed, 9 insertions, 0 deletions
diff --git a/lib/public/Support/CrashReport/IRegistry.php b/lib/public/Support/CrashReport/IRegistry.php
index 6ee2b57f613..35cf78920da 100644
--- a/lib/public/Support/CrashReport/IRegistry.php
+++ b/lib/public/Support/CrashReport/IRegistry.php
@@ -81,4 +81,13 @@ interface IRegistry {
* @since 17.0.0
*/
public function delegateMessage(string $message, array $context = []): void;
+
+ /**
+ * Check if any reporter has been registered to delegate to
+ *
+ * @return bool
+ * @deprecated use internally only
+ * @since 26.0.0
+ */
+ public function hasReporters(): bool;
}