1 | <?php |
||
17 | final class ConnectionFactory |
||
18 | { |
||
19 | private $driver; |
||
20 | private $dbName; |
||
21 | private $host; |
||
22 | private $port; |
||
23 | private $username; |
||
24 | private $password; |
||
25 | |||
26 | public function __construct($driver, $dbName, $host, $port, $username, $password) |
||
35 | |||
36 | public function createConnection() |
||
42 | } |
||
43 |