This Bugzilla instance is a read-only archive of historic NetBeans bug reports. To report a bug in NetBeans please follow the project's instructions for reporting issues.

Bug 197946 - List of a class' attributes not working properly
Summary: List of a class' attributes not working properly
Status: RESOLVED FIXED
Alias: None
Product: php
Classification: Unclassified
Component: Editor (show other bugs)
Version: 7.0
Hardware: PC Linux
: P3 normal (vote)
Assignee: Petr Pisl
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2011-04-21 11:37 UTC by Petr Pisl
Modified: 2011-04-22 05:06 UTC (History)
0 users

See Also:
Issue Type: DEFECT
Exception Reporter:


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description Petr Pisl 2011-04-21 11:37:03 UTC
I have this in my example class Cliente:

<?php

/**
 * This is the model class for table "cliente".
 *
 * The followings are the available columns in table 'cliente':
 * @property string $id_cliente
 * ....
 * ....
 * @property integer $id_profissao
 * @property string $renda_mensal
 *
 * The followings are the available model relations:
 * ....
 * ....
 */
class Cliente extends CActiveRecord
{
...

When I create an instance of it ($myclass = new Cliente) and I try $myclass->, in this point, netbeans open a list of attributes and it works like a charm. BUT, if I select the last attribute (in this case, renda_mensal), instead of get this:

1: $myclass->renda_mensal

I got this:

1: $myclass->renda_mensal
2:
3: The
Comment 1 Petr Pisl 2011-04-21 12:33:08 UTC
Fixed in web-main. Will be available in daily build or in build #3147 at http://bertram.netbeans.org/hudson/job/PHP-build/
Comment 2 Quality Engineering 2011-04-22 05:06:18 UTC
Integrated into 'main-golden', will be available in build *201104220000* on http://bits.netbeans.org/dev/nightly/ (upload may still be in progress)
Changeset: http://hg.netbeans.org/main/rev/56c787e640f0
User: Petr Pisl <ppisl@netbeans.org>
Log: #197946 - List of a class' attributes not working properly