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 |
||
18 | class Workspaces extends Api |
||
19 | { |
||
20 | /** |
||
21 | * Get a list of workspaces to which the caller has access. |
||
22 | * |
||
23 | * @access public |
||
24 | * @return ResponseInterface |
||
25 | * |
||
26 | * @throws \InvalidArgumentException |
||
27 | */ |
||
28 | public function all() |
||
32 | |||
33 | /** |
||
34 | * Get the public information associated with a workspace. |
||
35 | * |
||
36 | * @access public |
||
37 | * @param string $workspace The workspace ID (slug) or workspace UUID in curly brackets. |
||
38 | * @return ResponseInterface |
||
39 | */ |
||
40 | public function profile($workspace) |
||
46 | |||
47 | /** |
||
48 | * Get the workspace members. |
||
49 | * |
||
50 | * @access public |
||
51 | * @param string $workspace The workspace ID (slug) or workspace UUID in curly brackets. |
||
52 | * @return ResponseInterface |
||
53 | */ |
||
54 | public function members($workspace) |
||
60 | |||
61 | /** |
||
62 | * Get the list of projects in the workspace |
||
63 | * |
||
64 | * @access public |
||
65 | * @param string $workspace The workspace ID (slug) or workspace UUID in curly brackets. |
||
66 | * @return ResponseInterface |
||
67 | */ |
||
68 | public function projects($workspace) |
||
74 | |||
75 | /** |
||
76 | * @return Workspaces\Hooks |
||
77 | * @throws \InvalidArgumentException |
||
78 | */ |
||
79 | public function hooks() |
||
83 | } |
||
84 |