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 |
||
20 | class Hooks extends API\Api |
||
21 | { |
||
22 | /** |
||
23 | * @access public |
||
24 | * @param string $account The team or individual account owning the repository. |
||
25 | * @param string $repo The repository identifier. |
||
26 | * @param array $params Additional service parameters |
||
27 | * @return ResponseInterface |
||
28 | * |
||
29 | * @throws \InvalidArgumentException |
||
30 | */ |
||
31 | 8 | public function create($account, $repo, array $params = array()) |
|
56 | |||
57 | /** |
||
58 | * @access public |
||
59 | * @param string $account The team or individual account owning the repository. |
||
60 | * @param string $repo The repository identifier. |
||
61 | * @param string $uuid The universally unique identifier of the webhook. |
||
62 | * @param array $params Additional service parameters |
||
63 | * @return ResponseInterface |
||
64 | * |
||
65 | * @throws \InvalidArgumentException |
||
66 | */ |
||
67 | 6 | public function update($account, $repo, $uuid, array $params = array()) |
|
92 | |||
93 | /** |
||
94 | * @access public |
||
95 | * @param string $account The team or individual account owning the repository. |
||
96 | * @param string $repo The repository identifier. |
||
97 | * @return ResponseInterface |
||
98 | */ |
||
99 | 1 | public function all($account, $repo) |
|
105 | |||
106 | /** |
||
107 | * @access public |
||
108 | * @param string $account The team or individual account owning the repository. |
||
109 | * @param string $repo The repository identifier. |
||
110 | * @param string $uuid The universally unique identifier of the webhook. |
||
111 | * @return ResponseInterface |
||
112 | */ |
||
113 | 1 | public function get($account, $repo, $uuid) |
|
119 | |||
120 | /** |
||
121 | * @access public |
||
122 | * @param string $account The team or individual account owning the repository. |
||
123 | * @param string $repo The repository identifier. |
||
124 | * @param string $uuid The universally unique identifier of the webhook. |
||
125 | * @return ResponseInterface |
||
126 | */ |
||
127 | 1 | public function delete($account, $repo, $uuid) |
|
133 | } |
||
134 |