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 214344 - class_alias hints doesnt work
Summary: class_alias hints doesnt work
Status: NEW
Alias: None
Product: php
Classification: Unclassified
Component: Editor (show other bugs)
Version: 7.1.2
Hardware: All All
: P3 normal (vote)
Assignee: Ondrej Brejla
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2012-06-18 07:08 UTC by marc.frost
Modified: 2012-11-12 14:41 UTC (History)
0 users

See Also:
Issue Type: ENHANCEMENT
Exception Reporter:


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description marc.frost 2012-06-18 07:08:39 UTC
for example

class car {
    public function open()
    {

    }
}

// class bus is same car
class_alias('car', 'bus');

// works
$car = new car();
$car->open();

// doesnt work
$bus = new bus();
$bus->
Comment 1 Ondrej Brejla 2012-06-18 07:37:20 UTC
Should be simple to fix it for 7.3.
Comment 2 Ondrej Brejla 2012-06-18 07:50:11 UTC
Maybe it will not be so simple...have to evaluate it more.
Comment 3 Ondrej Brejla 2012-11-12 14:41:51 UTC
Enhancement, since it was never implemented. Bunch of things has to be rewritten.