1 | <?php declare(strict_types=1); |
||
11 | abstract class Repository extends AbstractResource implements RepositoryInterface |
||
12 | { |
||
13 | /** |
||
14 | * @var string |
||
15 | */ |
||
16 | protected $type; |
||
17 | |||
18 | /** |
||
19 | * @var bool |
||
20 | */ |
||
21 | protected $private; |
||
22 | |||
23 | /** |
||
24 | * @var string |
||
25 | */ |
||
26 | protected $default_branch; |
||
27 | |||
28 | /** |
||
29 | * @var array |
||
30 | */ |
||
31 | protected $applications; |
||
32 | |||
33 | /** |
||
34 | * @var array |
||
35 | */ |
||
36 | protected $development_report_settings; |
||
37 | |||
38 | /** |
||
39 | * @var array |
||
40 | */ |
||
41 | protected $branch_settings; |
||
42 | |||
43 | /** |
||
44 | * @var string |
||
45 | */ |
||
46 | protected $login; |
||
47 | |||
48 | /** |
||
49 | * @var string |
||
50 | */ |
||
51 | protected $name; |
||
52 | |||
53 | /** |
||
54 | * @return string |
||
55 | */ |
||
56 | public function type(): string |
||
60 | |||
61 | /** |
||
62 | * @return bool |
||
63 | */ |
||
64 | public function private(): bool |
||
68 | |||
69 | /** |
||
70 | * @return string |
||
71 | */ |
||
72 | public function defaultBranch(): string |
||
76 | |||
77 | /** |
||
78 | * @return array |
||
79 | */ |
||
80 | public function applications(): array |
||
84 | |||
85 | /** |
||
86 | * @return array |
||
87 | */ |
||
88 | public function developmentReportSettings(): array |
||
92 | |||
93 | /** |
||
94 | * @return array |
||
95 | */ |
||
96 | public function branchSettings(): array |
||
100 | |||
101 | /** |
||
102 | * @return string |
||
103 | */ |
||
104 | public function login(): string |
||
108 | |||
109 | /** |
||
110 | * @return string |
||
111 | */ |
||
112 | public function name(): string |
||
116 | } |
||
117 |