Frontend\Core\Engine\Url::getParameters PHP Method

getParameters() public method

Return all the parameters
public getParameters ( boolean $includeGET = true ) : array
$includeGET boolean Should the GET-parameters be included?
return array
    public function getParameters($includeGET = true)
    {
        return $includeGET ? $this->parameters : array_diff_assoc($this->parameters, $this->request->query->all());
    }