mirror of
https://github.com/openclassify/openclassify.git
synced 2026-02-12 08:16:06 -06:00
26 lines
574 B
PHP
26 lines
574 B
PHP
<?php namespace Visiosoft\LocationModule\District;
|
|
|
|
use Visiosoft\LocationModule\District\Contract\DistrictRepositoryInterface;
|
|
use Anomaly\Streams\Platform\Entry\EntryRepository;
|
|
|
|
class DistrictRepository extends EntryRepository implements DistrictRepositoryInterface
|
|
{
|
|
|
|
/**
|
|
* The entry model.
|
|
*
|
|
* @var DistrictModel
|
|
*/
|
|
protected $model;
|
|
|
|
/**
|
|
* Create a new DistrictRepository instance.
|
|
*
|
|
* @param DistrictModel $model
|
|
*/
|
|
public function __construct(DistrictModel $model)
|
|
{
|
|
$this->model = $model;
|
|
}
|
|
}
|