Jenssegers\Date\DateServiceProvider::boot PHP 메소드

boot() 공개 메소드

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