Calotype\SEO\Providers\SEOServiceProvider::boot PHP Method

boot() public method

Bootstrap the application events.
public boot ( ) : void
return void
    public function boot()
    {
        // If the user does not want us to create default routes, we won't
        $should_generate_routes = $this->app['config']->get('calotype-seo::generate_routes');
        if ($should_generate_routes) {
            $this->generateDefaultRoutes();
        }
    }