/
home
/
sjslayjy
/
public_html
/
theweavenest
/
vendor
/
laravel
/
framework
/
src
/
Illuminate
/
Foundation
/
Events
/
Upload File
HOME
<?php namespace Illuminate\Foundation\Events; class LocaleUpdated { /** * The new locale. * * @var string */ public $locale; /** * Create a new event instance. * * @param string $locale * @return void */ public function __construct($locale) { $this->locale = $locale; } }