Файл: gapps/vendor/nikic/php-parser/lib/PhpParser/Node/FunctionLike.php
Строк: 28
<?php
namespace PhpParserNode;
use PhpParserNode;
interface FunctionLike extends Node
{
/**
* Whether to return by reference
*
* @return bool
*/
public function returnsByRef();
/**
* List of parameters
*
* @return NodeParam[]
*/
public function getParams();
/**
* Get the declared return type or null
*
* @return null|string|NodeName
*/
public function getReturnType();
/**
* The function body
*
* @return NodeStmt[]
*/
public function getStmts();
}