php-parser/lib/PhpParser/Node/Scalar/MagicConst.php

29 lines
589 B
PHP
Raw Normal View History

2017-08-18 22:57:27 +02:00
<?php declare(strict_types=1);
2011-06-05 18:40:04 +02:00
namespace PhpParser\Node\Scalar;
use PhpParser\Node\Scalar;
abstract class MagicConst extends Scalar
2011-06-05 18:40:04 +02:00
{
/**
* Constructs a magic constant node.
*
* @param array $attributes Additional attributes
*/
public function __construct(array $attributes = []) {
$this->attributes = $attributes;
}
2017-04-28 21:40:59 +02:00
public function getSubNodeNames() : array {
return [];
}
/**
* Get name of magic constant.
*
* @return string Name of magic constant
*/
2017-04-28 21:40:59 +02:00
abstract public function getName() : string;
}