mirror of
https://github.com/php/php-src.git
synced 2025-08-16 05:58:45 +02:00

see https://wiki.php.net/rfc/correctly_name_the_rounding_mode_and_make_it_an_enum Co-authored-by: Saki Takamachi <saki@php.net> Co-authored-by: Niels Dossche <7771979+nielsdos@users.noreply.github.com>
20 lines
467 B
PHP
20 lines
467 B
PHP
--TEST--
|
|
ReflectionExtension::getClassNames() method on an extension which actually returns some information
|
|
--CREDITS--
|
|
Felix De Vliegher <felix.devliegher@gmail.com>
|
|
--FILE--
|
|
<?php
|
|
$standard = new ReflectionExtension('standard');
|
|
$classNames = $standard->getClassNames();
|
|
sort($classNames);
|
|
foreach ($classNames as $className) {
|
|
echo $className, PHP_EOL;
|
|
}
|
|
?>
|
|
--EXPECT--
|
|
AssertionError
|
|
Directory
|
|
RoundingMode
|
|
StreamBucket
|
|
__PHP_Incomplete_Class
|
|
php_user_filter
|