mirror of
https://github.com/danog/PHP-Parser.git
synced 2024-12-02 17:28:27 +01:00
26 lines
503 B
PHP
26 lines
503 B
PHP
<?php
|
|
|
|
namespace PhpParser\Node\Expr;
|
|
|
|
use PhpParser\Node\Expr;
|
|
|
|
/**
|
|
* @property Expr $expr Expression
|
|
*/
|
|
class Empty_ extends Expr
|
|
{
|
|
/**
|
|
* Constructs an empty() node.
|
|
*
|
|
* @param Expr $expr Expression
|
|
* @param array $attributes Additional attributes
|
|
*/
|
|
public function __construct(Expr $expr, array $attributes = array()) {
|
|
parent::__construct(
|
|
array(
|
|
'expr' => $expr
|
|
),
|
|
$attributes
|
|
);
|
|
}
|
|
} |