ParserConfigurator.php
406 Bytes
<?php
/**
* Created by PhpStorm.
* User: Cibermag
* Date: 04.09.2015
* Time: 18:17
*/
namespace backend\components\parsers;
class ParserConfigurator {
public static function getConfiguration ()
{
return [
'class' => 'backend\components\parsers\CustomCsvParser',
// 'file' => $this->fileObject,
'auto_detect_first_line' => true,
];
}
}