/lib/PHPParser/Node/Expr/Exit.php
https://bitbucket.org/nilopc_repo/sf2_backup-php-parser · PHP · 22 lines · 12 code · 1 blank · 9 comment · 0 complexity · f3eda0dd76875f7efe11695e432e3db4 MD5 · raw file
- <?php
- /**
- * @property null|PHPParser_Node_Expr $expr Expression
- */
- class PHPParser_Node_Expr_Exit extends PHPParser_Node_Expr
- {
- /**
- * Constructs an exit() node.
- *
- * @param null|PHPParser_Node_Expr $expr Expression
- * @param array $attributes Additional attributes
- */
- public function __construct(PHPParser_Node_Expr $expr = null, array $attributes = array()) {
- parent::__construct(
- array(
- 'expr' => $expr
- ),
- $attributes
- );
- }
- }