芝麻web文件管理V1.00
编辑当前文件:/home/sditechnicalteam/public_html/vendor/nwidart/laravel-modules/src/ModulesServiceProvider.php
app->register(BootstrapServiceProvider::class); } /** * Register package's namespaces. */ protected function registerNamespaces() { $configPath = __DIR__ . '/../config/config.php'; $stubsPath = dirname(__DIR__) . '/src/Commands/stubs'; $this->publishes([ $configPath => config_path('modules.php'), ], 'config'); $this->publishes([ $stubsPath => base_path('stubs/nwidart-stubs'), ], 'stubs'); } /** * Register the service provider. */ abstract protected function registerServices(); /** * Get the services provided by the provider. * * @return array */ public function provides() { return [Contracts\RepositoryInterface::class, 'modules']; } /** * Register providers. */ protected function registerProviders() { $this->app->register(ConsoleServiceProvider::class); $this->app->register(ContractsServiceProvider::class); } }