| Conditions | 2 |
| Paths | 2 |
| Total Lines | 8 |
| Code Lines | 6 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 16 | public function run() : void |
||
| 17 | { |
||
| 18 | foreach (trans('postman::statuses') as $status) { |
||
| 19 | Status::firstOrCreate([ |
||
| 20 | 'name' => $status['name'], |
||
| 21 | 'description' => $status['description'], |
||
| 22 | 'color_rgb' => $status['color_rgb'], |
||
| 23 | Status::COLUMN_UNIQUE_NAME => $status['unique_name'], |
||
| 24 | ]); |
||
| 28 |