FIX: Skip handling import errors

This commit is contained in:
Juan Pablo Vial
2025-10-06 12:08:08 -03:00
parent 7bee4e3bb4
commit 538833a5a4
6 changed files with 44 additions and 4 deletions

View File

@ -2,6 +2,7 @@
namespace Incoviba\Common\Define\Cartola;
use Psr\Http\Message\UploadedFileInterface;
use Incoviba\Exception\ServiceAction\Read;
interface Banco
{
@ -9,6 +10,7 @@ interface Banco
* Process bank movements for database inserts
* @param UploadedFileInterface $file
* @return array
* @throws Read
*/
public function process(UploadedFileInterface $file): array;