From b502129bd10799c15eae4e991bdb44b6f6500d8b Mon Sep 17 00:00:00 2001 From: Francois Zaninotto Date: Tue, 1 Jan 2013 15:48:30 +0100 Subject: [PATCH] Fix problem with French locale and documentor Closes #97 --- src/Faker/Provider/fr_FR/Company.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Faker/Provider/fr_FR/Company.php b/src/Faker/Provider/fr_FR/Company.php index 0c9ca181..089c50e3 100644 --- a/src/Faker/Provider/fr_FR/Company.php +++ b/src/Faker/Provider/fr_FR/Company.php @@ -92,7 +92,7 @@ class Company extends \Faker\Provider\Company $format = static::randomElement(static::$catchPhraseFormats); $catchPhrase = ucfirst($this->generator->parse($format)); - if (static::isCatchPhraseValid($catchPhrase)) { + if ($this->isCatchPhraseValid($catchPhrase)) { break; } } while (true); @@ -204,7 +204,7 @@ class Company extends \Faker\Provider\Company * * @return boolean (true if valid, false otherwise) */ - public static function isCatchPhraseValid($catchPhrase) + protected static function isCatchPhraseValid($catchPhrase) { foreach (static::$wordsWhichShouldNotAppearTwice as $word) { // Fastest way to check if a piece of word does not appear twice.