inpin/lara-like

View on GitHub
src/LaraLikeServiceProvider.php

Summary

Maintainability
A
0 mins
Test Coverage
<?php

namespace Inpin\LaraLike;

use Illuminate\Support\ServiceProvider;

class LaraLikeServiceProvider 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()
    {
        //
    }
}