Files
oficial/app/common/Define/Cartola/Banco.php
2025-10-04 11:40:52 -03:00

16 lines
310 B
PHP

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