funcion/refactor-general #45

Merged
atasistro merged 240 commits from funcion/refactor-general into master 2025-06-19 21:10:19 -03:00
Showing only changes of commit 688abf406d - Show all commits

View file

@ -17,7 +17,7 @@ class CsvHelper
* @throws Exception * @throws Exception
*/ */
public static function getRecords($filePath, $message): Iterator { public static function getRecords($filePath, $message): Iterator {
$csv = Reader::createFromPath(storage_path($filePath)); $csv = Reader::createFromPath($filePath);
try { try {
$csv->setDelimiter("|"); $csv->setDelimiter("|");
$csv->setEnclosure("'"); $csv->setEnclosure("'");