| 1 | <?php namespace Anomaly\SettingsModule; |
||
| 17 | class SettingsModuleSeeder extends Seeder |
||
| 18 | { |
||
| 19 | |||
| 20 | use DispatchesJobs; |
||
| 21 | |||
| 22 | /** |
||
| 23 | * The settings repository. |
||
| 24 | * |
||
| 25 | * @var SettingRepositoryInterface |
||
| 26 | */ |
||
| 27 | protected $settings; |
||
| 28 | |||
| 29 | /** |
||
| 30 | * Create a new SettingsModuleSeeder instance. |
||
| 31 | * |
||
| 32 | * @param SettingRepositoryInterface $settings |
||
| 33 | */ |
||
| 34 | public function __construct(SettingRepositoryInterface $settings) |
||
| 40 | |||
| 41 | /** |
||
| 42 | * Run the command. |
||
| 43 | */ |
||
| 44 | public function run() |
||
| 68 | } |
||
| 69 |