/PHP-Parser/lib/PhpParser/ |
H A D | BuilderFactory.php | 34 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 D | NameContext.php | 55 … 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 D | BuilderHelpers.php | 68 public static function normalizeIdentifier($name): Identifier { 87 public static function normalizeIdentifierOrExpr($name) { 106 public static function normalizeName($name): Name { 137 public static function normalizeNameOrExpr($name) {
|
/PHP-Parser/lib/PhpParser/Node/Stmt/ |
H A D | ClassLike.php | 10 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 D | Goto_.php | 10 public Identifier $name; variable in PhpParser\\Node\\Stmt\\Goto_ 18 public function __construct($name, array $attributes = []) {
|
H A D | Label.php | 10 public Identifier $name; variable in PhpParser\\Node\\Stmt\\Label 18 public function __construct($name, array $attributes = []) {
|
H A D | Namespace_.php | 13 public ?Node\Name $name; variable in PhpParser\\Node\\Stmt\\Namespace_ 24 … public function __construct(?Node\Name $name = null, ?array $stmts = [], array $attributes = []) {
|
H A D | EnumCase.php | 10 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 D | Variable.php | 9 public $name; variable in PhpParser\\Node\\Expr\\Variable 17 public function __construct($name, array $attributes = []) {
|
H A D | ConstFetch.php | 10 public Name $name; variable in PhpParser\\Node\\Expr\\ConstFetch 18 public function __construct(Name $name, array $attributes = []) {
|
H A D | FuncCall.php | 10 public Node $name; variable in PhpParser\\Node\\Expr\\FuncCall 21 public function __construct(Node $name, array $args = [], array $attributes = []) {
|
H A D | NullsafePropertyFetch.php | 13 public Node $name; variable in PhpParser\\Node\\Expr\\NullsafePropertyFetch 22 public function __construct(Expr $var, $name, array $attributes = []) {
|
H A D | PropertyFetch.php | 13 public Node $name; variable in PhpParser\\Node\\Expr\\PropertyFetch 22 public function __construct(Expr $var, $name, array $attributes = []) {
|
H A D | ClassConstFetch.php | 14 public Node $name; variable in PhpParser\\Node\\Expr\\ClassConstFetch 23 public function __construct(Node $class, $name, array $attributes = []) {
|
H A D | StaticPropertyFetch.php | 14 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 D | Attribute.php | 10 public Name $name; variable in PhpParser\\Node\\Attribute 20 public function __construct(Name $name, array $args = [], array $attributes = []) {
|
H A D | Const_.php | 9 public Identifier $name; variable in PhpParser\\Node\\Const_ 23 public function __construct($name, Expr $value, array $attributes = []) {
|
H A D | PropertyItem.php | 10 public VarLikeIdentifier $name; variable in PhpParser\\Node\\PropertyItem 21 public function __construct($name, ?Node\Expr $default = null, array $attributes = []) {
|
H A D | Identifier.php | 15 public string $name; variable in PhpParser\\Node\\Identifier 30 public function __construct(string $name, array $attributes = []) {
|
H A D | Arg.php | 9 public ?Identifier $name; variable in PhpParser\\Node\\Arg 28 ?Identifier $name = null
|
H A D | UseItem.php | 15 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 D | Namespace_.php | 11 private ?Node\Name $name; variable in PhpParser\\Builder\\Namespace_ 20 public function __construct($name) {
|
H A D | Use_.php | 11 protected Node\Name $name; variable in PhpParser\\Builder\\Use_ 22 public function __construct($name, int $type) {
|
H A D | Function_.php | 11 protected string $name; variable in PhpParser\\Builder\\Function_ 23 public function __construct(string $name) {
|
/PHP-Parser/test/PhpParser/Node/Scalar/ |
H A D | MagicConstTest.php | 9 public function testGetName(MagicConst $magicConst, $name): void {
|