1 | <?php |
||
14 | class Importer |
||
15 | { |
||
16 | /** |
||
17 | * @var GeoCacheService |
||
|
|||
18 | */ |
||
19 | private $geoCacheService; |
||
20 | |||
21 | /** |
||
22 | * @var FieldNoteService |
||
23 | */ |
||
24 | private $fieldNoteService; |
||
25 | |||
26 | /** |
||
27 | * @param GeoCacheService $geoCacheService |
||
28 | * @param FieldNoteService $fieldNoteService |
||
29 | */ |
||
30 | public function __construct( |
||
37 | |||
38 | /** |
||
39 | * Import by given context. |
||
40 | * |
||
41 | * @param ImportContext $context |
||
42 | * |
||
43 | * @return void |
||
44 | */ |
||
45 | public function import(ImportContext $context) |
||
75 | } |
||
76 |