Namespaces
ApiGen
Analyzer
Index
Info
Expr
Traits
Renderer
Scheduler
Task
Classes
ArgExprInfo
ArrayExprInfo
ArrayItemExprInfo
BinaryOpExprInfo
BooleanExprInfo
ClassConstantFetchExprInfo
ConstantFetchExprInfo
DimFetchExprInfo
FloatExprInfo
IntegerExprInfo
NewExprInfo
NullExprInfo
NullSafePropertyFetchExprInfo
PropertyFetchExprInfo
StringExprInfo
TernaryExprInfo
UnaryOpExprInfo
Overview
Namespace
Class
Tree
1:
<?php
declare
(strict_types =
1
);
2:
3:
namespace
ApiGen\Info\Expr;
4:
5:
use
ApiGen\Info\ExprInfo;
6:
7:
8:
class
ArrayExprInfo
implements
ExprInfo
9:
{
10:
/**
11:
* @param ArrayItemExprInfo[] $items
12:
*/
13:
public
function
__construct(
14:
public
array
$items
,
15:
) {
16:
}
17:
}
18: