You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

36 lines
557 B

--TEST--
Bug #38942 (Double old-style-ctor inheritance)
--SKIPIF--
<?php extension_loaded('reflection') or die('skip'); ?>
--FILE--
<?php
class foo {
public function foo() {}
}
class bar extends foo {
}
ReflectionClass::export("bar");
?>
--EXPECTF--
Class [ <user> class bar extends foo ] {
@@ %sbug38942.php 6-7
- Constants [0] {
}
- Static properties [0] {
}
- Static methods [0] {
}
- Properties [0] {
}
- Methods [1] {
Method [ <user, inherits foo, ctor> public method foo ] {
@@ %sbug38942.php 3 - 3
}
}
}