1 | <?php |
||
14 | class ControlPanelConfig { |
||
15 | /** |
||
16 | * @Type("boolean") |
||
17 | */ |
||
18 | private $loaded; |
||
19 | |||
20 | /** |
||
21 | * @Type("App\Satis\Model\Config") |
||
22 | */ |
||
23 | private $config; |
||
24 | |||
25 | /** |
||
26 | * @Type("string") |
||
27 | */ |
||
28 | private $message; |
||
29 | |||
30 | /** |
||
31 | * @Type("boolean") |
||
32 | */ |
||
33 | private $locked; |
||
34 | |||
35 | /** |
||
36 | * @Type("array") |
||
37 | */ |
||
38 | private $repository_types; |
||
39 | |||
40 | /** |
||
41 | * @Type("array") |
||
42 | */ |
||
43 | private $node_server; |
||
44 | |||
45 | /** |
||
46 | * @param $loaded |
||
47 | * @return $this |
||
48 | */ |
||
49 | public function isLoaded($loaded) { |
||
54 | |||
55 | /** |
||
56 | * @param $locked |
||
57 | * @return $this |
||
58 | */ |
||
59 | public function isLocked($locked) { |
||
64 | |||
65 | /** |
||
66 | * @param \App\Satis\Model\Config $config |
||
67 | * @return $this |
||
68 | */ |
||
69 | public function setConfig(Config $config) { |
||
74 | |||
75 | /** |
||
76 | * @param $message |
||
77 | * @return $this |
||
78 | */ |
||
79 | public function setMessage($message) { |
||
84 | |||
85 | /** |
||
86 | * @param array $repositoryTypes |
||
87 | * |
||
88 | * @return $this |
||
89 | */ |
||
90 | public function setRepositoryTypes(array $repositoryTypes) { |
||
95 | |||
96 | /** |
||
97 | * @param mixed $node_server |
||
98 | * @return ControlPanelConfig |
||
99 | */ |
||
100 | public function setNodeServer($node_server) { |
||
105 | } |
||
106 |