1 | <?php declare(strict_types=1); |
||
19 | class Repository extends BaseRepository |
||
20 | { |
||
21 | public function builds(): Observable |
||
27 | |||
28 | public function jobs(int $buildId): Observable |
||
34 | |||
35 | /** |
||
36 | * @param int $id |
||
37 | * @return CancellablePromiseInterface |
||
38 | */ |
||
39 | public function build(int $id): CancellablePromiseInterface |
||
43 | |||
44 | /** |
||
45 | * @return ObservableInterface |
||
46 | */ |
||
47 | public function commits(): ObservableInterface |
||
53 | |||
54 | /** |
||
55 | * @return Observable |
||
56 | */ |
||
57 | public function events(): Observable |
||
63 | |||
64 | /** |
||
65 | * @return PromiseInterface |
||
66 | */ |
||
67 | public function settings(): PromiseInterface |
||
73 | |||
74 | /** |
||
75 | * @return PromiseInterface |
||
76 | */ |
||
77 | public function isActive(): PromiseInterface |
||
87 | |||
88 | /** |
||
89 | * @return PromiseInterface |
||
90 | */ |
||
91 | public function enable(): PromiseInterface |
||
95 | |||
96 | /** |
||
97 | * @return PromiseInterface |
||
98 | */ |
||
99 | public function disable(): PromiseInterface |
||
103 | |||
104 | /** |
||
105 | * @param bool $status |
||
106 | * @return PromiseInterface |
||
107 | */ |
||
108 | protected function setActiveStatus(bool $status) |
||
125 | |||
126 | /** |
||
127 | * @return ObservableInterface |
||
128 | */ |
||
129 | public function branches(): ObservableInterface |
||
135 | |||
136 | /** |
||
137 | * @return ObservableInterface |
||
138 | */ |
||
139 | public function vars(): ObservableInterface |
||
145 | |||
146 | /** |
||
147 | * @return ObservableInterface |
||
148 | */ |
||
149 | public function caches(): ObservableInterface |
||
155 | |||
156 | /** |
||
157 | * @return PromiseInterface |
||
158 | */ |
||
159 | public function key(): PromiseInterface |
||
165 | |||
166 | public function refresh(): PromiseInterface |
||
172 | } |
||
173 |