Aggiornato Composer

This commit is contained in:
Paolo A
2024-05-17 12:24:19 +00:00
parent 4ac62108b5
commit ec201d75b2
2238 changed files with 38684 additions and 59785 deletions

View File

@@ -4,21 +4,18 @@ namespace PhpParser\Node;
use PhpParser\Node;
interface FunctionLike extends Node
{
interface FunctionLike extends Node {
/**
* Whether to return by reference
*
* @return bool
*/
public function returnsByRef() : bool;
public function returnsByRef(): bool;
/**
* List of parameters
*
* @return Param[]
*/
public function getParams() : array;
public function getParams(): array;
/**
* Get the declared return type or null
@@ -32,12 +29,12 @@ interface FunctionLike extends Node
*
* @return Stmt[]|null
*/
public function getStmts();
public function getStmts(): ?array;
/**
* Get PHP attribute groups.
*
* @return AttributeGroup[]
*/
public function getAttrGroups() : array;
public function getAttrGroups(): array;
}