1
0
mirror of https://github.com/php/php-src.git synced 2026-03-24 16:22:37 +01:00
Files
archived-php-src/ext/spl/tests/SplFileObject/bug72884.phpt
2022-05-27 18:33:48 +01:00

12 lines
205 B
PHP

--TEST--
Bug #72884: isCloneable() on SplFileObject should return false
--FILE--
<?php
$x=new SplFileObject(__FILE__);
$r=new ReflectionObject($x);
var_dump($r->isCloneable());
?>
--EXPECT--
bool(false)