1 | <?php |
||
19 | class EntityFactory implements EntityFactoryInterface |
||
20 | { |
||
21 | /** @var HelperFactory */ |
||
22 | private $helperFactory; |
||
23 | |||
24 | /** |
||
25 | * @param HelperFactory $helperFactory |
||
26 | */ |
||
27 | 31 | public function __construct(HelperFactory $helperFactory) |
|
31 | |||
32 | /** |
||
33 | * @param resource $filePointer Pointer to the CSV file to read |
||
34 | * @param OptionsManagerInterface $optionsManager |
||
35 | * @param GlobalFunctionsHelper $globalFunctionsHelper |
||
36 | * @return SheetIterator |
||
37 | */ |
||
38 | 26 | public function createSheetIterator($filePointer, $optionsManager, $globalFunctionsHelper) |
|
42 | |||
43 | /** |
||
44 | * @param resource $filePointer Pointer to the CSV file to read |
||
45 | * @param OptionsManagerInterface $optionsManager |
||
46 | * @param GlobalFunctionsHelper $globalFunctionsHelper |
||
47 | * @return Sheet |
||
48 | */ |
||
49 | 26 | public function createSheet($filePointer, $optionsManager, $globalFunctionsHelper) |
|
53 | |||
54 | /** |
||
55 | * @param resource $filePointer Pointer to the CSV file to read |
||
56 | * @param OptionsManagerInterface $optionsManager |
||
57 | * @param GlobalFunctionsHelper $globalFunctionsHelper |
||
58 | * @return RowIterator |
||
59 | */ |
||
60 | 26 | public function createRowIterator($filePointer, $optionsManager, $globalFunctionsHelper) |
|
65 | } |
||
66 |