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 Workspace extends API\Api |
||
| 21 | { |
||
| 22 | /** |
||
| 23 | * Get the public information associated with a workspace. |
||
| 24 | * |
||
| 25 | * @access public |
||
| 26 | * @param string $workspace The workspace ID (slug) or workspace UUID in curly brackets. |
||
| 27 | * @return ResponseInterface |
||
| 28 | */ |
||
| 29 | public function workspace($workspace) |
||
| 35 | |||
| 36 | /** |
||
| 37 | * Get the workspace members. |
||
| 38 | * |
||
| 39 | * @access public |
||
| 40 | * @param string $workspace The workspace ID (slug) or workspace UUID in curly brackets. |
||
| 41 | * @return ResponseInterface |
||
| 42 | */ |
||
| 43 | public function members($workspace) |
||
| 49 | |||
| 50 | /** |
||
| 51 | * Get the list of projects in the workspace |
||
| 52 | * |
||
| 53 | * @access public |
||
| 54 | * @param string $workspace The workspace ID (slug) or workspace UUID in curly brackets. |
||
| 55 | * @return ResponseInterface |
||
| 56 | */ |
||
| 57 | public function projects($workspace) |
||
| 63 | |||
| 64 | /** |
||
| 65 | * @return Hooks |
||
| 66 | * @throws \InvalidArgumentException |
||
| 67 | */ |
||
| 68 | public function hooks() |
||
| 72 | } |
||
| 73 |