VarDumper everything (top class)?

For learning purposes, I am trying to stick a command like var_dump into /var/www/mysite/frontend/views/site/index.php that shows me what data (and methods) my app can conceivably access at this point. how would I do this?

pointer appreciated. /iaw

One Solution:


<?php

  var_dump(Yii::$app);

?>