* @since 2.0 */ interface Initable { /** * Initializes this component. * This method is invoked by [[\Yii::create]] after its creates the new * component instance and initializes the component properties. In other words, * at this stage, the component has been fully configured. */ public function init(); }