1 | <?php namespace Anomaly\DashboardModule\Widget; |
||
6 | class WidgetRepository extends EntryRepository implements WidgetRepositoryInterface |
||
7 | { |
||
8 | |||
9 | /** |
||
10 | * The entry model. |
||
11 | * |
||
12 | * @var WidgetModel |
||
13 | */ |
||
14 | protected $model; |
||
15 | |||
16 | /** |
||
17 | * Create a new WidgetRepository instance. |
||
18 | * |
||
19 | * @param WidgetModel $model |
||
20 | */ |
||
21 | public function __construct(WidgetModel $model) |
||
25 | } |
||
26 |