| Conditions | 1 |
| Paths | 1 |
| Total Lines | 11 |
| Code Lines | 9 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 22 | public function definition() |
||
| 23 | { |
||
| 24 | return [ |
||
| 25 | 'name' => $this->faker->sentence($nbWords = 2, $variableNbWords = true), |
||
| 26 | 'description' => $this->faker->paragraph($nbSentences = 2, $variableNbSentences = true), |
||
| 27 | 'website' => $this->faker->url, |
||
| 28 | 'address' => $this->faker->streetAddress, |
||
| 29 | 'city' => $this->faker->city, |
||
| 30 | 'state_province' => $this->faker->state, |
||
| 31 | 'country_id' => $this->faker->numberBetween($min = 1, $max = 250), |
||
| 32 | 'zip_code' => $this->faker->postcode, |
||
| 33 | //'lng' => $this->faker->longitude($min = -180, $max = 180), |
||
| 38 |