1 | <?php declare(strict_types=1); |
||
16 | abstract class Project extends AbstractResource implements ProjectInterface |
||
17 | { |
||
18 | /** |
||
19 | * @var int |
||
20 | */ |
||
21 | protected $projectId; |
||
22 | |||
23 | /** |
||
24 | * @var int |
||
25 | */ |
||
26 | protected $accountId; |
||
27 | |||
28 | /** |
||
29 | * @var string |
||
30 | */ |
||
31 | protected $accountName; |
||
32 | |||
33 | /** |
||
34 | * @var array |
||
35 | */ |
||
36 | protected $builds; |
||
37 | |||
38 | /** |
||
39 | * @var string |
||
40 | */ |
||
41 | protected $name; |
||
42 | |||
43 | /** |
||
44 | * @var string |
||
45 | */ |
||
46 | protected $slug; |
||
47 | |||
48 | /** |
||
49 | * @var string |
||
50 | */ |
||
51 | protected $repositoryType; |
||
52 | |||
53 | /** |
||
54 | * @var string |
||
55 | */ |
||
56 | protected $repositoryScm; |
||
57 | |||
58 | /** |
||
59 | * @var string |
||
60 | */ |
||
61 | protected $repositoryName; |
||
62 | |||
63 | /** |
||
64 | * @var string |
||
65 | */ |
||
66 | protected $repositoryBranch; |
||
67 | |||
68 | /** |
||
69 | * @var bool |
||
70 | */ |
||
71 | protected $isPrivate; |
||
72 | |||
73 | /** |
||
74 | * @var bool |
||
75 | */ |
||
76 | protected $skipBranchesWithoutAppveyorYml; |
||
77 | |||
78 | /** |
||
79 | * @var bool |
||
80 | */ |
||
81 | protected $enableSecureVariablesInPullRequests; |
||
82 | |||
83 | /** |
||
84 | * @var bool |
||
85 | */ |
||
86 | protected $enableDeploymentInPullRequests; |
||
87 | |||
88 | /** |
||
89 | * @var bool |
||
90 | */ |
||
91 | protected $rollingBuilds; |
||
92 | |||
93 | /** |
||
94 | * @var bool |
||
95 | */ |
||
96 | protected $alwaysBuildClosedPullRequests; |
||
97 | |||
98 | /** |
||
99 | * @var array |
||
100 | */ |
||
101 | protected $nuGetFeed; |
||
102 | |||
103 | /** |
||
104 | * @var array |
||
105 | */ |
||
106 | protected $securityDescriptor; |
||
107 | |||
108 | /** |
||
109 | * @var DateTimeInterface |
||
110 | */ |
||
111 | protected $created; |
||
112 | |||
113 | /** |
||
114 | * @var DateTimeInterface |
||
115 | */ |
||
116 | protected $updated; |
||
117 | |||
118 | /** |
||
119 | * @return int |
||
120 | */ |
||
121 | 4 | public function projectId(): int |
|
125 | |||
126 | /** |
||
127 | * @return int |
||
128 | */ |
||
129 | 4 | public function accountId(): int |
|
133 | |||
134 | /** |
||
135 | * @return string |
||
136 | */ |
||
137 | 4 | public function accountName(): string |
|
141 | |||
142 | /** |
||
143 | * @return array |
||
144 | */ |
||
145 | public function builds(): array |
||
149 | |||
150 | /** |
||
151 | * @return string |
||
152 | */ |
||
153 | 4 | public function name(): string |
|
157 | |||
158 | /** |
||
159 | * @return string |
||
160 | */ |
||
161 | 4 | public function slug(): string |
|
165 | |||
166 | /** |
||
167 | * @return string |
||
168 | */ |
||
169 | 4 | public function repositoryType(): string |
|
173 | |||
174 | /** |
||
175 | * @return string |
||
176 | */ |
||
177 | 4 | public function repositoryScm(): string |
|
181 | |||
182 | /** |
||
183 | * @return string |
||
184 | */ |
||
185 | 4 | public function repositoryName(): string |
|
189 | |||
190 | /** |
||
191 | * @return string |
||
192 | */ |
||
193 | 4 | public function repositoryBranch(): string |
|
197 | |||
198 | /** |
||
199 | * @return bool |
||
200 | */ |
||
201 | 4 | public function isPrivate(): bool |
|
205 | |||
206 | /** |
||
207 | * @return bool |
||
208 | */ |
||
209 | 4 | public function skipBranchesWithoutAppveyorYml(): bool |
|
213 | |||
214 | /** |
||
215 | * @return bool |
||
216 | */ |
||
217 | 4 | public function enableSecureVariablesInPullRequests(): bool |
|
221 | |||
222 | /** |
||
223 | * @return bool |
||
224 | */ |
||
225 | 4 | public function enableDeploymentInPullRequests(): bool |
|
229 | |||
230 | /** |
||
231 | * @return bool |
||
232 | */ |
||
233 | 4 | public function rollingBuilds(): bool |
|
237 | |||
238 | /** |
||
239 | * @return bool |
||
240 | */ |
||
241 | 4 | public function alwaysBuildClosedPullRequests(): bool |
|
245 | |||
246 | /** |
||
247 | * @return array |
||
248 | */ |
||
249 | public function nuGetFeed(): array |
||
253 | |||
254 | /** |
||
255 | * @return array |
||
256 | */ |
||
257 | public function securityDescriptor(): array |
||
261 | |||
262 | /** |
||
263 | * @return DateTimeInterface |
||
264 | */ |
||
265 | public function created(): DateTimeInterface |
||
269 | |||
270 | /** |
||
271 | * @return DateTimeInterface |
||
272 | */ |
||
273 | public function updated(): DateTimeInterface |
||
277 | } |
||
278 |