1 | <?php namespace Anomaly\DashboardModule\Seeder; |
||
13 | class DashboardSeeder extends Seeder |
||
14 | { |
||
15 | |||
16 | /** |
||
17 | * The dashboard repository. |
||
18 | * |
||
19 | * @var DashboardRepositoryInterface |
||
20 | */ |
||
21 | protected $dashboards; |
||
22 | |||
23 | /** |
||
24 | * Create a new DashboardSeeder instance. |
||
25 | * |
||
26 | * @param $dashboards |
||
27 | */ |
||
28 | public function __construct(DashboardRepositoryInterface $dashboards) |
||
32 | |||
33 | /** |
||
34 | * Run the seeder. |
||
35 | */ |
||
36 | public function run() |
||
51 | } |
||
52 |