buildQuery() 개인적인 메소드

private buildQuery ( string $query ) : string
$query string
리턴 string query with extra params
예제 #1
0
 /**
  * {@inheritDoc}
  */
 protected function buildQuery($query)
 {
     $query = parent::buildQuery($query);
     $query = sprintf('%s&client=%s', $query, $this->clientId);
     if (null !== $this->privateKey) {
         $query = $this->signQuery($query);
     }
     return $query;
 }
예제 #2
0
 protected function buildQuery($query)
 {
     return parent::buildQuery($this->proxy . '?' . parse_url($query, PHP_URL_QUERY));
 }