You are here

public function Config::keyIsSet in Backup and Migrate 8.4

Determine if the given key has had a value set for it.

Parameters

string $key: The array key to check for.

Return value

bool Whether the key is defined.

Overrides ConfigInterface::keyIsSet

1 call to Config::keyIsSet()
Config::get in lib/backup_migrate_core/src/Config/Config.php
Get a setting value.

File

lib/backup_migrate_core/src/Config/Config.php, line 69

Class

Config
Class ConfigBase.

Namespace

BackupMigrate\Core\Config

Code

public function keyIsSet($key) {
  return isset($this->config[$key]);
}