From ff3506aeabd007957b8c7705f7bd07bfc4cd2289 Mon Sep 17 00:00:00 2001 From: Mark Date: Mon, 1 Sep 2014 17:36:06 +0400 Subject: [PATCH] fixed docs --- extensions/faker/README.md | 15 ++++----------- 1 file changed, 4 insertions(+), 11 deletions(-) diff --git a/extensions/faker/README.md b/extensions/faker/README.md index b26dafa811..b78f564426 100644 --- a/extensions/faker/README.md +++ b/extensions/faker/README.md @@ -69,14 +69,11 @@ In this script, you can use the following two predefined variables: With such a template file, you can generate your fixtures using the commands like the following: ``` -# generate fixtures for the users table based on users fixture template -php yii fixture/generate User - -# also a short version of this command ("generate" action is default) -php yii fixture User +# generate fixtures from user fixture template +php yii fixture/generate user # to generate several fixture data files -php yii fixture User Profile Team +php yii fixture user profile team ``` In the code above `users` is template name. After running this command, a new file with the same template name @@ -113,17 +110,13 @@ After you created custom provider, for example: ```php class Book extends \Faker\Provider\Base { + public function title($nbWords = 5) { $sentence = $this->generator->sentence($nbWords); return mb_substr($sentence, 0, mb_strlen($sentence) - 1); } - public function ISBN() - { - return $this->generator->randomNumber(13); - } - } ```