diff options
author | Maxence Lange <maxence@artificial-owl.com> | 2021-04-23 11:00:10 -0100 |
---|---|---|
committer | Maxence Lange <maxence@artificial-owl.com> | 2021-04-23 11:00:10 -0100 |
commit | bb32880ec413efcc72a11f6c9effb8f6ccc00224 (patch) | |
tree | 271f9b645f070fe065f2fa423949ce54db8fba0f /lib/private/FullTextSearch | |
parent | d2ea068552eb144d491b76e0a0ef8266144dcf45 (diff) | |
download | nextcloud-server-bb32880ec413efcc72a11f6c9effb8f6ccc00224.tar.gz nextcloud-server-bb32880ec413efcc72a11f6c9effb8f6ccc00224.zip |
private cannot be final
Signed-off-by: Maxence Lange <maxence@artificial-owl.com>
Diffstat (limited to 'lib/private/FullTextSearch')
-rw-r--r-- | lib/private/FullTextSearch/Model/IndexDocument.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/private/FullTextSearch/Model/IndexDocument.php b/lib/private/FullTextSearch/Model/IndexDocument.php index 252aa66395a..44bd7a23a1c 100644 --- a/lib/private/FullTextSearch/Model/IndexDocument.php +++ b/lib/private/FullTextSearch/Model/IndexDocument.php @@ -722,7 +722,7 @@ class IndexDocument implements IIndexDocument, JsonSerializable { * @param string $excerpt * @return string */ - final private function cleanExcerpt(string $excerpt): string { + private function cleanExcerpt(string $excerpt): string { $excerpt = str_replace("\\n", ' ', $excerpt); $excerpt = str_replace("\\r", ' ', $excerpt); $excerpt = str_replace("\\t", ' ', $excerpt); |