openclassify/addons/default/visiosoft/profile-module/src/EducationPart/EducationPartRepository.php
2020-12-14 18:49:07 +03:00

26 lines
617 B
PHP

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