1
0
mirror of https://github.com/fzaninotto/Faker.git synced 2025-03-24 09:19:50 +01:00

Merge pull request #264 from fzaninotto/french_realText

Add French realText provider
This commit is contained in:
Francois Zaninotto 2014-03-03 22:08:19 +01:00
commit 64adc8d23a
2 changed files with 15540 additions and 1 deletions

View File

@ -99,7 +99,7 @@ abstract class Text extends \Faker\Provider\Base
protected function getExplodedText()
{
if ($this->explodedText === null) {
$this->explodedText = explode(' ', preg_replace('/\s+/', ' ', static::$baseText));
$this->explodedText = explode(' ', preg_replace('/\s+/u', ' ', static::$baseText));
}
return $this->explodedText;

File diff suppressed because it is too large Load Diff