diff options
author | Carl Schwan <carl@carlschwan.eu> | 2022-09-22 12:36:15 +0200 |
---|---|---|
committer | Carl Schwan <carl@carlschwan.eu> | 2022-10-10 13:26:40 +0200 |
commit | c9703827e048a733306d5b7a4fadbe51c23d23a0 (patch) | |
tree | c28f5c5e5d82a9ee79fb03df515fed768d6420aa /lib/public | |
parent | 29af54f10d53f7e8ee5749324c299ac0775f09b0 (diff) | |
download | nextcloud-server-c9703827e048a733306d5b7a4fadbe51c23d23a0.tar.gz nextcloud-server-c9703827e048a733306d5b7a4fadbe51c23d23a0.zip |
Expose clearing the profiles and fix it
Signed-off-by: Carl Schwan <carl@carlschwan.eu>
Diffstat (limited to 'lib/public')
-rw-r--r-- | lib/public/Profiler/IProfiler.php | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/lib/public/Profiler/IProfiler.php b/lib/public/Profiler/IProfiler.php index 78325089523..5fa4582add7 100644 --- a/lib/public/Profiler/IProfiler.php +++ b/lib/public/Profiler/IProfiler.php @@ -98,4 +98,10 @@ interface IProfiler { * @since 24.0.0 */ public function collect(Request $request, Response $response): IProfile; + + /** + * Clear the stored profiles + * @since 25.0.0 + */ + public function clear(): void; } |