2011-05-27 18:20:44 +02:00
|
|
|
<?php
|
|
|
|
|
2014-02-06 14:44:16 +01:00
|
|
|
namespace PhpParser\Node\Stmt;
|
|
|
|
|
|
|
|
use PhpParser\Node;
|
|
|
|
use PhpParser\Error;
|
|
|
|
|
2011-05-30 17:29:10 +02:00
|
|
|
/**
|
2011-10-28 19:06:24 +02:00
|
|
|
* @property string $name Name
|
2014-02-06 14:44:16 +01:00
|
|
|
* @property Node\Name[] $extends Extended interfaces
|
|
|
|
* @property Node[] $stmts Statements
|
2011-05-30 17:29:10 +02:00
|
|
|
*/
|
2015-01-31 22:59:38 +01:00
|
|
|
class Interface_ extends ClassLike
|
2011-05-27 18:20:44 +02:00
|
|
|
{
|
2011-11-27 12:53:48 +01:00
|
|
|
protected static $specialNames = array(
|
2011-10-28 19:06:24 +02:00
|
|
|
'self' => true,
|
|
|
|
'parent' => true,
|
|
|
|
'static' => true,
|
|
|
|
);
|
2011-08-04 12:03:34 +02:00
|
|
|
|
2011-10-28 19:06:24 +02:00
|
|
|
/**
|
|
|
|
* Constructs a class node.
|
|
|
|
*
|
2012-04-29 23:32:09 +02:00
|
|
|
* @param string $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
|
2011-10-28 19:06:24 +02:00
|
|
|
*/
|
2012-04-29 23:32:09 +02:00
|
|
|
public function __construct($name, array $subNodes = array(), array $attributes = array()) {
|
2011-10-28 19:06:24 +02:00
|
|
|
parent::__construct(
|
2014-03-22 14:49:56 +01:00
|
|
|
array(
|
|
|
|
'name' => $name,
|
|
|
|
'extends' => isset($subNodes['extends']) ? $subNodes['extends'] : array(),
|
|
|
|
'stmts' => isset($subNodes['stmts']) ? $subNodes['stmts'] : array(),
|
2011-10-28 19:06:24 +02:00
|
|
|
),
|
2012-04-29 23:32:09 +02:00
|
|
|
$attributes
|
2011-10-28 19:06:24 +02:00
|
|
|
);
|
|
|
|
|
2011-11-27 12:53:48 +01:00
|
|
|
if (isset(self::$specialNames[(string) $this->name])) {
|
2014-02-12 20:23:12 +01:00
|
|
|
throw new Error(sprintf('Cannot use \'%s\' as class name as it is reserved', $this->name));
|
2011-08-04 12:03:34 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
foreach ($this->extends as $interface) {
|
2011-11-27 12:53:48 +01:00
|
|
|
if (isset(self::$specialNames[(string) $interface])) {
|
2014-02-12 20:23:12 +01:00
|
|
|
throw new Error(sprintf('Cannot use \'%s\' as interface name as it is reserved', $interface));
|
2011-08-04 12:03:34 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2014-01-23 13:33:02 +01:00
|
|
|
}
|