1 | <?php |
||
21 | class WebServerFactory |
||
22 | { |
||
23 | private $webservers; |
||
24 | |||
25 | public function __construct() |
||
31 | |||
32 | 6 | /** |
|
33 | 1 | * Create a WebServerInterface Object. |
|
34 | 1 | * |
|
35 | 5 | * @param string $name a web server software name |
|
36 | 1 | * @param string $version a web server software version |
|
37 | 1 | * |
|
38 | 4 | * @return WebServerInterface a WebServer Object |
|
39 | 4 | */ |
|
40 | 4 | public function create($name, $version) |
|
48 | } |
||
49 |