Frontend\Core\Engine\Url::getParameters PHP 메소드

getParameters() 공개 메소드

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