| Conditions | 1 |
| Paths | 1 |
| Total Lines | 13 |
| Code Lines | 9 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 41 | public function reset() |
||
| 42 | { |
||
| 43 | Schema::disableForeignKeyConstraints(); |
||
| 44 | |||
| 45 | Currency::truncate(); |
||
| 46 | Color::truncate(); |
||
| 47 | Village::truncate(); |
||
| 48 | District::truncate(); |
||
| 49 | City::truncate(); |
||
| 50 | Province::truncate(); |
||
| 51 | Country::truncate(); |
||
| 52 | |||
| 53 | Schema::disableForeignKeyConstraints(); |
||
| 54 | } |
||
| 56 |