luya\base\BaseBootstrap::bootstrap PHP Method

bootstrap() public method

Boostrap method will be invoken by Yii Application bootrapping proccess containing the Application ($app) Object to get/set data.
public bootstrap ( object $app )
$app object Luya Application `luya\base\Application`.
    public function bootstrap($app)
    {
        // add trace
        Yii::beginProfile('LUYA Boostrap process profiling', __METHOD__);
        $this->extractModules($app);
        $this->beforeRun($app);
        $this->registerComponents($app);
        $this->run($app);
        // end trace
        Yii::trace('End of the LUYA bootstraping process', __METHOD__);
        Yii::endProfile('LUYA Boostrap process profiling');
    }