mirror of
https://github.com/openclassify/openclassify.git
synced 2026-02-12 08:16:06 -06:00
9 lines
202 B
PHP
9 lines
202 B
PHP
<?php namespace Visiosoft\LocationModule\City\Contract;
|
|
|
|
use Anomaly\Streams\Platform\Entry\Contract\EntryInterface;
|
|
|
|
interface CityInterface extends EntryInterface
|
|
{
|
|
public function getCities();
|
|
}
|