Files
oficial/app/common/Define/Cartola/Banco.php
2025-10-06 12:08:08 -03:00

18 lines
373 B
PHP

<?php
namespace Incoviba\Common\Define\Cartola;
use Psr\Http\Message\UploadedFileInterface;
use Incoviba\Exception\ServiceAction\Read;
interface Banco
{
/**
* Process bank movements for database inserts
* @param UploadedFileInterface $file
* @return array
* @throws Read
*/
public function process(UploadedFileInterface $file): array;
}