diff options
Diffstat (limited to 'build/integration/features/bootstrap/LDAPContext.php')
-rw-r--r-- | build/integration/features/bootstrap/LDAPContext.php | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/build/integration/features/bootstrap/LDAPContext.php b/build/integration/features/bootstrap/LDAPContext.php index 2ad737bf8b8..4932eaa36a5 100644 --- a/build/integration/features/bootstrap/LDAPContext.php +++ b/build/integration/features/bootstrap/LDAPContext.php @@ -26,8 +26,9 @@ use Behat\Gherkin\Node\TableNode; use PHPUnit\Framework\Assert; class LDAPContext implements Context { - use BasicStructure; - use CommandLine; + use AppConfiguration, + CommandLine, + Sharing; // Pulls in BasicStructure protected $configID; @@ -204,4 +205,8 @@ class LDAPContext implements Context { $configKey = $this->configID . 'ldap_configuration_active'; $this->invokingTheCommand('config:app:set user_ldap ' . $configKey . ' --value="0"'); } + + protected function resetAppConfigs() { + // not implemented + } } |