Skip to content

Instantly share code, notes, and snippets.

@ayhid
Created June 14, 2011 17:14
Show Gist options
  • Save ayhid/60af5845a9709cc016bd to your computer and use it in GitHub Desktop.
Save ayhid/60af5845a9709cc016bd to your computer and use it in GitHub Desktop.
public function getReviews($results = 15, $start = 0, $raw=null)
{
$response = $this->getForArtist('artist/reviews', array(
'results' => $results,
'start' => $start,
));
if($raw){
return $response;
}else{
return $response['reviews'];
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment