Conditions | 1 |
Paths | 1 |
Total Lines | 9 |
Code Lines | 5 |
Lines | 0 |
Ratio | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
9 | public function handle($command) |
||
10 | { |
||
11 | $command->info('Migrating Problems...'); |
||
12 | $this->table('problem')->orderBy('problem_id', 'asc')->chunk(100, function ($objects) { |
||
13 | $objects->map(function ($object) { |
||
14 | $this->transform($object); |
||
15 | }); |
||
16 | }); |
||
17 | $command->info('Migrating Problems Done'); |
||
18 | } |
||
42 |