mirror of
https://github.com/nvim-treesitter/nvim-treesitter.git
synced 2026-07-02 03:26:52 -04:00
66 lines
557 B
PHP
66 lines
557 B
PHP
<?php
|
|
|
|
if (
|
|
) {
|
|
}
|
|
|
|
return (
|
|
);
|
|
|
|
return true
|
|
;
|
|
|
|
return fn () => (
|
|
);
|
|
|
|
return fn (
|
|
) => (
|
|
);
|
|
|
|
return function (
|
|
) {
|
|
};
|
|
|
|
return function () {
|
|
};
|
|
|
|
return match (
|
|
) {
|
|
};
|
|
|
|
return match () {
|
|
};
|
|
|
|
return new class
|
|
{
|
|
public function up()
|
|
{
|
|
}
|
|
|
|
public function down(
|
|
) {
|
|
}
|
|
};
|
|
|
|
$this->foo()
|
|
->bar(
|
|
)
|
|
->baz();
|
|
|
|
$this->get()
|
|
->each(function () {
|
|
})
|
|
->each(
|
|
function (
|
|
) {
|
|
},
|
|
);
|
|
|
|
return $this->get()
|
|
->each(function () {
|
|
})
|
|
->each(
|
|
function (
|
|
) {
|
|
},
|
|
);
|