Home
last modified time | relevance | path

Searched defs:name (Results 1 – 25 of 61) sorted by relevance

123

/PHP-Parser/lib/PhpParser/
H A DBuilderFactory.php34 public function namespace($name): Builder\Namespace_ {
45 public function class(string $name): Builder\Class_ {
67 public function trait(string $name): Builder\Trait_ {
78 public function enum(string $name): Builder\Enum_ {
117 public function method(string $name): Builder\Method {
128 public function param(string $name): Builder\Param {
161 public function use($name): Builder\Use_ {
172 public function useFunction($name): Builder\Use_ {
183 public function useConst($name): Builder\Use_ {
206 public function enumCase($name): Builder\EnumCase {
[all …]
H A DNameContext.php55 … public function addAlias(Name $name, string $aliasName, int $type, array $errorAttrs = []): void {
101 public function getResolvedName(Name $name, int $type): ?Name {
144 public function getResolvedClassName(Name $name): Name {
156 public function getPossibleNames(string $name, int $type): array {
212 public function getShortName(string $name, int $type): Name {
229 private function resolveAlias(Name $name, int $type): ?FullyQualified {
252 private function getNamespaceRelativeName(string $name, string $lcName, int $type): ?Name {
273 private function normalizeConstName(string $name): string {
H A DBuilderHelpers.php67 public static function normalizeIdentifier($name): Identifier {
86 public static function normalizeIdentifierOrExpr($name) {
105 public static function normalizeName($name): Name {
136 public static function normalizeNameOrExpr($name) {
/PHP-Parser/lib/PhpParser/Node/Stmt/
H A DClassLike.php10 public ?Node\Identifier $name; variable in PhpParser\\Node\\Stmt\\ClassLike
65 public function getProperty(string $name): ?Property {
100 public function getMethod(string $name): ?ClassMethod {
H A DGoto_.php10 public Identifier $name; variable in PhpParser\\Node\\Stmt\\Goto_
18 public function __construct($name, array $attributes = []) {
H A DLabel.php10 public Identifier $name; variable in PhpParser\\Node\\Stmt\\Label
18 public function __construct($name, array $attributes = []) {
H A DNamespace_.php13 public ?Node\Name $name; variable in PhpParser\\Node\\Stmt\\Namespace_
24 … public function __construct(?Node\Name $name = null, ?array $stmts = [], array $attributes = []) {
H A DEnumCase.php10 public Node\Identifier $name; variable in PhpParser\\Node\\Stmt\\EnumCase
22 …public function __construct($name, ?Node\Expr $expr = null, array $attrGroups = [], array $attribu…
/PHP-Parser/lib/PhpParser/Node/Expr/
H A DVariable.php9 public $name; variable in PhpParser\\Node\\Expr\\Variable
17 public function __construct($name, array $attributes = []) {
H A DConstFetch.php10 public Name $name; variable in PhpParser\\Node\\Expr\\ConstFetch
18 public function __construct(Name $name, array $attributes = []) {
H A DFuncCall.php10 public Node $name; variable in PhpParser\\Node\\Expr\\FuncCall
21 public function __construct(Node $name, array $args = [], array $attributes = []) {
H A DNullsafePropertyFetch.php13 public Node $name; variable in PhpParser\\Node\\Expr\\NullsafePropertyFetch
22 public function __construct(Expr $var, $name, array $attributes = []) {
H A DPropertyFetch.php13 public Node $name; variable in PhpParser\\Node\\Expr\\PropertyFetch
22 public function __construct(Expr $var, $name, array $attributes = []) {
H A DClassConstFetch.php14 public Node $name; variable in PhpParser\\Node\\Expr\\ClassConstFetch
23 public function __construct(Node $class, $name, array $attributes = []) {
H A DStaticPropertyFetch.php14 public Node $name; variable in PhpParser\\Node\\Expr\\StaticPropertyFetch
23 public function __construct(Node $class, $name, array $attributes = []) {
/PHP-Parser/lib/PhpParser/Node/
H A DAttribute.php10 public Name $name; variable in PhpParser\\Node\\Attribute
20 public function __construct(Name $name, array $args = [], array $attributes = []) {
H A DConst_.php9 public Identifier $name; variable in PhpParser\\Node\\Const_
23 public function __construct($name, Expr $value, array $attributes = []) {
H A DPropertyItem.php10 public VarLikeIdentifier $name; variable in PhpParser\\Node\\PropertyItem
21 public function __construct($name, ?Node\Expr $default = null, array $attributes = []) {
H A DIdentifier.php15 public string $name; variable in PhpParser\\Node\\Identifier
30 public function __construct(string $name, array $attributes = []) {
H A DArg.php9 public ?Identifier $name; variable in PhpParser\\Node\\Arg
28 ?Identifier $name = null
H A DUseItem.php15 public Name $name; variable in PhpParser\\Node\\UseItem
27 …public function __construct(Node\Name $name, $alias = null, int $type = Use_::TYPE_UNKNOWN, array …
/PHP-Parser/lib/PhpParser/Builder/
H A DNamespace_.php11 private ?Node\Name $name; variable in PhpParser\\Builder\\Namespace_
20 public function __construct($name) {
H A DUse_.php11 protected Node\Name $name; variable in PhpParser\\Builder\\Use_
22 public function __construct($name, int $type) {
H A DFunction_.php11 protected string $name; variable in PhpParser\\Builder\\Function_
23 public function __construct(string $name) {
/PHP-Parser/test/PhpParser/Node/Scalar/
H A DMagicConstTest.php9 public function testGetName(MagicConst $magicConst, $name): void {

Completed in 47 milliseconds

123