10 lines
178 B
PHP
10 lines
178 B
PHP
<?php
|
|
|
|
namespace App\Repositories\Users;
|
|
|
|
use App\Repositories\ContractInterface;
|
|
|
|
interface UserContractInterface extends ContractInterface
|
|
{
|
|
public function getOrdered();
|
|
} |