1 | <?php declare(strict_types=1); |
||
18 | class Repository extends BaseRepository |
||
19 | { |
||
20 | public function builds(): Observable |
||
26 | |||
27 | public function jobs(int $buildId): Observable |
||
33 | |||
34 | /** |
||
35 | * @param int $id |
||
36 | * @return CancellablePromiseInterface |
||
37 | */ |
||
38 | public function build(int $id): CancellablePromiseInterface |
||
42 | |||
43 | /** |
||
44 | * @return Observable |
||
45 | */ |
||
46 | public function commits(): Observable |
||
52 | |||
53 | /** |
||
54 | * @return Observable |
||
55 | */ |
||
56 | public function events(): Observable |
||
62 | |||
63 | /** |
||
64 | * @return PromiseInterface |
||
65 | */ |
||
66 | public function settings(): PromiseInterface |
||
72 | |||
73 | /** |
||
74 | * @return PromiseInterface |
||
75 | */ |
||
76 | public function isActive(): PromiseInterface |
||
86 | |||
87 | /** |
||
88 | * @return PromiseInterface |
||
89 | */ |
||
90 | public function enable(): PromiseInterface |
||
94 | |||
95 | /** |
||
96 | * @return PromiseInterface |
||
97 | */ |
||
98 | public function disable(): PromiseInterface |
||
102 | |||
103 | /** |
||
104 | * @return Observable |
||
105 | */ |
||
106 | public function branches(): Observable |
||
112 | |||
113 | /** |
||
114 | * @return Observable |
||
115 | */ |
||
116 | public function vars(): Observable |
||
122 | |||
123 | /** |
||
124 | * @return Observable |
||
125 | */ |
||
126 | public function caches(): Observable |
||
132 | |||
133 | /** |
||
134 | * @return PromiseInterface |
||
135 | */ |
||
136 | public function key(): PromiseInterface |
||
142 | |||
143 | public function refresh(): PromiseInterface |
||
149 | |||
150 | /** |
||
151 | * @param bool $status |
||
152 | * @return PromiseInterface |
||
153 | */ |
||
154 | protected function setActiveStatus(bool $status) |
||
171 | } |
||
172 |