Piwik\Tracker\Request::getRawParams PHP Method

getRawParams() public method

Get the params that were originally passed to the instance. These params do not contain any params that were added within this object.
public getRawParams ( ) : array
return array
    public function getRawParams()
    {
        return $this->rawParams;
    }

Usage Example

コード例 #1
0
 public function trackRequest(Request $request)
 {
     $allParams = $request->getRawParams();
     if (!empty($allParams['forceThrow'])) {
         throw new ForcedException("forced exception");
     }
     return parent::trackRequest($request);
 }