/**
  * Converts CamelCased word and underscore to space to return a readable string
  * @param $value the namespace
  * @return string the readable string
  */
 public function HumanizeFilter($value)
 {
     return Inflexible::humanize($value);
 }