Efficiently\AuthorityController\AuthorityControllerServiceProvider::boot PHP Метод

boot() публичный Метод

Bootstrap the application events.
public boot ( ) : void
Результат void
    public function boot()
    {
        // Publish config
        $this->publishes([__DIR__ . '/../../config/config.php' => config_path('authority-controller.php')], 'config');
        // Publish migrations
        $this->publishes([__DIR__ . '/../../migrations/' => base_path('database/migrations')], 'migrations');
        // Load translations
        $this->loadTranslationsFrom(__DIR__ . '/../../lang', 'authority-controller');
        // Publish translations
        $this->publishes([__DIR__ . '/../../translations' => base_path('resources/lang')], 'translations');
    }
AuthorityControllerServiceProvider