I'm learning yii framework and have a quite simple question.
We know that Yii::app() returns a CApplication object. When I consult to Yii api documentation for static method app() I see something like:
public static function app()
{
return self::$_app;
}
But the thing is I couldn't find $_app inside yiiBase class. I'm wondering where does this guy $_app come from?
Thank in advanced!

Help












