summaryrefslogtreecommitdiff
path: root/ext/reflection/tests/bug26695.phpt
blob: e2eab7e1479550da6ff8ad2ae15140b5ef0000f6 (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
--TEST--
Bug #26695 (Reflection API does not recognize mixed-case class hints)
--FILE--
<?php

class Foo {
}

class Bar {
  function demo(foo $f) {
  }
}

$class = new Reflection_Class('bar');
$methods = $class->getMethods();
$params = $methods[0]->getParameters();

$class = $params[0]->getClass();

var_dump($class->getName());
?>
===DONE===
--EXPECT--
string(3) "Foo"
===DONE===