Files
faveo/vendor/maatwebsite/excel/tests/Files/classes/CsvTestImport.php
Manish Verma 76e85db070 update 1.0.8.0
Commits for version update
2016-10-17 12:02:27 +05:30

21 lines
343 B
PHP

<?php
use Maatwebsite\Excel\Files\ExcelFile;
class CsvTestImport extends ExcelFile {
/**
* Custom delimiter
* @var string
*/
protected $delimiter = ';';
/**
* Get file to import
* @return string
*/
public function getFile()
{
return __DIR__ . '/../files/test-custom.csv';
}
}