1234567891011121314151617181920212223242526 |
- <?php
- namespace PhpParser\Node\Expr;
- use PhpParser\Node\Expr;
- /**
- * @property null|Expr $expr Expression
- */
- class Exit_ extends Expr
- {
- /**
- * Constructs an exit() node.
- *
- * @param null|Expr $expr Expression
- * @param array $attributes Additional attributes
- */
- public function __construct(Expr $expr = null, array $attributes = array()) {
- parent::__construct(
- array(
- 'expr' => $expr
- ),
- $attributes
- );
- }
- }
|