Files
oficial/app/common/Define/Cartola/Banco.php

16 lines
310 B
PHP
Raw Normal View History

2024-01-17 10:33:11 -03:00
<?php
namespace Incoviba\Common\Define\Cartola;
use Psr\Http\Message\UploadedFileInterface;
interface Banco
{
2024-03-18 17:54:27 -03:00
/**
* Process bank movements for database inserts
* @param UploadedFileInterface $file
* @return array
*/
2024-01-17 10:33:11 -03:00
public function process(UploadedFileInterface $file): array;
2024-01-17 10:33:11 -03:00
}