1 | <?php |
||
9 | abstract class Project implements ProjectInterface |
||
10 | { |
||
11 | use TransportAwareTrait; |
||
12 | |||
13 | protected $projectId; |
||
14 | |||
15 | protected $accountId; |
||
16 | |||
17 | protected $accountName; |
||
18 | |||
19 | protected $builds; |
||
20 | |||
21 | protected $name; |
||
22 | |||
23 | protected $slug; |
||
24 | |||
25 | protected $repositoryType; |
||
26 | |||
27 | protected $repositoryScm; |
||
28 | |||
29 | protected $repositoryName; |
||
30 | |||
31 | protected $repositoryBranch; |
||
32 | |||
33 | protected $isPrivate; |
||
34 | |||
35 | protected $skipBranchesWithoutAppveyorYml; |
||
36 | |||
37 | protected $enableSecureVariablesInPullRequests; |
||
38 | |||
39 | protected $enableDeploymentInPullRequests; |
||
40 | |||
41 | protected $rollingBuilds; |
||
42 | |||
43 | protected $alwaysBuildClosedPullRequests; |
||
44 | |||
45 | protected $nuGetFeed; |
||
46 | |||
47 | protected $securityDescriptor; |
||
48 | |||
49 | protected $created; |
||
50 | |||
51 | protected $updated; |
||
52 | |||
53 | public function projectId() : int |
||
57 | |||
58 | public function accountId() : int |
||
62 | |||
63 | public function accountName() : int |
||
67 | |||
68 | public function builds() : array |
||
72 | |||
73 | public function name() : string |
||
77 | |||
78 | public function slug() : string |
||
82 | |||
83 | public function repositoryType() : string |
||
87 | |||
88 | public function repositoryScm() : string |
||
92 | |||
93 | public function repositoryName() : string |
||
97 | |||
98 | public function repositoryBranch() : string |
||
102 | |||
103 | public function isPrivate() : bool |
||
107 | |||
108 | public function skipBranchesWithoutAppveyorYml() : bool |
||
112 | |||
113 | public function enableSecureVariablesInPullRequests() : bool |
||
117 | |||
118 | public function enableDeploymentInPullRequests() : bool |
||
122 | |||
123 | public function rollingBuilds() : bool |
||
127 | |||
128 | public function alwaysBuildClosedPullRequests() : bool |
||
132 | |||
133 | public function nuGetFeed() : array |
||
137 | |||
138 | public function securityDescriptor() : array |
||
142 | |||
143 | public function created() : DateTimeInterface |
||
147 | |||
148 | public function updated() : DateTimeInterface |
||
152 | |||
153 | public function refresh() |
||
157 | } |
||
158 |