openclassify/addons/default/visiosoft/location-module/src/Country/CountryModel.php
2019-06-22 13:59:18 +03:00

13 lines
408 B
PHP

<?php namespace Visiosoft\LocationModule\Country;
use Visiosoft\LocationModule\Country\Contract\CountryInterface;
use Anomaly\Streams\Platform\Model\Location\LocationCountriesEntryModel;
class CountryModel extends LocationCountriesEntryModel implements CountryInterface
{
public function getCountry($id)
{
return CountryModel::query()->where('location_countries.id', $id)->first();
}
}