9 lines
128 B
PHP
9 lines
128 B
PHP
<?php
|
|
|
|
namespace App\Repositories\Api\Access\Country;
|
|
|
|
interface CountryInterface
|
|
{
|
|
public function getCountryCodeList();
|
|
}
|