Skip to content

Commit

Permalink
truncated text on php 7.1/7.2
Browse files Browse the repository at this point in the history
  • Loading branch information
nabeelio committed Dec 13, 2017
1 parent e51eb70 commit 1ad60f5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions database/factories/PirepFactory.php
Expand Up @@ -38,8 +38,8 @@
return factory(App\Models\Airport::class)->create()->id;
},
'flight_time' => $faker->randomFloat(2),
'route' => $faker->text(),
'notes' => $faker->text(),
'route' => $faker->text(200),
'notes' => $faker->text(200),
'source' => $faker->randomElement([0, 1]), # MANUAL/ACARS
'status' => config('enums.pirep_status.PENDING'), //$faker->randomElement([-1, 0, 1]), # REJECTED/PENDING/ACCEPTED
'raw_data' => $raw_data ?: $raw_data = json_encode(['key' => 'value']),
Expand Down

0 comments on commit 1ad60f5

Please sign in to comment.