10 lines
163 B
Plaintext
10 lines
163 B
Plaintext
|
|
--TEST--
|
||
|
|
ReflectionExtension::isPersistent()
|
||
|
|
--FILE--
|
||
|
|
<?php
|
||
|
|
$obj = new ReflectionExtension('reflection');
|
||
|
|
var_dump($obj->isPersistent());
|
||
|
|
?>
|
||
|
|
--EXPECT--
|
||
|
|
bool(true)
|