Skip to content

Commit

Permalink
Merge pull request #106 from universityofadelaide/config-backwards-co…
Browse files Browse the repository at this point in the history
…mpat

Adds compatibility layer to run independent of D8/9 version.
  • Loading branch information
pingers authored Oct 5, 2021
2 parents 6c8c114 + 8f6b0ba commit d5130df
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions scaffold/required/RoboFileBase.php
Original file line number Diff line number Diff line change
Expand Up @@ -333,6 +333,15 @@ public function configImport() {
$this->checkFail($successful, 'Config import failed.');
}

/**
* Config import backwards compatibility for restore/upgrade.
*
* @deprecated To be removed once all apps move to D9.
*/
public function configImportPlus() {
$this->configImport();
}

/**
* Exports Drupal configuration.
*
Expand Down

0 comments on commit d5130df

Please sign in to comment.