mirror of
https://github.com/danog/PHP-Parser.git
synced 2024-12-15 02:47:04 +01:00
22 lines
353 B
Groff
22 lines
353 B
Groff
|
Callable type hint
|
||
|
-----
|
||
|
<?php
|
||
|
|
||
|
function a(callable $b) {}
|
||
|
-----
|
||
|
array(
|
||
|
0: Stmt_Function(
|
||
|
byRef: false
|
||
|
params: array(
|
||
|
0: Param(
|
||
|
name: b
|
||
|
default: null
|
||
|
type: callable
|
||
|
byRef: false
|
||
|
)
|
||
|
)
|
||
|
stmts: array(
|
||
|
)
|
||
|
name: a
|
||
|
)
|
||
|
)
|