1
0
mirror of https://github.com/danog/PHP-Parser.git synced 2024-12-03 09:47:59 +01:00
PHP-Parser/lib/PhpParser/Node/Expr/Exit_.php

26 lines
536 B
PHP
Raw Normal View History

2011-06-05 18:40:04 +02:00
<?php
namespace PhpParser\Node\Expr;
use PhpParser\Node\Expr;
2011-06-05 18:40:04 +02:00
/**
* @property null|Expr $expr Expression
2011-06-05 18:40:04 +02:00
*/
class Exit_ extends Expr
2011-06-05 18:40:04 +02:00
{
/**
* 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
);
}
2011-06-05 18:40:04 +02:00
}