mirror of
https://github.com/phabelio/PHP-Parser.git
synced 2024-11-27 12:35:05 +01:00
a6846e3b71
The parser will now always generate Identifier nodes (for non-namespaced identifiers). This obsoletes the useIdentifierNodes parser option. Node constructors still accepts strings and will implicitly create an Identifier wrapper. Identifier implement __toString(), so that outside of strict-mode many things continue to work without changes.
32 lines
983 B
PHP
32 lines
983 B
PHP
<?php
|
|
|
|
namespace PhpParser\Node\Stmt;
|
|
|
|
use PhpParser\Node;
|
|
|
|
class Interface_ extends ClassLike
|
|
{
|
|
/** @var Node\Name[] Extended interfaces */
|
|
public $extends;
|
|
|
|
/**
|
|
* Constructs a class node.
|
|
*
|
|
* @param string|Node\Identifier $name Name
|
|
* @param array $subNodes Array of the following optional subnodes:
|
|
* 'extends' => array(): Name of extended interfaces
|
|
* 'stmts' => array(): Statements
|
|
* @param array $attributes Additional attributes
|
|
*/
|
|
public function __construct($name, array $subNodes = array(), array $attributes = array()) {
|
|
parent::__construct($attributes);
|
|
$this->name = \is_string($name) ? new Node\Identifier($name) : $name;
|
|
$this->extends = $subNodes['extends'] ?? array();
|
|
$this->stmts = $subNodes['stmts'] ?? array();
|
|
}
|
|
|
|
public function getSubNodeNames() {
|
|
return array('name', 'extends', 'stmts');
|
|
}
|
|
}
|