xref
: /
PHP-8.3
/
Zend
/
tests
/
first_class_callable_015_strict.inc
(revision d0b09a7b)
Home
History
Annotate
Line#
Scopes#
Navigate#
Raw
Download
current directory
1
<?php declare(strict_types=1);
2
3
function do_strict_call(Closure $fn) {
4
$fn("42");
5
}
6