Removed re-declaration of $preload from Application

This commit is contained in:
Alexander Makarov
2013-10-23 20:11:04 +04:00
parent 10553b6afc
commit d5fd2bfe98
2 changed files with 1 additions and 5 deletions

View File

@ -84,10 +84,6 @@ abstract class Application extends Module
* @see language
*/
public $sourceLanguage = 'en_US';
/**
* @var array IDs of the components that need to be loaded when the application starts.
*/
public $preload = [];
/**
* @var Controller the currently active controller instance
*/

View File

@ -41,7 +41,7 @@ abstract class Module extends Component
*/
public $params = [];
/**
* @var array the IDs of the components or modules that should be preloaded when this module is created.
* @var array the IDs of the components or modules that should be preloaded right after initialization.
*/
public $preload = [];
/**