mirror of
https://github.com/openclassify/openclassify.git
synced 2026-01-11 18:01:10 -06:00
26 lines
548 B
PHP
26 lines
548 B
PHP
<?php namespace Visiosoft\AdvsModule\Option;
|
|
|
|
use Visiosoft\AdvsModule\Option\Contract\OptionRepositoryInterface;
|
|
use Anomaly\Streams\Platform\Entry\EntryRepository;
|
|
|
|
class OptionRepository extends EntryRepository implements OptionRepositoryInterface
|
|
{
|
|
|
|
/**
|
|
* The entry model.
|
|
*
|
|
* @var OptionModel
|
|
*/
|
|
protected $model;
|
|
|
|
/**
|
|
* Create a new OptionRepository instance.
|
|
*
|
|
* @param OptionModel $model
|
|
*/
|
|
public function __construct(OptionModel $model)
|
|
{
|
|
$this->model = $model;
|
|
}
|
|
}
|