14 lines
227 B
PHP
14 lines
227 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace App\Repositories\DadosTe;
|
|
|
|
use App\Repositories\ContractInterface;
|
|
|
|
interface DadosTeContractInterface extends ContractInterface
|
|
{
|
|
|
|
public function getOperationSummary($params);
|
|
|
|
} |