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

26 lines
565 B
PHP

<?php namespace Visiosoft\LocationModule\Village;
use Visiosoft\LocationModule\Village\Contract\VillageRepositoryInterface;
use Anomaly\Streams\Platform\Entry\EntryRepository;
class VillageRepository extends EntryRepository implements VillageRepositoryInterface
{
/**
* The entry model.
*
* @var VillageModel
*/
protected $model;
/**
* Create a new VillageRepository instance.
*
* @param VillageModel $model
*/
public function __construct(VillageModel $model)
{
$this->model = $model;
}
}