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/reflection/tests/ReflectionFunction_getClosureThis.phpt
2018-10-14 19:44:14 +02:00

13 lines
228 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";
?>
--EXPECT--
NULL
Done!