diff options
author | Côme Chilliet <come.chilliet@nextcloud.com> | 2024-04-02 17:13:35 +0200 |
---|---|---|
committer | Richard Steinmetz <richard@steinmetz.cloud> | 2024-04-08 11:29:09 +0200 |
commit | ab6afe0111b25bd2d764bb807f086808ae7a5534 (patch) | |
tree | daa4749047458d69e04da2d8e1fef348ceed6630 /lib/private/Diagnostics | |
parent | 9ef70f0c4e94bd32d6b7732d4735c561901cb3df (diff) | |
download | nextcloud-server-ab6afe0111b25bd2d764bb807f086808ae7a5534.tar.gz nextcloud-server-ab6afe0111b25bd2d764bb807f086808ae7a5534.zip |
fix: Fix new psalm errors from update
Not sure about the SimpleContainer modification, let’s see what CI says
about that.
Signed-off-by: Côme Chilliet <come.chilliet@nextcloud.com>
Diffstat (limited to 'lib/private/Diagnostics')
-rw-r--r-- | lib/private/Diagnostics/Event.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/private/Diagnostics/Event.php b/lib/private/Diagnostics/Event.php index 0c3aa6ae29c..554f54a6ffd 100644 --- a/lib/private/Diagnostics/Event.php +++ b/lib/private/Diagnostics/Event.php @@ -101,7 +101,7 @@ class Event implements IEvent { return $this->end - $this->start; } - public function __toString() { + public function __toString(): string { return $this->getId() . ' ' . $this->getDescription() . ' ' . $this->getDuration(); } } |