inpin/lara-alert

View on GitHub
src/LaraAlertServiceProvider.php

Summary

Maintainability
A
0 mins
Test Coverage
<?php

namespace Inpin\LaraAlert;

use Illuminate\Support\ServiceProvider;

class LaraAlertServiceProvider extends ServiceProvider
{
    /**
     * Bootstrap the application services.
     *
     * @return void
     */
    public function boot()
    {
        $this->publishes([
            realpath(__DIR__.'/../migrations') => database_path('migrations'),
        ], 'migrations');
    }

    /**
     * Register the application services.
     *
     * @return void
     */
    public function register()
    {
        //
    }
}