Issue #2980670 by follow-up alexpott: Install a site from config if the config directory is set in settings.php

merge-requests/1654/head
Alex Pott 2018-07-11 14:06:11 +01:00
parent 72cd973590
commit ca1574e36e
No known key found for this signature in database
GPG Key ID: 31905460D4A69276
1 changed files with 10 additions and 2 deletions

View File

@ -44,11 +44,19 @@ EOF;
return;
}
/**
* Installer step: Requirements problem.
*/
protected function setUpRequirementsProblem() {
// This form will never be reached.
return;
}
/**
* Installer step: Configure settings.
*/
protected function setUpSettings() {
// This form will never be reached
// This form will never be reached.
return;
}
@ -56,7 +64,7 @@ EOF;
* Final installer step: Configure site.
*/
protected function setUpSite() {
// This form will never be reached
// This form will never be reached.
return;
}