/** * Initialize sub services */ public function __construct(GitHubClient $client) { parent::__construct($client); $this->emails = new GitHubUsersEmails($client); $this->followers = new GitHubUsersFollowers($client); $this->keys = new GitHubUsersKeys($client); }
/** * Initialize sub services */ public function __construct(GitHubClient $client) { parent::__construct($client); $this->members = new GitHubOrgsMembers($client); $this->teams = new GitHubOrgsTeams($client); $this->repos = new GitHubOrgsRepos($client); }
/** * Initialize sub services */ public function __construct(GitHubClient $client) { parent::__construct($client); $this->assignees = new GitHubIssuesAssignees($client); $this->comments = new GitHubIssuesComments($client); $this->events = new GitHubIssuesEvents($client); $this->labels = new GitHubIssuesLabels($client); $this->milestones = new GitHubIssuesMilestones($client); }
/** * Initialize sub services */ public function __construct(GitHubClient $client) { parent::__construct($client); $this->blobs = new GitHubGitBlobs($client); $this->commits = new GitHubGitCommits($client); $this->import = new GitHubGitImport($client); $this->refs = new GitHubGitRefs($client); $this->tags = new GitHubGitTags($client); $this->trees = new GitHubGitTrees($client); }
/** * Initialize sub services */ public function __construct(GitHubClient $client) { parent::__construct($client); $this->events = new GitHubActivityEvents($client); $this->feeds = new GitHubActivityFeeds($client); $this->notifications = new GitHubActivityNotifications($client); $this->settings = new GitHubActivitySettings($client); $this->starring = new GitHubActivityStarring($client); $this->watching = new GitHubActivityWatching($client); }
/** * Initialize sub services */ public function __construct(GitHubClient $client) { parent::__construct($client); $this->collaborators = new GitHubReposCollaborators($client); $this->comments = new GitHubReposComments($client); $this->commits = new GitHubReposCommits($client); $this->contents = new GitHubReposContents($client); $this->downloads = new GitHubReposDownloads($client); $this->forks = new GitHubReposForks($client); $this->hooks = new GitHubReposHooks($client); $this->keys = new GitHubReposKeys($client); $this->merging = new GitHubReposMerging($client); $this->releases = new GitHubReposReleases($client); $this->statistics = new GitHubReposStatistics($client); $this->statuses = new GitHubReposStatuses($client); }
/** * Initialize sub services */ public function __construct(GitHubClient $client) { parent::__construct($client); $this->types = new GitHubActivityEventsTypes($client); }
/** * Initialize sub services */ public function __construct(GitHubClient $client) { parent::__construct($client); $this->assets = new GitHubReposReleasesAssets($client); }
/** * Initialize sub services */ public function __construct(GitHubClient $client) { parent::__construct($client); $this->comments = new GitHubGistsComments($client); }