芝麻web文件管理V1.00
编辑当前文件:/home/sditechnicalteam/public_html/vendor/nwidart/laravel-modules/src/Laravel/Module.php
getSnakeName() . '_module.php', $this->app->getCachedConfigPath()); } return Str::replaceLast('services.php', $this->getSnakeName() . '_module.php', $this->app->getCachedServicesPath()); } /** * {@inheritdoc} */ public function registerProviders(): void { (new ProviderRepository($this->app, new Filesystem(), $this->getCachedServicesPath())) ->load($this->get('providers', [])); } /** * {@inheritdoc} */ public function registerAliases(): void { $loader = AliasLoader::getInstance(); foreach ($this->get('aliases', []) as $aliasName => $aliasClass) { $loader->alias($aliasName, $aliasClass); } } }