We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e4ed8e6 commit 0716f54Copy full SHA for 0716f54
ext/reflection/tests/ReflectionExtension_getClassNames_basic.phpt
@@ -5,18 +5,16 @@ Felix De Vliegher <felix.devliegher@gmail.com>
5
--FILE--
6
<?php
7
$standard = new ReflectionExtension('standard');
8
-var_dump($standard->getClassNames());
+$classNames = $standard->getClassNames();
9
+sort($classNames);
10
+foreach ($classNames as $className) {
11
+ echo $className, PHP_EOL;
12
+}
13
?>
14
--EXPECT--
-array(5) {
- [0]=>
- string(22) "__PHP_Incomplete_Class"
- [1]=>
15
- string(14) "AssertionError"
16
- [2]=>
17
- string(15) "php_user_filter"
18
- [3]=>
19
- string(12) "StreamBucket"
20
- [4]=>
21
- string(9) "Directory"
22
-}
+AssertionError
+Directory
+RoundingMode
+StreamBucket
+__PHP_Incomplete_Class
+php_user_filter
0 commit comments