<?php | |
namespace App\Providers; | |
use App\Services\TenantManager; | |
use App\Tenant; | |
use Illuminate\Support\ServiceProvider; | |
use Laravel\Passport\Passport; | |
class AppServiceProvider extends ServiceProvider | |
{ | |
/** | |
* Register any application services. | |
* | |
* @return void | |
*/ | |
public function register() | |
{ | |
// This instruct Laravel to ignore passport migrations during php artisan migrate | |
Passport::ignoreMigrations(); | |
// other code | |
} | |
/** | |
* Bootstrap any application services. | |
* | |
* @return void | |
*/ | |
public function boot() | |
{ | |
// | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment