korrekte klasse

This commit is contained in:
JM 2026-05-05 18:25:43 +02:00
parent 3a6befa283
commit 523449ad04
1 changed files with 3 additions and 3 deletions

View File

@ -5,7 +5,7 @@ declare(strict_types=1);
namespace SbpJm\FlarumMSTeamsWebhook\Notification; namespace SbpJm\FlarumMSTeamsWebhook\Notification;
use Flarum\Notification\Blueprint\BlueprintInterface; use Flarum\Notification\Blueprint\BlueprintInterface;
use Flarum\Notification\Driver\DriverInterface; use Flarum\Notification\DriverInterface;
use Flarum\User\User; use Flarum\User\User;
use SbpJm\FlarumMSTeamsWebhook\Support\TeamsNotifier; use SbpJm\FlarumMSTeamsWebhook\Support\TeamsNotifier;
@ -28,7 +28,7 @@ class TeamsDriver implements DriverInterface
} }
/** /**
* Limit which notification types go to Teams. * Limit which notification types are allowed for Teams.
*/ */
protected function supports(BlueprintInterface $blueprint): bool protected function supports(BlueprintInterface $blueprint): bool
{ {
@ -40,4 +40,4 @@ class TeamsDriver implements DriverInterface
'postLiked', 'postLiked',
], true); ], true);
} }
} }