summaryrefslogtreecommitdiff
path: root/ext/reflection/tests/ReflectionExtension_getClassNames_variation1.phpt
blob: 91912b92207afceab6a299cfa9f7c5604e72d102 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
--TEST--
ReflectionExtension::getClassNames() method on an extension with no classes
--CREDITS--
Felix De Vliegher <felix.devliegher@gmail.com>
--SKIPIF--
<?php
extension_loaded('ctype') or die("skip Requires 'ctype' extension");
?>
--FILE--
<?php
$extension = new ReflectionExtension('ctype');
var_dump($extension->getClassNames());
?>
==DONE==
--EXPECT--
array(0) {
}
==DONE==