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

29 lines
558 B
PHP
Raw Normal View History

2011-06-05 18:40:04 +02:00
<?php
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 = array()) {
2015-05-02 22:17:34 +02:00
parent::__construct($attributes);
}
public function getSubNodeNames() {
return array();
}
/**
* Get name of magic constant.
*
* @return string Name of magic constant
*/
abstract public function getName();
}