Removed modules/contrib/media module to allow update to the core media module
[yaffs-website] / vendor / nikic / php-parser / lib / PhpParser / Node / Expr / AssignOp.php
1 <?php declare(strict_types=1);
2
3 namespace PhpParser\Node\Expr;
4
5 use PhpParser\Node\Expr;
6
7 abstract class AssignOp extends Expr
8 {
9     /** @var Expr Variable */
10     public $var;
11     /** @var Expr Expression */
12     public $expr;
13
14     /**
15      * Constructs a compound assignment operation node.
16      *
17      * @param Expr  $var        Variable
18      * @param Expr  $expr       Expression
19      * @param array $attributes Additional attributes
20      */
21     public function __construct(Expr $var, Expr $expr, array $attributes = []) {
22         parent::__construct($attributes);
23         $this->var = $var;
24         $this->expr = $expr;
25     }
26
27     public function getSubNodeNames() : array {
28         return ['var', 'expr'];
29     }
30 }