blob: fef603b0ca358daa2a7eba17a444cf4288415abd (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
--TEST--
Bug #52060 (Memory leak when passing a closure to method_exists())
--FILE--
<?php
$closure = function($a) { echo $a; };
var_dump(method_exists($closure, '__invoke')); // true
?>
--EXPECT--
bool(true)
|