1
0
mirror of https://github.com/flarum/core.git synced 2025-08-15 12:54:47 +02:00

fixed the Bus command Handling forwarding the call to a matching Handler class

This commit is contained in:
Daniel Klabbers
2017-11-02 10:48:33 +01:00
parent 55b763a570
commit 72c232d5a3
4 changed files with 55 additions and 3 deletions

View File

@@ -14,9 +14,11 @@ namespace Flarum\Locale;
use Flarum\Event\ConfigureLocales;
use Flarum\Foundation\AbstractServiceProvider;
use Illuminate\Contracts\Events\Dispatcher;
use Symfony\Component\Translation\MessageSelector;
use Symfony\Component\Translation\Translator;
use Symfony\Component\Translation\TranslatorInterface;
use Illuminate\Translation\Translator;
use Illuminate\Translation\FileLoader;
//use Symfony\Component\Translation\MessageSelector;
//use Symfony\Component\Translation\Translator;
//use Symfony\Component\Translation\TranslatorInterface;
class LocaleServiceProvider extends AbstractServiceProvider
{