48 lines
837 B
PHP
48 lines
837 B
PHP
<?php
|
|
|
|
namespace BAG\Laravel;
|
|
|
|
use Illuminate\Contracts\Support\DeferrableProvider;
|
|
|
|
class ServiceProvider extends \Illuminate\Support\ServiceProvider implements DeferrableProvider
|
|
{
|
|
/**
|
|
* Register any application services.
|
|
*
|
|
* @return void
|
|
*/
|
|
public function register()
|
|
{
|
|
//
|
|
}
|
|
|
|
/**
|
|
* Bootstrap any application services.
|
|
*
|
|
* @return void
|
|
*/
|
|
public function boot()
|
|
{
|
|
if (! $this->app->runningInConsole()) {
|
|
return;
|
|
}
|
|
|
|
$this->commands([
|
|
Console\MakeMigrations::class,
|
|
//...
|
|
]);
|
|
}
|
|
|
|
/**
|
|
* Get the services provided by the provider.
|
|
*
|
|
* @return array
|
|
*/
|
|
public function provides()
|
|
{
|
|
return [
|
|
Console\MakeMigrations::class,
|
|
];
|
|
}
|
|
}
|