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