Jenssegers\Date\DateServiceProvider::boot PHP Method

boot() public method

Bootstrap the application events.
public boot ( ) : void
return void
    public function boot()
    {
        $this->app['events']->listen('locale.changed', function () {
            $this->setLocale();
        });
        $this->setLocale();
    }