chore: Fix missing Override

CI/Psalm fails on master since 109eb0c8a9

This should hopefully fix that.

Signed-off-by: Micke Nordin <kano@sunet.se>
This commit is contained in:
Micke Nordin 2026-05-04 18:24:10 +02:00 committed by Micke Nordin
parent 020c4e9b59
commit a874a1c9ca

View file

@ -96,6 +96,7 @@ class Broker implements IBroker {
$this->backend->deleteConversation($id);
}
#[\Override]
public function isAllowedToCreateConversations(): bool {
if (!$this->isEnabledForUser()) {
return false;
@ -104,6 +105,7 @@ class Broker implements IBroker {
return $this->backend->isAllowedToCreateConversations();
}
#[\Override]
public function isEnabledForUser(): bool {
if (!$this->hasBackend()) {
return false;