NSConst.php 318 B

12345678910111213
  1. <?php
  2. class PHPParser_Node_Scalar_NSConst extends PHPParser_Node_Scalar
  3. {
  4. /**
  5. * Constructs a __NAMESPACE__ const node
  6. *
  7. * @param array $attributes Additional attributes
  8. */
  9. public function __construct(array $attributes = array()) {
  10. parent::__construct(array(), $attributes);
  11. }
  12. }