%PDF- %PDF-
Mini Shell

Mini Shell

Direktori : /var/www/html/kpk/api/vendor/nikic/php-parser/test/code/prettyPrinter/
Upload File :
Create Path :
Current File : /var/www/html/kpk/api/vendor/nikic/php-parser/test/code/prettyPrinter/commentsInCommaList.test

Comments in arrays and function calls
-----
<?php

$arr = [
    // Foo
    $foo,
    // Bar
    $bar,
    // Discarded
];
[
    // Foo
    $foo,
    ,
    // Bar
    $bar,
] = $arr;
foo(
    // Foo
    $foo,
    // Bar
    $bar
);
new Foo(
    // Foo
    $foo
);
-----
!!php7
$arr = [
    // Foo
    $foo,
    // Bar
    $bar,
];
[
    // Foo
    $foo,
    ,
    // Bar
    $bar,
] = $arr;
foo(
    // Foo
    $foo,
    // Bar
    $bar
);
new Foo(
    // Foo
    $foo
);

Zerion Mini Shell 1.0