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