mirror of
https://github.com/openclassify/openclassify.git
synced 2026-04-16 04:02:13 -05:00
9 lines
212 B
PHP
9 lines
212 B
PHP
<?php namespace Visiosoft\LocationModule\Country\Contract;
|
|
|
|
use Anomaly\Streams\Platform\Entry\Contract\EntryInterface;
|
|
|
|
interface CountryInterface extends EntryInterface
|
|
{
|
|
public function getCountry($id);
|
|
}
|