openclassify/addons/default/visiosoft/profile-module/src/EducationPart/EducationPartRepository.php
2021-03-28 14:30:31 +03:00

15 lines
421 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
{
protected $model;
public function __construct(EducationPartModel $model)
{
$this->model = $model;
}
}