Commit d5fd2bfe by Alexander Makarov

Removed re-declaration of $preload from Application

parent 10553b6a
...@@ -85,10 +85,6 @@ abstract class Application extends Module ...@@ -85,10 +85,6 @@ abstract class Application extends Module
*/ */
public $sourceLanguage = 'en_US'; 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 * @var Controller the currently active controller instance
*/ */
public $controller; public $controller;
......
...@@ -41,7 +41,7 @@ abstract class Module extends Component ...@@ -41,7 +41,7 @@ abstract class Module extends Component
*/ */
public $params = []; 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 = []; public $preload = [];
/** /**
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment