12 lines
189 B
PHP
12 lines
189 B
PHP
<?php
|
|
|
|
namespace App\Repositories\Economy;
|
|
|
|
use App\Repositories\ContractInterface;
|
|
|
|
interface EconomyContractInterface extends ContractInterface
|
|
{
|
|
|
|
public function execute($params);
|
|
|
|
} |