<?phpnamespacePhpParser\Node;usePhpParser\Node;interfaceFunctionLikeextendsNode{/** * Whether to return by reference * * @return bool */publicfunctionreturnsByRef();/** * List of parameters * * @return Node\Param[] */publicfunctiongetParams();/** * Get the declared return type or null * * @return null|string|Node\Name */publicfunctiongetReturnType();/** * The function body * * @return Node\Stmt[] */publicfunctiongetStmts();}