Skip to content

Commit

Permalink
fix typo
Browse files Browse the repository at this point in the history
Signed-off-by: Benjamin Brahmer <info@b-brahmer.de>
  • Loading branch information
Grotax committed Dec 30, 2023
1 parent 848e77d commit 8a611ed
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/Listeners/AddMissingIndicesListener.php
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@

use OCP\EventDispatcher\Event;
use OCP\EventDispatcher\IEventListener;
use OCP\DB\Events\AddMissingIncidesEvent;
use OCP\DB\Events\AddMissingIndicesEvent;

/**
* @template-implements IEventListener<Event|AddMissingIndicesEvent>
Expand All @@ -23,7 +23,7 @@ class AddMissingIndicesListener implements IEventListener
{
public function handle(Event $event): void
{
if (!$event instanceof AddMissingIncidesEvent) {
if (!$event instanceof AddMissingIndicesEvent) {
return;
}

Expand Down

0 comments on commit 8a611ed

Please sign in to comment.