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