Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/mail.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristoph Wurst <christoph@winzerhof-wurst.at>2021-12-09 19:31:13 +0300
committerChristoph Wurst <christoph@winzerhof-wurst.at>2021-12-09 19:31:13 +0300
commit43aec6fc80785f7e2ca209a34bd925f637ce74dc (patch)
treec7479713faa57cf9c6de5aa00438876061253b6a /lib/Service
parent55fc18d1bc7026609c97809d82e00610382d17ba (diff)
Add Psalm-generated return types
Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
Diffstat (limited to 'lib/Service')
-rw-r--r--lib/Service/Search/SearchQuery.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Service/Search/SearchQuery.php b/lib/Service/Search/SearchQuery.php
index 57af668a4..c9e559538 100644
--- a/lib/Service/Search/SearchQuery.php
+++ b/lib/Service/Search/SearchQuery.php
@@ -88,7 +88,7 @@ class SearchQuery {
return $this->flagExpressions;
}
- public function addFlagExpression(FlagExpression $expression) {
+ public function addFlagExpression(FlagExpression $expression): void {
$this->flagExpressions[] = $expression;
}