1 | <?php |
||
20 | class Configuration extends Config |
||
21 | { |
||
22 | /** |
||
23 | * @var TunnelInterface[]|Collection |
||
24 | */ |
||
25 | protected $tunnels; |
||
26 | |||
27 | /** |
||
28 | * @return TunnelInterface[]|Collection |
||
29 | */ |
||
30 | public function getTunnels() |
||
44 | |||
45 | /** |
||
46 | * Gets the current timezone. |
||
47 | * |
||
48 | * @return string |
||
49 | */ |
||
50 | public function getTimezone() |
||
54 | |||
55 | /** |
||
56 | * Gets the log file. |
||
57 | * |
||
58 | * @return string |
||
59 | */ |
||
60 | public function getLogFile() |
||
64 | |||
65 | /** |
||
66 | * Gets the log level. |
||
67 | * |
||
68 | * @return int |
||
69 | */ |
||
70 | public function getLogLevel() |
||
74 | |||
75 | public function getServerAddress() |
||
81 | |||
82 | public function getDefaultConfigFile() |
||
86 | } |