| Conditions | 1 |
| Paths | 1 |
| Total Lines | 12 |
| Code Lines | 8 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 1 |
| 1 | <?php |
||
| 25 | public function definition(): array |
||
| 26 | { |
||
| 27 | return [ |
||
| 28 | 'user_id' => $this->faker->randomNumber(3), |
||
| 29 | 'route' => $this->route(), |
||
| 30 | 'description' => $this->faker->text(), |
||
| 31 | |||
| 32 | 'model_table' => 'people', |
||
| 33 | 'model_key' => $this->faker->randomNumber(3), |
||
| 34 | 'model_changes' => $this->faker->randomElements($this->modelChanges()), |
||
| 35 | |||
| 36 | 'request_token' => $this->faker->uuid, |
||
| 37 | ]; |
||
| 53 |