1
0
mirror of https://github.com/php/php-src.git synced 2026-03-28 10:12:18 +01:00
Files
archived-php-src/ext/reflection/tests/ReflectionFunction_getClosureThis.phpt
2018-02-03 14:10:51 +01:00

13 lines
229 B
PHP

--TEST--
Reflection::getClosureThis()
--FILE--
<?php
$closure = function($param) { return "this is a closure"; };
$rf = new ReflectionFunction($closure);
var_dump($rf->getClosureThis());
echo "Done!\n";
?>
--EXPECTF--
NULL
Done!