Commit ff3506ae by Mark

fixed docs

parent 2410766f
...@@ -69,14 +69,11 @@ In this script, you can use the following two predefined variables: ...@@ -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: 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 # generate fixtures from user fixture template
php yii fixture/generate User php yii fixture/generate user
# also a short version of this command ("generate" action is default)
php yii fixture User
# to generate several fixture data files # 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 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: ...@@ -113,17 +110,13 @@ After you created custom provider, for example:
```php ```php
class Book extends \Faker\Provider\Base class Book extends \Faker\Provider\Base
{ {
public function title($nbWords = 5) public function title($nbWords = 5)
{ {
$sentence = $this->generator->sentence($nbWords); $sentence = $this->generator->sentence($nbWords);
return mb_substr($sentence, 0, mb_strlen($sentence) - 1); return mb_substr($sentence, 0, mb_strlen($sentence) - 1);
} }
public function ISBN()
{
return $this->generator->randomNumber(13);
}
} }
``` ```
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment