1 | <?php |
||
11 | class ConnectionConfig |
||
12 | { |
||
13 | protected $host; |
||
14 | protected $port; |
||
15 | protected $user; |
||
16 | protected $password; |
||
17 | protected $vHost; |
||
18 | |||
19 | public function __construct($host, $port, $user, $password, $vHost='/') |
||
27 | |||
28 | public function getHost() |
||
32 | |||
33 | public function getPort() |
||
37 | |||
38 | public function getUser() |
||
42 | |||
43 | public function getPassword() |
||
47 | |||
48 | public function getVHost() |
||
52 | } |