mirror of
https://github.com/openclassify/openclassify.git
synced 2026-02-13 00:36:04 -06: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);
|
|
}
|