1 | <?php |
||
17 | class Config { |
||
18 | /** |
||
19 | * @Type("string") |
||
20 | */ |
||
21 | private $name; |
||
22 | |||
23 | /** |
||
24 | * @Type("string") |
||
25 | */ |
||
26 | private $homepage; |
||
27 | |||
28 | /** |
||
29 | * @Type("App\Satis\Collections\RepositoryCollection<App\Satis\Model\Repository>") |
||
30 | */ |
||
31 | private $repositories; |
||
32 | |||
33 | /** |
||
34 | * @Type("App\Satis\Collections\PackageCollection<App\Satis\Model\Package>") |
||
35 | * @SerializedName("require") |
||
36 | */ |
||
37 | private $packages; |
||
38 | |||
39 | /** |
||
40 | * @Type("boolean") |
||
41 | * @SerializedName("require-all") |
||
42 | */ |
||
43 | private $requireAll; |
||
44 | |||
45 | /** |
||
46 | * @Type("boolean") |
||
47 | * @SerializedName("providers") |
||
48 | */ |
||
49 | private $providers; |
||
50 | |||
51 | /** |
||
52 | * @Type("boolean") |
||
53 | * @SerializedName("require-dependencies") |
||
54 | */ |
||
55 | private $requireDependencies; |
||
56 | |||
57 | /** |
||
58 | * @Type("boolean") |
||
59 | * @SerializedName("require-dev-dependencies") |
||
60 | */ |
||
61 | private $requireDevDependencies; |
||
62 | |||
63 | /** |
||
64 | * @var Archive |
||
65 | * @Type("App\Satis\Model\Archive") |
||
66 | */ |
||
67 | private $archive; |
||
68 | |||
69 | /** |
||
70 | * @Type("string") |
||
71 | * @SerializedName("twig-template") |
||
72 | */ |
||
73 | private $twigTemplate; |
||
74 | |||
75 | /** |
||
76 | * Constructor |
||
77 | */ |
||
78 | public function __construct() { |
||
85 | |||
86 | /** |
||
87 | * Get name |
||
88 | * |
||
89 | * @return string $name |
||
90 | */ |
||
91 | public function getName() { |
||
94 | |||
95 | /** |
||
96 | * Get homepage |
||
97 | * |
||
98 | * @return string $homepage |
||
99 | */ |
||
100 | public function getHomepage() { |
||
103 | |||
104 | /** |
||
105 | * @param string $homepage |
||
106 | * @return $this |
||
107 | */ |
||
108 | public function setHomepage($homepage) { |
||
113 | |||
114 | /** |
||
115 | * Get repositories |
||
116 | * |
||
117 | * @return RepositoryCollection<Repository> |
||
|
|||
118 | */ |
||
119 | public function getRepositories() { |
||
122 | |||
123 | /** |
||
124 | * Set repositories |
||
125 | * |
||
126 | * @param RepositoryCollection $repositories |
||
127 | * |
||
128 | * @return static |
||
129 | */ |
||
130 | public function setRepositories(RepositoryCollection $repositories) { |
||
135 | |||
136 | /** |
||
137 | * @param Archive $archive |
||
138 | */ |
||
139 | public function setArchive(Archive $archive = null) { |
||
142 | |||
143 | /** |
||
144 | * @return Archive |
||
145 | */ |
||
146 | public function getArchive() { |
||
149 | |||
150 | /** |
||
151 | * Get packages |
||
152 | * |
||
153 | * @return PackageCollection<Package> |
||
154 | */ |
||
155 | public function getPackages() { |
||
158 | |||
159 | /** |
||
160 | * @param PackageCollection $packages |
||
161 | * @return $this |
||
162 | */ |
||
163 | public function setPackages(PackageCollection $packages) { |
||
168 | |||
169 | /** |
||
170 | * @return boolean |
||
171 | */ |
||
172 | public function getRequireDevDependencies() { |
||
175 | |||
176 | /** |
||
177 | * @param boolean $requireDevDependencies |
||
178 | * @return Config |
||
179 | */ |
||
180 | public function setRequireDevDependencies($requireDevDependencies) { |
||
185 | |||
186 | /** |
||
187 | * @return boolean |
||
188 | */ |
||
189 | public function getRequireAll() { |
||
192 | |||
193 | /** |
||
194 | * @param boolean $requireAll |
||
195 | * @return $this |
||
196 | */ |
||
197 | public function setRequireAll($requireAll) { |
||
202 | |||
203 | /** |
||
204 | * @return boolean |
||
205 | */ |
||
206 | public function getProviders() { |
||
209 | |||
210 | /** |
||
211 | * @param boolean $providers |
||
212 | * @return $this |
||
213 | */ |
||
214 | public function setProviders($providers) { |
||
218 | |||
219 | /** |
||
220 | * @return string |
||
221 | */ |
||
222 | public function getTwigTemplate() |
||
226 | |||
227 | /** |
||
228 | * @param string $twigTemplate |
||
229 | * @return Config |
||
230 | */ |
||
231 | public function setTwigTemplate($twigTemplate) |
||
237 | } |
||
238 |
This check marks PHPDoc comments that could not be parsed by our parser. To see which comment annotations we can parse, please refer to our documentation on supported doc-types.