Conditions | 1 |
Paths | 1 |
Total Lines | 10 |
Code Lines | 8 |
Lines | 0 |
Ratio | 0 % |
Tests | 0 |
CRAP Score | 2 |
Changes | 0 |
1 | <?php |
||
11 | public function definition() |
||
12 | { |
||
13 | return [ |
||
14 | 'postcode' => $this->faker->postcode(), |
||
15 | 'postcode_compact' => $this->faker->postcode(), |
||
16 | 'description' => "{$this->faker->city()}, {$this->faker->country()}", |
||
17 | 'place' => $this->faker->city(), |
||
18 | 'country' => $this->faker->country(), |
||
19 | 'latitude' => $this->faker->latitude(), |
||
20 | 'longitude' => $this->faker->longitude(), |
||
21 | ]; |
||
24 |