mirror of
https://github.com/phabelio/PHP-Parser.git
synced 2024-12-02 17:38:19 +01:00
22 lines
532 B
PHP
22 lines
532 B
PHP
<?php
|
|
|
|
/**
|
|
* @property PHPParser_Node_Expr[] $exprs Expressions
|
|
*/
|
|
class PHPParser_Node_Stmt_Echo extends PHPParser_Node_Stmt
|
|
{
|
|
/**
|
|
* Constructs an echo node.
|
|
*
|
|
* @param PHPParser_Node_Expr[] $exprs Expressions
|
|
* @param array $attributes Additional attributes
|
|
*/
|
|
public function __construct(array $exprs, array $attributes = array()) {
|
|
parent::__construct(
|
|
array(
|
|
'exprs' => $exprs,
|
|
),
|
|
$attributes
|
|
);
|
|
}
|
|
} |