PropertyFetch.php 731 B

12345678910111213141516171819202122232425262728293031
  1. <?php
  2. namespace PhpParser\Node\Expr;
  3. use PhpParser\Node\Expr;
  4. class PropertyFetch extends Expr
  5. {
  6. /** @var Expr Variable holding object */
  7. public $var;
  8. /** @var string|Expr Property name */
  9. public $name;
  10. /**
  11. * Constructs a function call node.
  12. *
  13. * @param Expr $var Variable holding object
  14. * @param string|Expr $name Property name
  15. * @param array $attributes Additional attributes
  16. */
  17. public function __construct(Expr $var, $name, array $attributes = array()) {
  18. parent::__construct($attributes);
  19. $this->var = $var;
  20. $this->name = $name;
  21. }
  22. public function getSubNodeNames() {
  23. return array('var', 'name');
  24. }
  25. }