0 follower

Final Class Yiisoft\Yii\Middleware\Event\SetLocaleEvent

InheritanceYiisoft\Yii\Middleware\Event\SetLocaleEvent

Raised when Yiisoft\Yii\Middleware\Locale middleware have determined the locale to use.

Use this event to configure locale of extra services.

Method Details

Hide inherited methods

__construct() public method

public __construct( string $locale ): mixed
$locale string

Locale determined by Yiisoft\Yii\Middleware\Locale middleware.

                public function __construct(private readonly string $locale)
{
}

            
getLocale() public method

Get locale determined by Yiisoft\Yii\Middleware\Locale middleware.

public getLocale( ): string
return string

Locale to use.

                public function getLocale(): string
{
    return $this->locale;
}