summaryrefslogtreecommitdiff
path: root/ext/reflection/tests/bug38942.phpt
blob: 817190c997041837ea942351836e63fbd686ddd6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
--TEST--
Bug #38942 (Double old-style-ctor inheritance)
--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
    }
  }
}