getRequest("chris.guindon@eclipse.org"); * * @author chrisguindon */ class AeriApi extends EclipseUSSBlob { /** * Constuctor */ function __construct(App $App = NULL) { parent::__construct($App); $this->setBaseUrl("https://dev.eclipse.org/recommenders/community/aeri/v2/api/v1/reporters"); } public function getProblems($mail = "") { // Simple validation before making a request to gerrit if (empty($mail)) { return array(); } $data = $this->get($mail . "/problems"); return $data; } }