ReflectionExtension_isPersistant.phpt 181 B

1234567891011
  1. --TEST--
  2. ReflectionExtension::isPersistent()
  3. --FILE--
  4. <?php
  5. $obj = new ReflectionExtension('reflection');
  6. var_dump($obj->isPersistent());
  7. ?>
  8. ==DONE==
  9. --EXPECT--
  10. bool(true)
  11. ==DONE==