| Conditions | 1 |
| Paths | 1 |
| Total Lines | 9 |
| Code Lines | 6 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 22 | public function definition() |
||
| 23 | { |
||
| 24 | return [ |
||
| 25 | 'name' => [ |
||
| 26 | 'en' => $this->faker->sentence($nbWords = 2, $variableNbWords = true), |
||
| 27 | 'it' => $this->faker->sentence($nbWords = 2, $variableNbWords = true), |
||
| 28 | ], |
||
| 29 | 'country_id' => $this->faker->numberBetween($min = 1, $max = 250), |
||
| 30 | 'timezone' => '+1:00', |
||
| 31 | ]; |
||
| 37 |