mirror of
https://github.com/nikic/PHP-Parser.git
synced 2025-02-24 02:42:40 +01:00
21 lines
257 B
Plaintext
21 lines
257 B
Plaintext
Closure add static
|
|
-----
|
|
<?php
|
|
function () {
|
|
if (rand(0, 1)) {
|
|
return true;
|
|
}
|
|
|
|
return false;
|
|
};
|
|
-----
|
|
$stmts[0]->expr->static = true;
|
|
-----
|
|
<?php
|
|
static function () {
|
|
if (rand(0, 1)) {
|
|
return true;
|
|
}
|
|
|
|
return false;
|
|
}; |