Sign in
apache
/
netbeans
/
refs/heads/release121
/
.
/
php
/
php.editor
/
test
/
unit
/
data
/
testfiles
/
gotoConstrTest.php
blob: fa0fb7cf99bb7609382b4ff8b32b1d0155829acc [
file
] [
log
] [
blame
]
<?
php
class
MyClassConstr
{
public
function
__construct
()
{
//MyClassConstr
;
}
}
class
MyClassConstr2
extends
MyClassConstr
{}
//MyClassConstr2
$a
=
new
MyClassConstr
();
$b
=
new
MyClassConstr2
();
?>