mirror of
https://github.com/yiisoft/app.git
synced 2026-03-06 08:14:13 +01:00
11 lines
212 B
PHP
11 lines
212 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
use App\EventHandler\SetLocaleEventHandler;
|
|
use Yiisoft\Yii\Middleware\Event\SetLocaleEvent;
|
|
|
|
return [
|
|
SetLocaleEvent::class => [[SetLocaleEventHandler::class, 'handle']],
|
|
];
|