summaryrefslogtreecommitdiff
path: root/ext/reflection/tests/bug36308.phpt
diff options
context:
space:
mode:
Diffstat (limited to 'ext/reflection/tests/bug36308.phpt')
-rwxr-xr-xext/reflection/tests/bug36308.phpt22
1 files changed, 0 insertions, 22 deletions
diff --git a/ext/reflection/tests/bug36308.phpt b/ext/reflection/tests/bug36308.phpt
deleted file mode 100755
index 52717b474a..0000000000
--- a/ext/reflection/tests/bug36308.phpt
+++ /dev/null
@@ -1,22 +0,0 @@
---TEST--
-Reflection Bug #36308 (ReflectionProperty::getDocComment() does not reflect extended class commentary)
---SKIPIF--
-<?php extension_loaded('reflection') or die('skip'); ?>
---FILE--
-<?php
-class Base {
- /** Base comment block */
- public $foo = 'bar';
-}
-
-class Extended extends Base {
- /** Extended commentary */
- public $foo = 'zim';
-}
-
-$reflect = new ReflectionClass('Extended');
-$props = $reflect->getProperties();
-echo $props[0]->getDocComment();
-?>
---EXPECT--
-/** Extended commentary */ \ No newline at end of file