Documented CModule accessors with @property for better IDE autocomplete

This commit is contained in:
alexander.makarow
2011-07-27 14:02:57 +00:00
parent 040d7438fc
commit a65817318b
2 changed files with 1180 additions and 1171 deletions

View File

@@ -17,6 +17,14 @@
* @version $Id$
* @package system.base
* @since 1.0.4
*
* @property string $basePath Returns the root directory of the module.
* @property array $components Returns the application components.
* @property string $id Returns the module ID.
* @property string $modulePath Returns the directory that contains the application modules.
* @property array $modules Returns the configuration of the currently installed modules.
* @property CAttributeCollection $params Returns user-defined parameters.
* @property CModule $parentModule Returns the parent module.
*/
abstract class CModule extends CComponent
{