summaryrefslogtreecommitdiff
path: root/ext/reflection/tests/bug30209.phpt
diff options
context:
space:
mode:
Diffstat (limited to 'ext/reflection/tests/bug30209.phpt')
-rwxr-xr-xext/reflection/tests/bug30209.phpt31
1 files changed, 0 insertions, 31 deletions
diff --git a/ext/reflection/tests/bug30209.phpt b/ext/reflection/tests/bug30209.phpt
deleted file mode 100755
index 6705c6704d..0000000000
--- a/ext/reflection/tests/bug30209.phpt
+++ /dev/null
@@ -1,31 +0,0 @@
---TEST--
-Bug #30209 (ReflectionClass::getMethod() lowercases attribute)
---FILE--
-<?php
-
-class Foo
-{
- private $name = 'testBAR';
-
- public function testBAR()
- {
- try
- {
- $class = new ReflectionClass($this);
- var_dump($this->name);
- $method = $class->getMethod($this->name);
- var_dump($this->name);
- }
-
- catch (Exception $e) {}
- }
-}
-
-$foo = new Foo;
-$foo->testBAR();
-?>
-===DONE===
---EXPECTF--
-string(7) "testBAR"
-string(7) "testBAR"
-===DONE===