Method |
Description |
|
authenticate ( ) : boolean |
Authenticates the tracker. |
|
closeIssue ( integer $id ) |
Closes an issue by id. |
|
createComment ( integer $id, string $message ) : string | null |
Creates a new a comment on an issue. |
|
getComments ( integer $id ) : array[] |
Gets comments of an issue. |
|
getIssue ( integer $id ) : array |
Gets an issue by id. |
|
getIssueUrl ( integer $id ) : string |
Gets the web-URL of the issue id. |
|
getIssues ( array $parameters = [], integer $limit = 30 ) : array[] |
Gets the issues as array. |
|
getLabels ( ) : string[] |
Gets the supported labels. |
|
getMilestones ( array $parameters = [] ) : string[] |
Gets the supported milestones. |
|
isAuthenticated ( ) : boolean |
Returns true if the tracker is authenticated, false otherwise. |
|
openIssue ( string $subject, string $body, array $options = [] ) : integer |
Opens a new issue on the issue tracker. |
|
updateIssue ( integer $id, array $parameters ) |
Updates the state of an issue by id. |
|