16 lines
310 B
PHP
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;
|
|
|
|
}
|