We could not synchronize checks via GitHub's checks API since Scrutinizer's GitHub App is not installed for this repository.
| Conditions | 1 |
| Paths | 1 |
| Total Lines | 26 |
| Code Lines | 19 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 1 |
| 1 | <?php |
||
| 55 | private function createReorderItems() |
||
| 56 | { |
||
| 57 | DB::table('reorders')->insert([ |
||
| 58 | [ |
||
| 59 | 'id' => 1, |
||
| 60 | 'name' => 'Item 1', |
||
| 61 | 'parent_id' => null, |
||
| 62 | 'lft' => null, |
||
| 63 | 'rgt' => null, |
||
| 64 | 'depth' => null, |
||
| 65 | ], |
||
| 66 | [ |
||
| 67 | 'id' => 2, |
||
| 68 | 'name' => 'Item 2', |
||
| 69 | 'parent_id' => null, |
||
| 70 | 'lft' => null, |
||
| 71 | 'rgt' => null, |
||
| 72 | 'depth' => null, |
||
| 73 | ], |
||
| 74 | [ |
||
| 75 | 'id' => 3, |
||
| 76 | 'name' => 'Item 3', |
||
| 77 | 'parent_id' => null, |
||
| 78 | 'lft' => null, |
||
| 79 | 'rgt' => null, |
||
| 80 | 'depth' => null, |
||
| 81 | ], |
||
| 85 |