Piwik\Tracker\Request::getRawParams PHP Метод

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

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
Результат 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);
 }