getParam() публичный Метод

Устаревший: all parameters should be defined in function's arguments
public getParam ( $key, boolean $rawValue = false ) : mixed
$key
$rawValue boolean if true returns rawValue (not stripped) only once, don't save in cache
Результат mixed
Пример #1
0
 public function getParam($key)
 {
     return $this->request->getParam($key);
 }
Пример #2
0
 /**
  * @deprecated
  * @param $key
  * @param bool $rawValue if true returns rawValue (not stripped) only once, don't save in cache
  * @return mixed
  */
 public function getParam($key, $rawValue = false)
 {
     return $this->request->getParam($key, $rawValue);
 }