1<?php declare(strict_types=1);
2
3namespace PhpParser\Node\Stmt;
4
5use PhpParser\Node;
6
7class Echo_ extends Node\Stmt
8{
9    /** @var Node\Expr[] Expressions */
10    public $exprs;
11
12    /**
13     * Constructs an echo node.
14     *
15     * @param Node\Expr[] $exprs      Expressions
16     * @param array       $attributes Additional attributes
17     */
18    public function __construct(array $exprs, array $attributes = []) {
19        $this->attributes = $attributes;
20        $this->exprs = $exprs;
21    }
22
23    public function getSubNodeNames() : array {
24        return ['exprs'];
25    }
26
27    public function getType() : string {
28        return 'Stmt_Echo';
29    }
30}
31