openclassify/addons/default/visiosoft/profile-module/src/Adress/AdressRepository.php
2019-06-22 13:59:18 +03:00

26 lines
554 B
PHP

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