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
path: root/lib
diff options
context:
space:
mode:
authorChristoph Wurst <ChristophWurst@users.noreply.github.com>2022-09-28 08:16:31 +0300
committerGitHub <noreply@github.com>2022-09-28 08:16:31 +0300
commit16136ae66d9fd2c6d877a05ce3bde75860033ffd (patch)
tree55ce10ca7b4e1bd12c4ffd93cf78c31670ba76f4 /lib
parentd4fbceee90fc1b2debaef521dd78c709e5c75c89 (diff)
parent4f015f5a42dc73ff43187ed69a252599ebb2e852 (diff)
Merge pull request #7326 from nextcloud/fix/addresslist-count-return-type-change
Annotate that AddressList::count return type will change
Diffstat (limited to 'lib')
-rw-r--r--lib/AddressList.php1
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/AddressList.php b/lib/AddressList.php
index 3e518002d..0b8256650 100644
--- a/lib/AddressList.php
+++ b/lib/AddressList.php
@@ -105,6 +105,7 @@ class AddressList implements Countable, JsonSerializable {
/**
* @return int
*/
+ #[ReturnTypeWillChange]
public function count() {
return count($this->addresses);
}