wdmtech/enviricons

View on GitHub
src/Wdmtech/Enviricons/EnviriconsServiceProvider.php

Summary

Maintainability
A
0 mins
Test Coverage
<?php

namespace Wdmtech\Enviricons;

use Illuminate\Support\ServiceProvider;

class EnviriconsServiceProvider extends ServiceProvider
{
    /**
     * Indicates if loading of the provider is deferred.
     *
     * @var bool
     */
    protected $defer = false;

    /**
     * Bootstrap the application events.
     *
     * @return void
     */
    public function boot()
    {
        // Make view available to app
        $this->loadViewsFrom(__DIR__.'/views', 'enviricons');

        // Publish configs
        $this->publishes([
            __DIR__.'/config/enviricons.php' => config_path('enviricons.php'),
        ], 'enviricons');

        // Publish assets
        $this->publishes([
            __DIR__.'/public/' => public_path('/vendor/wdmtech/enviricons'),
        ], 'enviricons');

        // Publish (optional) view
        $this->publishes([
            __DIR__.'/views/enviricons.blade.php' => base_path('resources/views/vendor/wdmtech/enviricons/enviricons.blade.php'),
        ], 'enviricons-optional-view');
    }

    /**
     * Register the service provider.
     *
     * @return void
     */
    public function register()
    {
        //
    }

    /**
     * Get the services provided by the provider.
     *
     * @return array
     */
    public function provides()
    {
        //
    }
}