1 | <?php |
||
35 | class TaxClassLoader implements LoaderInterface |
||
36 | { |
||
37 | |||
38 | /** |
||
39 | * The available tax classes. |
||
40 | * |
||
41 | * @var array |
||
42 | */ |
||
43 | protected $taxClasses = array(); |
||
44 | |||
45 | /** |
||
46 | * Initializes the loader with the import processor instance. |
||
47 | * |
||
48 | * @param \TechDivision\Import\Services\ImportProcessorInterface $importProcessor The import processor instance |
||
49 | */ |
||
50 | public function __construct(ImportProcessorInterface $importProcessor) |
||
54 | |||
55 | /** |
||
56 | * Loads and returns data the custom validation data. |
||
57 | * |
||
58 | * @return \ArrayAccess The array with the data |
||
59 | */ |
||
60 | public function load() |
||
64 | } |
||
65 |