php-parser/lib/PhpParser/Node/Stmt/Echo.php

26 lines
526 B
PHP
Raw Normal View History

2011-06-05 18:40:04 +02:00
<?php
namespace PhpParser\Node\Stmt;
use PhpParser\Node;
2011-06-05 18:40:04 +02:00
/**
* @property Node\Expr[] $exprs Expressions
2011-06-05 18:40:04 +02:00
*/
class Echo_ extends Node\Stmt
2011-06-05 18:40:04 +02:00
{
/**
* Constructs an echo node.
*
* @param Node\Expr[] $exprs Expressions
* @param array $attributes Additional attributes
*/
public function __construct(array $exprs, array $attributes = array()) {
parent::__construct(
array(
'exprs' => $exprs,
),
$attributes
);
}
2011-06-05 18:40:04 +02:00
}