示例#1
0
 /**
  * Method to validate response for errors
  *
  * @param   JHttpresponse  $response  reponse from the mediawiki server
  *
  * @return  Object
  *
  * @since   12.3
  */
 public function validateResponse($response)
 {
     return parent::validateResponse($response);
 }
 /**
  * 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);
 }