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