1
0
mirror of https://github.com/flarum/core.git synced 2025-08-01 22:20:21 +02:00

Use non-deprecated translator interface

This commit is contained in:
Alexander Skvortsov
2021-03-13 17:10:23 -05:00
parent 23c03e058a
commit b922257468
2 changed files with 2 additions and 2 deletions

View File

@@ -12,7 +12,7 @@ namespace Flarum\Mentions\Notification;
use Flarum\Notification\Blueprint\BlueprintInterface;
use Flarum\Notification\MailableInterface;
use Flarum\Post\Post;
use Symfony\Component\Translation\TranslatorInterface;
use Symfony\Contracts\Translation\TranslatorInterface;
class PostMentionedBlueprint implements BlueprintInterface, MailableInterface
{

View File

@@ -12,7 +12,7 @@ namespace Flarum\Mentions\Notification;
use Flarum\Notification\Blueprint\BlueprintInterface;
use Flarum\Notification\MailableInterface;
use Flarum\Post\Post;
use Symfony\Component\Translation\TranslatorInterface;
use Symfony\Contracts\Translation\TranslatorInterface;
class UserMentionedBlueprint implements BlueprintInterface, MailableInterface
{