查看网站首页
查看网站首页
查看 sitemap.xml
✏️ 正在编辑: FunctionLike.php
路径:
/opt/cpanel/ea-wappspector/vendor/nikic/php-parser/lib/PhpParser/Node/FunctionLike.php
提示:
您可以编辑任何文件(包括二进制文件),但请注意不当修改可能导致文件损坏。
<?php declare(strict_types=1); namespace PhpParser\Node; use PhpParser\Node; interface FunctionLike extends Node { /** * Whether to return by reference */ public function returnsByRef(): bool; /** * List of parameters * * @return Param[] */ public function getParams(): array; /** * Get the declared return type or null * * @return null|Identifier|Name|ComplexType */ public function getReturnType(); /** * The function body * * @return Stmt[]|null */ public function getStmts(): ?array; /** * Get PHP attribute groups. * * @return AttributeGroup[] */ public function getAttrGroups(): array; }
💾 保存文件
← 返回文件管理器