SetApptypeSettingsPaths chooses and sets the settings.php/settings.local.php and related paths for a given app.
()
| 430 | // SetApptypeSettingsPaths chooses and sets the settings.php/settings.local.php |
| 431 | // and related paths for a given app. |
| 432 | func (app *DdevApp) SetApptypeSettingsPaths() { |
| 433 | if appFuncs, ok := appTypeMatrix[app.Type]; ok && appFuncs.appTypeSettingsPaths != nil { |
| 434 | appFuncs.appTypeSettingsPaths(app) |
| 435 | } |
| 436 | } |
| 437 | |
| 438 | // DetectAppType calls each apptype's detector until it finds a match, |
| 439 | // or returns 'php' as a last resort. |
no outgoing calls
no test coverage detected