diff --git a/src/Zizaco/FactoryMuff/Kind/Text.php b/src/Zizaco/FactoryMuff/Kind/Text.php index 3c8aebb..a9754bb 100644 --- a/src/Zizaco/FactoryMuff/Kind/Text.php +++ b/src/Zizaco/FactoryMuff/Kind/Text.php @@ -12,7 +12,7 @@ public function generate() // Generate a large amount of text. The reason for this is that // faker uses a maximum length, and not an exact length. We then substr this - $text = $this->faker->text($length * 3); + $text = $this->faker->text($length * 5); return substr($text, 0, $length); }