12 lines
201 B
PHP
12 lines
201 B
PHP
<?php
|
|
|
|
namespace App\Repositories\DadosTe;
|
|
|
|
use App\Repositories\ContractInterface;
|
|
|
|
interface DadosTeContractInterface extends ContractInterface
|
|
{
|
|
|
|
public function getOperationSummary($params);
|
|
|
|
} |