コード例 #1
0
ファイル: GitHubUsers.php プロジェクト: brajola/dashboard
 /**
  * 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);
 }
コード例 #2
0
ファイル: GitHubOrgs.php プロジェクト: brajola/dashboard
 /**
  * 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);
 }
コード例 #3
0
 /**
  * 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);
 }
コード例 #4
0
ファイル: GitHubGit.php プロジェクト: brajola/dashboard
 /**
  * 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);
 }
コード例 #5
0
ファイル: GitHubActivity.php プロジェクト: brajola/dashboard
 /**
  * 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);
 }
コード例 #6
0
ファイル: GitHubRepos.php プロジェクト: brajola/dashboard
 /**
  * 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);
 }
コード例 #7
0
 /**
  * Initialize sub services
  */
 public function __construct(GitHubClient $client)
 {
     parent::__construct($client);
     $this->types = new GitHubActivityEventsTypes($client);
 }
コード例 #8
0
 /**
  * Initialize sub services
  */
 public function __construct(GitHubClient $client)
 {
     parent::__construct($client);
     $this->assets = new GitHubReposReleasesAssets($client);
 }
コード例 #9
0
ファイル: GitHubGists.php プロジェクト: brajola/dashboard
 /**
  * Initialize sub services
  */
 public function __construct(GitHubClient $client)
 {
     parent::__construct($client);
     $this->comments = new GitHubGistsComments($client);
 }