1
0
mirror of https://github.com/php/php-src.git synced 2026-03-26 09:12:14 +01: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==