| 1 | <?php |
||
| 22 | class Factory |
||
| 23 | { |
||
| 24 | private $webservers; |
||
| 25 | |||
| 26 | 25 | public function __construct() |
|
| 32 | |||
| 33 | /** |
||
| 34 | * Create a WebServerInterface Object. |
||
| 35 | * |
||
| 36 | * @param string $name a web server software name |
||
| 37 | * @param string $version a web server software version |
||
| 38 | * |
||
| 39 | * @return WebServer\WebServerInterface a WebServer Object |
||
| 40 | */ |
||
| 41 | 23 | public function createWebServer($name, $version = '') |
|
| 54 | |||
| 55 | 23 | public function getKnownWebServers() |
|
| 59 | } |
||
| 60 |