| Total Complexity | 1 |
| Total Lines | 14 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 5 | class CBSeeder extends Seeder |
||
| 6 | { |
||
| 7 | /** |
||
| 8 | * Run the database seeds. |
||
| 9 | * |
||
| 10 | * @return void |
||
| 11 | */ |
||
| 12 | public function run() |
||
| 13 | { |
||
| 14 | $this->command->info('Please wait updating the data...'); |
||
| 15 | $this->call('PrivilegeSeeder'); |
||
| 16 | $this->call('SettingsSeeder'); |
||
| 17 | $this->call('EmailTemplates'); |
||
| 18 | $this->command->info('Updating the data completed !'); |
||
| 19 | } |
||
| 44 | } |