Yii2 framework backup
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

16 lines
686 B

Automation
==========
There are some tasks that are done automatically when working on Yii:
- Generation of the classmap `classes.php` located under the framework root directory.
Run `./build/build classmap` to generate it.
- Generation of the `@property` annotations in class files that describe properties introduced by getters and setters.
Run `./build/build php-doc/property` to update them.
- Fixing of code style and other minor issues in phpdoc comments.
Run `./build/build php-doc/fix` to run the command.
Check the changes before you commit them as there may be unwanted changes because the command is not perfect.
You may use `git add -p` to review the changes.