1 | <?php |
||
13 | class ScannerFactory{ |
||
14 | |||
15 | /** |
||
16 | * @var \OCA\Files_Antivirus\AppConfig |
||
17 | */ |
||
18 | protected $appConfig; |
||
19 | |||
20 | /** |
||
21 | * @var ILogger; |
||
22 | */ |
||
23 | protected $logger; |
||
24 | |||
25 | /** |
||
26 | * @var string |
||
27 | */ |
||
28 | protected $scannerClass; |
||
29 | |||
30 | 4 | public function __construct(AppConfig $appConfig, ILogger $logger){ |
|
51 | |||
52 | /** |
||
53 | * Produce a scanner instance |
||
54 | * @return \OCA\Files_Antivirus\Scanner |
||
55 | */ |
||
56 | 2 | public function getScanner(){ |
|
59 | } |
||
60 |