Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

DocComment to AutoComplete netBeans IDE #2758

Closed
yiidevelop opened this issue Aug 13, 2013 · 4 comments
Closed

DocComment to AutoComplete netBeans IDE #2758

yiidevelop opened this issue Aug 13, 2013 · 4 comments

Comments

@yiidevelop
Copy link

class User extends CActiveRecord
{
/**
* The followings are the available columns in table 'tbl_user':
* @var integer $id
* @var string $username
* @var string $password
* @var string $email
* @var string $profile
*/
..............

netbeans autocomplete not work

netbeans only support

/**
* The followings are the available columns in table 'tbl_user':
* @property integer $id
* @property string $username
* @property string $password
* @property string $email
* @property string $profile
*/
class User extends CActiveRecord
{
.................

and

/* @var $variables type */ 

and not support

/**
* @var type $variable
*/

Can you help me about config netbeans and use DocComment on Project
Thank for your help

@klimov-paul
Copy link
Member

In general: your IDE is your problem.

If you want doc comments in your active record model to be formatted in different way you can always create your own Gii template. Same for CRUD, module and so on.

And one more thing: @yiidevelop, please use Official Yii forum to ask a questions - GitHub is a bug tracking system.

@samdark
Copy link
Member

samdark commented Aug 13, 2013

Actually I think we can fix it.

@samdark samdark reopened this Aug 13, 2013
@ghost ghost assigned samdark Aug 13, 2013
@yiidevelop
Copy link
Author

Yes, so we will delete this issue.

@samdark
Copy link
Member

samdark commented Dec 31, 2013

Done. Thanks for reporting.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

3 participants