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

Breadcrumb

  1. Drupal Core 11.1.x

Node.php

Same filename in this branch
  1. 11.1.x vendor/phpunit/php-code-coverage/src/Report/Xml/Node.php
  2. 11.1.x vendor/nikic/php-parser/lib/PhpParser/Node.php
  3. 11.1.x vendor/twig/twig/src/Node/Node.php
  4. 11.1.x vendor/mck89/peast/lib/Peast/Syntax/Node/Node.php
  5. 11.1.x core/modules/node/src/Plugin/migrate/source/d6/Node.php
  6. 11.1.x core/modules/node/src/Plugin/migrate/source/d7/Node.php
  7. 11.1.x core/modules/node/src/Plugin/views/field/Node.php
  8. 11.1.x core/modules/node/src/Plugin/views/wizard/Node.php
  9. 11.1.x core/modules/node/src/Plugin/views/argument_default/Node.php
  10. 11.1.x core/modules/node/src/Entity/Node.php

Namespace

PHPStan\PhpDocParser\Ast

File

vendor/phpstan/phpdoc-parser/src/Ast/Node.php

View source
<?php

declare (strict_types=1);
namespace PHPStan\PhpDocParser\Ast;

interface Node {
    public function __toString() : string;
    
    /**
     * @param mixed $value
     */
    public function setAttribute(string $key, $value) : void;
    public function hasAttribute(string $key) : bool;
    
    /**
     * @return mixed
     */
    public function getAttribute(string $key);

}

Interfaces

Title Deprecated Summary
Node
RSS feed
Powered by Drupal