I just started development with Aptana Studio 3 and Yiiframework. Since Aptana Studio 3 already supports code completion for PHP, and Yiiframework fixes the use of comments and return types of PHPDoc, I assumed that the call
$app = Yii::app();
$app->...
content support should appear using class methods and fields CApplication. But I only see a blank popup containing "No offer." The same thing happens when directly accessing the application object using
Yii::app()->
When I declare a variable type $appexplicitly, the code hint appears correctly:
$app = Yii::app();
$app->
I did not include yiilite.php - this file is removed from my framework directory. Code assistance works, but not as expected.
? - Aptana Studio 3? ?
,