Commit 4c45b429 by Qiang Xue

doc fix.

parent f3315475
...@@ -69,7 +69,7 @@ use yii\helpers\Console; ...@@ -69,7 +69,7 @@ use yii\helpers\Console;
* ~~~ * ~~~
* *
* In the code above "users" is template name, after this command run, new file named same as template * In the code above "users" is template name, after this command run, new file named same as template
* will be created under the $fixturesPath folder. * will be created under the `$fixturePath` folder.
* You can generate fixtures for all templates by specifying keyword "all" * You can generate fixtures for all templates by specifying keyword "all"
* *
* ~~~ * ~~~
...@@ -90,13 +90,13 @@ use yii\helpers\Console; ...@@ -90,13 +90,13 @@ use yii\helpers\Console;
* *
* ~~~ * ~~~
* //generate fixtures in russian language * //generate fixtures in russian language
* yii fixture/generate users 5 --language='ru_RU' * yii fixture/generate users 5 --language=ru_RU
* *
* //read templates from the other path * //read templates from the other path
* yii fixture/generate all --templatePath='@app/path/to/my/custom/templates' * yii fixture/generate all --templatePath=@app/path/to/my/custom/templates
* *
* //generate fixtures into other folders, but be sure that this folders exists or you will get notice about that. * //generate fixtures into other folders, but be sure that this folders exists or you will get notice about that.
* yii fixture/generate all --fixturePath='@tests/unit/fixtures/subfolder1/subfolder2/subfolder3' * yii fixture/generate all --fixturePath=@tests/unit/fixtures/subfolder1/subfolder2/subfolder3
* ~~~ * ~~~
* *
* You also can create your own data providers for custom tables fields, see Faker library guide for more info (https://github.com/fzaninotto/Faker); * You also can create your own data providers for custom tables fields, see Faker library guide for more info (https://github.com/fzaninotto/Faker);
......
...@@ -123,7 +123,7 @@ php yii fixture/generate users 5 --language='ru_RU' ...@@ -123,7 +123,7 @@ php yii fixture/generate users 5 --language='ru_RU'
php yii fixture/generate all --templatePath='@app/path/to/my/custom/templates' php yii fixture/generate all --templatePath='@app/path/to/my/custom/templates'
//generate fixtures into other folders, but be sure that this folders exists or you will get notice about that. //generate fixtures into other folders, but be sure that this folders exists or you will get notice about that.
php yii fixture/generate all --fixturesPath='@tests/unit/fixtures/subfolder1/subfolder2/subfolder3' php yii fixture/generate all --fixturePath='@tests/unit/fixtures/subfolder1/subfolder2/subfolder3'
``` ```
You also can create your own data providers for custom tables fields, see [Faker]((https://github.com/fzaninotto/Faker)) library guide for more info; You also can create your own data providers for custom tables fields, see [Faker]((https://github.com/fzaninotto/Faker)) library guide for more info;
......
...@@ -39,10 +39,10 @@ use yii\console\Exception; ...@@ -39,10 +39,10 @@ use yii\console\Exception;
* yii fixture users * yii fixture users
* *
* #load fixtures under $fixturePath to the "users" table to the different connection * #load fixtures under $fixturePath to the "users" table to the different connection
* yii fixture/apply users --db='someOtherDbConneciton' * yii fixture/apply users --db=someOtherDbConneciton
* *
* #load fixtures under different $fixturePath to the "users" table. * #load fixtures under different $fixturePath to the "users" table.
* yii fixture/apply users --fixturePath='@app/some/other/path/to/fixtures' * yii fixture/apply users --fixturePath=@app/some/other/path/to/fixtures
* ~~~ * ~~~
* *
* @author Mark Jebri <mark.github@yandex.ru> * @author Mark Jebri <mark.github@yandex.ru>
......
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