Const.php 708 B

12345678910111213141516171819202122232425
  1. <?php
  2. /**
  3. * @property string $name Name
  4. * @property PHPParser_Node_Expr $value Value
  5. */
  6. class PHPParser_Node_Const extends PHPParser_NodeAbstract
  7. {
  8. /**
  9. * Constructs a const node for use in class const and const statements.
  10. *
  11. * @param string $name Name
  12. * @param PHPParser_Node_Expr $value Value
  13. * @param array $attributes Additional attributes
  14. */
  15. public function __construct($name, PHPParser_Node_Expr $value, array $attributes = array()) {
  16. parent::__construct(
  17. array(
  18. 'name' => $name,
  19. 'value' => $value,
  20. ),
  21. $attributes
  22. );
  23. }
  24. }