/** * */ function __construct() { parent::__construct(); }
/** * @param $id * @param $url */ function __construct($id, $url) { parent::__construct(); $this->id = $id; $this->url = $url; }
/** * * @param type $responseCode */ protected function __construct($responseCode) { parent::__construct(); $this->responseCode = $responseCode; }
/** * * @param object $responsePayload */ function __construct($responsePayload) { parent::__construct(); $this->responsePayload = $responsePayload; }