| Conditions | 3 |
| Paths | 4 |
| Total Lines | 11 |
| Code Lines | 5 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 1 |
| 1 | <?php |
||
| 39 | public function handle() |
||
| 40 | { |
||
| 41 | foreach (Student::where('lead_type_id', 1)->get() as $student) { |
||
| 42 | $student->update(['lead_type_id' => null]); |
||
| 43 | } |
||
| 44 | |||
| 45 | foreach (Student::enrolled()->get() as $student) { |
||
| 46 | $student->update(['lead_type_id' => 1]); |
||
| 47 | } |
||
| 48 | |||
| 49 | return Command::SUCCESS; |
||
| 50 | } |
||
| 52 |