Skip to content

Commit 0e72429

Browse files
committed
chore: Fix missing Override
CI/Psalm fails on master since 109eb0c This should hopefully fix that. Signed-off-by: Micke Nordin <kano@sunet.se>
1 parent b5ad0ca commit 0e72429

1 file changed

Lines changed: 2 additions & 0 deletions

File tree

lib/private/Talk/Broker.php

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -96,6 +96,7 @@ public function deleteConversation(string $id): void {
9696
$this->backend->deleteConversation($id);
9797
}
9898

99+
#[\Override]
99100
public function isAllowedToCreateConversations(): bool {
100101
if (!$this->isEnabledForUser()) {
101102
return false;
@@ -104,6 +105,7 @@ public function isAllowedToCreateConversations(): bool {
104105
return $this->backend->isAllowedToCreateConversations();
105106
}
106107

108+
#[\Override]
107109
public function isEnabledForUser(): bool {
108110
if (!$this->hasBackend()) {
109111
return false;

0 commit comments

Comments
 (0)