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 |
||
| 21 | class User extends Api |
||
| 22 | { |
||
| 23 | /** |
||
| 24 | * Get user profile |
||
| 25 | * |
||
| 26 | * @access public |
||
| 27 | * @return MessageInterface |
||
| 28 | */ |
||
| 29 | 1 | public function get() |
|
| 33 | |||
| 34 | /** |
||
| 35 | * Update user |
||
| 36 | * |
||
| 37 | * @access public |
||
| 38 | * @param array $options Filed->value pair of account settings |
||
| 39 | * @return MessageInterface |
||
| 40 | * |
||
| 41 | * @see https://confluence.atlassian.com/display/BITBUCKET/user+Endpoint#userEndpoint-Updateauser |
||
| 42 | */ |
||
| 43 | 1 | public function update(array $options) |
|
| 47 | |||
| 48 | /** |
||
| 49 | * Get a list of user privileges |
||
| 50 | * |
||
| 51 | * @access public |
||
| 52 | * @return MessageInterface |
||
| 53 | */ |
||
| 54 | 1 | public function privileges() |
|
| 58 | |||
| 59 | /** |
||
| 60 | * Get a list of repositories an account follows |
||
| 61 | * |
||
| 62 | * @access public |
||
| 63 | * @return MessageInterface |
||
| 64 | */ |
||
| 65 | 1 | public function follows() |
|
| 69 | |||
| 70 | /** |
||
| 71 | * Get repositories |
||
| 72 | * |
||
| 73 | * @access public |
||
| 74 | * @return User\Repositories |
||
| 75 | * @codeCoverageIgnore |
||
| 76 | */ |
||
| 77 | public function repositories() |
||
| 81 | |||
| 82 | /** |
||
| 83 | * Retrieves the email for an authenticated user. |
||
| 84 | * |
||
| 85 | * @access public |
||
| 86 | * @return MessageInterface |
||
| 87 | * |
||
| 88 | * @throws \InvalidArgumentException |
||
| 89 | */ |
||
| 90 | 1 | public function emails() |
|
| 94 | } |
||
| 95 |