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 ResponseInterface |
||
| 30 | */ |
||
| 31 | 1 | public function get($username) |
|
| 37 | |||
| 38 | /** |
||
| 39 | * Get the list of the user's repositories |
||
| 40 | * |
||
| 41 | * @access public |
||
| 42 | * @param string $username |
||
| 43 | * @return ResponseInterface |
||
| 44 | */ |
||
| 45 | 1 | public function repositories($username) |
|
| 51 | |||
| 52 | /** |
||
| 53 | * Get invitations |
||
| 54 | * |
||
| 55 | * @access public |
||
| 56 | * @return Users\Invitations |
||
| 57 | * |
||
| 58 | * @throws \InvalidArgumentException |
||
| 59 | 1 | */ |
|
| 60 | public function invitations() |
||
| 64 | |||
| 65 | /** |
||
| 66 | * Get sshKeys |
||
| 67 | * |
||
| 68 | * @access public |
||
| 69 | * @return Users\SshKeys |
||
| 70 | * |
||
| 71 | * @throws \InvalidArgumentException |
||
| 72 | */ |
||
| 73 | 1 | public function sshKeys() |
|
| 77 | } |
||
| 78 |