Skip to main content
Drupal API
User account menu
  • Log in

Breadcrumb

  1. Drupal Core 11.1.x
  2. VariadicPlaceholder.php

class VariadicPlaceholder

Represents the "..." in "foo(...)" of the first-class callable syntax.

Hierarchy

  • class \PhpParser\NodeAbstract implements \PhpParser\Node, \PhpParser\JsonSerializable
    • class \PhpParser\Node\VariadicPlaceholder extends \PhpParser\NodeAbstract

Expanded class hierarchy of VariadicPlaceholder

7 files declare their use of VariadicPlaceholder
CallLike.php in vendor/nikic/php-parser/lib/PhpParser/Node/Expr/CallLike.php
DrupalServiceDynamicReturnTypeExtension.php in vendor/mglaman/phpstan-drupal/src/Type/DrupalServiceDynamicReturnTypeExtension.php
EntityTypeManagerGetStorageDynamicReturnTypeExtension.php in vendor/mglaman/phpstan-drupal/src/Type/EntityTypeManagerGetStorageDynamicReturnTypeExtension.php
MethodCall.php in vendor/nikic/php-parser/lib/PhpParser/Node/Expr/MethodCall.php
New_.php in vendor/nikic/php-parser/lib/PhpParser/Node/Expr/New_.php

... See full list

1 string reference to 'VariadicPlaceholder'
VariadicPlaceholder::getType in vendor/nikic/php-parser/lib/PhpParser/Node/VariadicPlaceholder.php
Gets the type of the node.

File

vendor/nikic/php-parser/lib/PhpParser/Node/VariadicPlaceholder.php, line 10

Namespace

PhpParser\Node
View source
class VariadicPlaceholder extends NodeAbstract {
    
    /**
     * Create a variadic argument placeholder (first-class callable syntax).
     *
     * @param array<string, mixed> $attributes Additional attributes
     */
    public function __construct(array $attributes = []) {
        $this->attributes = $attributes;
    }
    public function getType() : string {
        return 'VariadicPlaceholder';
    }
    public function getSubNodeNames() : array {
        return [];
    }

}

Members

Title Sort descending Modifiers Object type Summary Overriden Title
NodeAbstract::$attributes protected property @var array&lt;string, mixed&gt; Attributes
NodeAbstract::getAttribute public function Returns the value of an attribute. Overrides Node::getAttribute
NodeAbstract::getAttributes public function Returns all the attributes of this node. Overrides Node::getAttributes
NodeAbstract::getComments public function Gets all comments directly preceding this node. Overrides Node::getComments
NodeAbstract::getDocComment public function Gets the doc comment of the node. Overrides Node::getDocComment
NodeAbstract::getEndFilePos public function Gets the file offset of the last character that is part of this node. Overrides Node::getEndFilePos
NodeAbstract::getEndLine public function Gets the line the node ended in. Overrides Node::getEndLine
NodeAbstract::getEndTokenPos public function Gets the token offset of the last token that is part of this node. Overrides Node::getEndTokenPos
NodeAbstract::getLine public function Gets line the node started in (alias of getStartLine). Overrides Node::getLine
NodeAbstract::getStartFilePos public function Gets the file offset of the first character that is part of this node. Overrides Node::getStartFilePos
NodeAbstract::getStartLine public function Gets line the node started in. Overrides Node::getStartLine
NodeAbstract::getStartTokenPos public function Gets the token offset of the first token that is part of this node. Overrides Node::getStartTokenPos
NodeAbstract::hasAttribute public function Returns whether an attribute exists. Overrides Node::hasAttribute
NodeAbstract::jsonSerialize public function
NodeAbstract::setAttribute public function Sets an attribute on a node. Overrides Node::setAttribute
NodeAbstract::setAttributes public function Replaces all the attributes of this node. Overrides Node::setAttributes
NodeAbstract::setDocComment public function Sets the doc comment of the node. Overrides Node::setDocComment
VariadicPlaceholder::getSubNodeNames public function Gets the names of the sub nodes. Overrides Node::getSubNodeNames
VariadicPlaceholder::getType public function Gets the type of the node. Overrides Node::getType
VariadicPlaceholder::__construct public function Create a variadic argument placeholder (first-class callable syntax). Overrides NodeAbstract::__construct

API Navigation

  • Drupal Core 11.1.x
  • Topics
  • Classes
  • Functions
  • Constants
  • Globals
  • Files
  • Namespaces
  • Deprecated
  • Services
RSS feed
Powered by Drupal