mirror of
https://github.com/phabelio/PHP-Parser.git
synced 2024-12-03 09:57:51 +01:00
22 lines
535 B
PHP
22 lines
535 B
PHP
<?php
|
|
|
|
/**
|
|
* @property PHPParser_Node_Expr $expr Expression
|
|
*/
|
|
class PHPParser_Node_Stmt_Throw extends PHPParser_Node_Stmt
|
|
{
|
|
/**
|
|
* Constructs a throw node.
|
|
*
|
|
* @param PHPParser_Node_Expr $expr Expression
|
|
* @param array $attributes Additional attributes
|
|
*/
|
|
public function __construct(PHPParser_Node_Expr $expr, array $attributes = array()) {
|
|
parent::__construct(
|
|
array(
|
|
'expr' => $expr,
|
|
),
|
|
$attributes
|
|
);
|
|
}
|
|
} |