testing
[namibia] / module / Utility / src / Utility / Import / ImportInterface.php
1 <?php
2 namespace Utility\Import;
3
4 interface ImportInterface
5 {
6         public function getRecord();
7         public function reset();
8
9         /**
10          * Sets the translation that needs to occur on the specified field
11          * @param int $fieldNr Field number starting from 1
12          * @param Nirph_DataImport_FieldInterface $class
13         */
14         public function setField($fieldNr, ImportInterface $class);
15 }