You are here

public function Config::keyIsSet in Backup and Migrate 5.0.x

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 src/Core/Config/Config.php
Get a setting value.

File

src/Core/Config/Config.php, line 65

Class

Config
A basic configuration manager with very little logic in it.

Namespace

Drupal\backup_migrate\Core\Config

Code

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