Esempio n. 1
0
 /**
  * Method to build and return a full request URL for the request.  This method will
  * add appropriate pagination details if necessary and also prepend the API url
  * to have a complete URL for the request.
  *
  * @param   string  $path  URL to inflect
  *
  * @return  string   The request URL.
  *
  * @since   12.3
  */
 public function fetchUrl($path)
 {
     return parent::fetchUrl($path);
 }
 /**
  * Method to build and return a full request URL for the request.  This method will
  * add appropriate pagination details if necessary and also prepend the API url
  * to have a complete URL for the request.
  *
  * @param   string   $path   URL to inflect
  * @param   integer  $page   Page to request
  * @param   integer  $limit  Number of results to return per page
  *
  * @return  string   The request URL.
  *
  * @since   12.1
  */
 public function fetchUrl($path, $page = 0, $limit = 0)
 {
     return parent::fetchUrl($path, $page, $limit);
 }