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);
 }