diff --git a/extensions/yii/faker/FixtureController.php b/extensions/yii/faker/FixtureController.php index 03c9451..d36083d 100644 --- a/extensions/yii/faker/FixtureController.php +++ b/extensions/yii/faker/FixtureController.php @@ -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 - * 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" * * ~~~ @@ -90,13 +90,13 @@ use yii\helpers\Console; * * ~~~ * //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 - * 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. - * 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); diff --git a/extensions/yii/faker/README.md b/extensions/yii/faker/README.md index 0199ec0..f2ccc71 100644 --- a/extensions/yii/faker/README.md +++ b/extensions/yii/faker/README.md @@ -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' //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; @@ -157,4 +157,4 @@ You can use it by adding it to the ```$providers``` property of the current comm ], ], ] -``` \ No newline at end of file +``` diff --git a/framework/yii/console/controllers/FixtureController.php b/framework/yii/console/controllers/FixtureController.php index e62677c..174a132 100644 --- a/framework/yii/console/controllers/FixtureController.php +++ b/framework/yii/console/controllers/FixtureController.php @@ -39,10 +39,10 @@ use yii\console\Exception; * yii fixture users * * #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. - * 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