public function getValueByType($key, $type, $defaultValue = null) { $value = $this->getValue($key, $defaultValue); if (isset($value) === false) { return $defaultValue; } return MDataType::convert($value, $type); }