1 | <?php |
||
14 | class ScannerFactory { |
||
15 | protected $appConfig; |
||
16 | private $serverContainer; |
||
17 | |||
18 | 1 | public function __construct(AppConfig $appConfig, IServerContainer $serverContainer) { |
|
22 | |||
23 | /** |
||
24 | * Produce a scanner instance |
||
25 | * |
||
26 | * @return IScanner |
||
27 | */ |
||
28 | 1 | public function getScanner() { |
|
47 | } |
||
48 |