mirror of
https://github.com/php/php-src.git
synced 2026-04-20 14:31:06 +02:00
Support acquiring a Closure to a callable using the syntax func(...), $obj->method(...), etc. This is essentially a shortcut for Closure::fromCallable(). RFC: https://wiki.php.net/rfc/first_class_callable_syntax Closes GH-7019. Co-Authored-By: Nikita Popov <nikita.ppv@gmail.com>
12 lines
155 B
PHP
12 lines
155 B
PHP
--TEST--
|
|
First class callable with nullsafe method call (unrelated)
|
|
--FILE--
|
|
<?php
|
|
|
|
$foo = null;
|
|
var_dump($foo?->foo($foo->bar(...)));
|
|
|
|
?>
|
|
--EXPECT--
|
|
NULL
|