mirror of
https://github.com/openclassify/openclassify.git
synced 2026-04-17 12:42:12 -05:00
13 lines
396 B
PHP
13 lines
396 B
PHP
<?php namespace Visiosoft\LocationModule\City\Contract;
|
|
|
|
use Anomaly\Streams\Platform\Entry\Contract\EntryRepositoryInterface;
|
|
|
|
interface CityRepositoryInterface extends EntryRepositoryInterface
|
|
{
|
|
public function getByEntryIDsAndOrderByTransCol($entryIDs, $orderBy, $direction = 'asc');
|
|
|
|
public function getCitiesByCountryId($country_id);
|
|
|
|
public function findAllByIDs($citiesIDs);
|
|
}
|