Example #1
0
 /**
  * Returns a parameter by name.
  *
  * @param string     $key     The key
  * @param null|mixed $default The default value if the parameter key does not exist
  *
  * @return mixed
  */
 public static function get($key, $default = null)
 {
     return \Ape\ParameterBag::get($key, $default);
 }