We have detected an error in your notification set-up
(Event-ID dab39dc24f564ec7bd4628d1305fd03c).
Currently, we cannot inform you about inspection progress.
Please check that the user
557058:bca11929-8c2d-43f2-8a82-c5416880d395
still has access to your repository or
update the API account.
1 | <?php |
||
22 | class Users extends Api |
||
23 | { |
||
24 | /** |
||
25 | * Get the public information associated with a user |
||
26 | * |
||
27 | * @access public |
||
28 | * @param string $username |
||
29 | * @return MessageInterface |
||
30 | */ |
||
31 | 1 | public function get($username) |
|
37 | |||
38 | /** |
||
39 | * Get the list of followers. |
||
40 | * |
||
41 | * @access public |
||
42 | * @param string $username |
||
43 | * @return MessageInterface |
||
44 | */ |
||
45 | 1 | public function followers($username) |
|
51 | |||
52 | /** |
||
53 | * Get a list of accounts the user is following |
||
54 | * |
||
55 | * @access public |
||
56 | * @param string $username |
||
57 | * @return MessageInterface |
||
58 | */ |
||
59 | 1 | public function following($username) |
|
65 | |||
66 | /** |
||
67 | * Get the list of the user's repositories |
||
68 | * |
||
69 | * @access public |
||
70 | * @param string $username |
||
71 | * @return MessageInterface |
||
72 | */ |
||
73 | 1 | public function repositories($username) |
|
79 | |||
80 | /** |
||
81 | * Get account |
||
82 | * |
||
83 | * @access public |
||
84 | * @return Users\Account |
||
85 | * |
||
86 | * @throws \InvalidArgumentException |
||
87 | */ |
||
88 | 1 | public function account() |
|
92 | |||
93 | /** |
||
94 | * Get emails |
||
95 | * |
||
96 | * @access public |
||
97 | * @return Users\Emails |
||
98 | * |
||
99 | * @throws \InvalidArgumentException |
||
100 | */ |
||
101 | 1 | public function emails() |
|
105 | |||
106 | /** |
||
107 | * Get invitations |
||
108 | * |
||
109 | * @access public |
||
110 | * @return Users\Invitations |
||
111 | * |
||
112 | * @throws \InvalidArgumentException |
||
113 | */ |
||
114 | 1 | public function invitations() |
|
118 | |||
119 | /** |
||
120 | * Get oauth |
||
121 | * |
||
122 | * @access public |
||
123 | * @return Users\OAuth |
||
124 | * |
||
125 | * @throws \InvalidArgumentException |
||
126 | */ |
||
127 | 1 | public function oauth() |
|
131 | |||
132 | /** |
||
133 | * Get sshKeys |
||
134 | * |
||
135 | * @access public |
||
136 | * @return Users\SshKeys |
||
137 | * |
||
138 | * @throws \InvalidArgumentException |
||
139 | */ |
||
140 | 1 | public function sshKeys() |
|
144 | } |
||
145 |