getParam() public method

Returns the named parameter for the current auth driver.
public getParam ( string $param ) : string
$param string The parameter to fetch.
return string The parameter's value, or null if it doesn't exist.
示例#1
0
 /**
  * Returns the named parameter for the current auth driver.
  *
  * @param string $param  The parameter to fetch.
  *
  * @return string  The parameter's value, or null if it doesn't exist.
  */
 public function getParam($param)
 {
     return $this->_base ? $this->_base->getParam($param) : parent::getParam($param);
 }
示例#2
0
 /**
  */
 public function getParam($param)
 {
     return $this->_base->getParam($param);
 }