GetPhpVersion returns the app's php version
()
| 687 | |
| 688 | // GetPhpVersion returns the app's php version |
| 689 | func (app *DdevApp) GetPhpVersion() string { |
| 690 | v := nodeps.PHPDefault |
| 691 | if app.PHPVersion != "" { |
| 692 | v = app.PHPVersion |
| 693 | } |
| 694 | return v |
| 695 | } |
| 696 | |
| 697 | // GetWebserverType returns the app's webserver type (nginx-fpm/apache-fpm/generic) |
| 698 | func (app *DdevApp) GetWebserverType() string { |
no outgoing calls