Node.php
Same filename in this branch
- 11.1.x vendor/phpunit/php-code-coverage/src/Report/Xml/Node.php
- 11.1.x vendor/nikic/php-parser/lib/PhpParser/Node.php
- 11.1.x vendor/twig/twig/src/Node/Node.php
- 11.1.x vendor/mck89/peast/lib/Peast/Syntax/Node/Node.php
- 11.1.x core/modules/node/src/Plugin/migrate/source/d6/Node.php
- 11.1.x core/modules/node/src/Plugin/migrate/source/d7/Node.php
- 11.1.x core/modules/node/src/Plugin/views/field/Node.php
- 11.1.x core/modules/node/src/Plugin/views/wizard/Node.php
- 11.1.x core/modules/node/src/Plugin/views/argument_default/Node.php
- 11.1.x core/modules/node/src/Entity/Node.php
Namespace
PHPStan\PhpDocParser\AstFile
-
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 |