/**
  * Check if a parameters path exists without checking parents.
  *
  * @param   string  $key  The name of the param or sub-param, e.g. a.b.c
  * @return  boolean
  */
 public function hasInThis($key)
 {
     return Get::has($this->params, $key);
 }