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>2020-10-14 17:12:11 +0300
committerChristoph Wurst <christoph@winzerhof-wurst.at>2020-10-15 10:00:18 +0300
commit4f89fbf81f91150229f66334dec6dfe5f40709c1 (patch)
tree977e7884febec310d6a0bc54ce1fe49b69d1350b /lib/Address.php
parent1a3ef5a32534ed6cc802f7c4110a7570416bcb1d (diff)
Apply Psalm autofixes
Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
Diffstat (limited to 'lib/Address.php')
-rw-r--r--lib/Address.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Address.php b/lib/Address.php
index af2e95028..de2bb2785 100644
--- a/lib/Address.php
+++ b/lib/Address.php
@@ -49,7 +49,7 @@ class Address implements JsonSerializable {
return new self($horde);
}
- public static function fromRaw($label, $email): self {
+ public static function fromRaw(string $label, string $email): self {
$wrapped = new Horde_Mail_Rfc822_Address($email);
// If no label is set we use the email
if ($label !== $email && $label !== null) {