Update Composer, update everything
This commit is contained in:
parent
ea3e94409f
commit
dda5c284b6
19527 changed files with 1135420 additions and 351004 deletions
26
vendor/nikic/php-parser/test/code/parser/stmt/unset.test
vendored
Normal file
26
vendor/nikic/php-parser/test/code/parser/stmt/unset.test
vendored
Normal file
|
@ -0,0 +1,26 @@
|
|||
Unset
|
||||
-----
|
||||
<?php
|
||||
|
||||
unset($a);
|
||||
unset($b, $c);
|
||||
-----
|
||||
array(
|
||||
0: Stmt_Unset(
|
||||
vars: array(
|
||||
0: Expr_Variable(
|
||||
name: a
|
||||
)
|
||||
)
|
||||
)
|
||||
1: Stmt_Unset(
|
||||
vars: array(
|
||||
0: Expr_Variable(
|
||||
name: b
|
||||
)
|
||||
1: Expr_Variable(
|
||||
name: c
|
||||
)
|
||||
)
|
||||
)
|
||||
)
|
Reference in a new issue