mirror of
https://github.com/openclassify/openclassify.git
synced 2026-01-11 18:01:10 -06:00
15 lines
421 B
PHP
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;
|
|
}
|
|
}
|