view vendor/nikic/php-parser/test/code/parser/stmt/unset.test @ 17:129ea1e6d783

Update, including to Drupal core 8.6.10
author Chris Cannam
date Thu, 28 Feb 2019 13:21:36 +0000
parents 4c8ae668cc8c
children
line wrap: on
line source
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
            )
        )
    )
)