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