Spatie\ModelCleanup\ModelCleanupServiceProvider::register PHP Метод

register() публичный Метод

public register ( )
    public function register()
    {
        $this->mergeConfigFrom(__DIR__ . '/../config/laravel-model-cleanup.php', 'laravel-model-cleanup');
        $this->app->bind('command.clean:models', CleanUpModelsCommand::class);
        $this->commands(['command.clean:models']);
    }
ModelCleanupServiceProvider