mirror of
https://github.com/openclassify/openclassify.git
synced 2026-02-13 08:46:06 -06:00
26 lines
554 B
PHP
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;
|
|
}
|
|
}
|