| Conditions | 3 |
| Paths | 4 |
| Total Lines | 11 |
| Code Lines | 5 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 19 | public function handle() |
||
| 20 | { |
||
| 21 | foreach (Student::where('lead_type_id', 1)->get() as $student) { |
||
| 22 | $student->update(['lead_type_id' => null]); |
||
| 23 | } |
||
| 24 | |||
| 25 | foreach (Student::enrolled()->get() as $student) { |
||
| 26 | $student->update(['lead_type_id' => 1]); |
||
| 27 | } |
||
| 28 | |||
| 29 | return Command::SUCCESS; |
||
| 30 | } |
||
| 32 |