You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Instead of manually introducing the Config files, it is enough to add the following code: if (File::exists($modulePath . "Configs")) { foreach (Finder::create()->in($modulePath . 'Configs')->name('*.php') as $file) { $this->mergeConfigFrom( $file->getRealPath() , basename($file->getRealPath(), '.php') ); } }
The text was updated successfully, but these errors were encountered:
Instead of manually introducing the Config files, it is enough to add the following code:
if (File::exists($modulePath . "Configs")) { foreach (Finder::create()->in($modulePath . 'Configs')->name('*.php') as $file) { $this->mergeConfigFrom( $file->getRealPath() , basename($file->getRealPath(), '.php') ); } }
The text was updated successfully, but these errors were encountered: