964 B
		
	
	
	
	
	
	
	
			
		
		
	
	Automation
There are some tasks that are done automatically when working on Yii:
- 
Generation of the classmap
classes.phplocated under the framework root directory. Run./build/build classmapto generate it. - 
Generation of the
@propertyannotations in class files that describe properties introduced by getters and setters. Run./build/build php-doc/propertyto update them. - 
Fixing of code style and other minor issues in phpdoc comments. Run
./build/build php-doc/fixto fix them. Check the changes before you commit them as there may be unwanted changes because the command is not perfect. You may usegit add -pto review the changes. - 
Updating the Mime Type Magic file (
framework/helpers/mimeTypes.php) from the Apache HTTPd repository. Run./build/build mime-typeto update the file. 
All of the above commands are included in the release process. They may be run between releases but it is not necessary.