Cartola BCI

This commit is contained in:
Juan Pablo Vial
2024-03-18 17:54:27 -03:00
parent 936fd2d1e1
commit dc2e2c7f71
8 changed files with 143 additions and 27 deletions

View File

@ -5,6 +5,11 @@ use Psr\Http\Message\UploadedFileInterface;
interface Banco
{
/**
* Process bank movements for database inserts
* @param UploadedFileInterface $file
* @return array
*/
public function process(UploadedFileInterface $file): array;
}