blob: 465e868cfa5f1168209ff5eccd88235be28e171a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
--TEST--
ReflectionExtension::getClassNames() method on an extension which acually returns some information
--CREDITS--
Felix De Vliegher <felix.devliegher@gmail.com>
--FILE--
<?php
$standard = new ReflectionExtension('standard');
var_dump($standard->getClassNames());
?>
==DONE==
--EXPECTF--
array(3) {
[0]=>
%s(22) "__PHP_Incomplete_Class"
[1]=>
%s(15) "php_user_filter"
[2]=>
%s(9) "Directory"
}
==DONE==
|