* When [[\Yii::createComponent]] is being used to create a new component which implements * Initable, it will call the [[init]] method after setting the initial values of the * component properties.
* * @author Qiang Xue <qiang.xue@gmail.com> * @since 2.0 */interfaceInitable{/** * Initializes this component. * This method is invoked by [[\Yii::createComponent]] after its creates the new * component instance and initializes the component properties. In other words, * at this stage, the component has been fully configured. */publicfunctioninit();}