1
0
mirror of https://github.com/php/php-src.git synced 2026-03-29 03:32:20 +02:00
Files
archived-php-src/ext/reflection/tests/ReflectionExtension_isPersistant.phpt

12 lines
181 B
PHP

--TEST--
ReflectionExtension::isPersistent()
--FILE--
<?php
$obj = new ReflectionExtension('reflection');
var_dump($obj->isPersistent());
?>
==DONE==
--EXPECT--
bool(true)
==DONE==