12345678910111213141516171819202122232425262728293031323334353637383940 |
- <?php declare(strict_types=1);
- namespace PhpParser\Node;
- use PhpParser\Node;
- interface FunctionLike extends Node {
-
- public function returnsByRef(): bool;
-
- public function getParams(): array;
-
- public function getReturnType();
-
- public function getStmts(): ?array;
-
- public function getAttrGroups(): array;
- }
|