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 |
||
| 24 | class Events extends API\Api |
||
| 25 | { |
||
| 26 | /** |
||
| 27 | * Get a list of events |
||
| 28 | * |
||
| 29 | * Available `$options`: |
||
| 30 | * |
||
| 31 | * <example> |
||
| 32 | * 'start' (int) = An integer specifying the offset to start with. By default, this call starts with 0. |
||
| 33 | * 'limit' (int) = An integer specifying the number of events to return. (0 - 50 range) |
||
| 34 | * 'type' (string) = The event type to return. |
||
| 35 | * </example> |
||
| 36 | * |
||
| 37 | * @access public |
||
| 38 | * @param string $account The team or individual account owning the repository. |
||
| 39 | * @param string $repo The repository identifier. |
||
| 40 | * @param array $options The rest of available options |
||
| 41 | * @return MessageInterface |
||
| 42 | * |
||
| 43 | * @see https://confluence.atlassian.com/display/BITBUCKET/events+Resources#eventsResources-GETalistofevents |
||
| 44 | */ |
||
| 45 | 2 | public function all($account, $repo, array $options = array()) |
|
| 52 | } |
||
| 53 |