mirror of
https://github.com/Combodo/iTop.git
synced 2026-04-27 04:28:44 +02:00
We were on v3 that is no longer maintained and compatibility is annonced for PHP 7.2. v4 is active and supports PHP up to 8.0 No problem to update as this is only used in the config editor (\Combodo\iTop\Config\Validator\iTopConfigAstValidator)
44 lines
764 B
PHP
44 lines
764 B
PHP
<?php declare(strict_types=1);
|
|
|
|
namespace PhpParser\Node;
|
|
|
|
use PhpParser\Node;
|
|
|
|
interface FunctionLike extends Node
|
|
{
|
|
/**
|
|
* Whether to return by reference
|
|
*
|
|
* @return bool
|
|
*/
|
|
public function returnsByRef() : bool;
|
|
|
|
/**
|
|
* List of parameters
|
|
*
|
|
* @return Param[]
|
|
*/
|
|
public function getParams() : array;
|
|
|
|
/**
|
|
* Get the declared return type or null
|
|
*
|
|
* @return null|Identifier|Name|NullableType|UnionType
|
|
*/
|
|
public function getReturnType();
|
|
|
|
/**
|
|
* The function body
|
|
*
|
|
* @return Stmt[]|null
|
|
*/
|
|
public function getStmts();
|
|
|
|
/**
|
|
* Get PHP attribute groups.
|
|
*
|
|
* @return AttributeGroup[]
|
|
*/
|
|
public function getAttrGroups() : array;
|
|
}
|