芝麻web文件管理V1.00
编辑当前文件:/home/pulsehostuk9/public_html/invoicer.pulsehost.co.uk/vendor/symfony/ModulesServiceProvider.php
app->register(BootstrapServiceProvider::class); } /** * Register package's namespaces. */ protected function registerNamespaces() { $configPath = __DIR__ . '/../config/config.php'; $this->publishes([ $configPath => config_path('modules.php'), ], 'config'); } /** * 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); } }