configuration = $configuration; } /** * Gets the configuration data. */ public function getConfiguration() { return $this->configuration; } /** * Gets a single configuration key. */ public function getConfigurationValue($key) { return isset($this->configuration[$key]) ? $this->configuration[$key] : NULL; } }