PHP Classes

File: vendor/nikic/php-parser/test/code/prettyPrinter/commentsInCommaList.test

Recommend this page to a friend!
  Packages of Abed Nego Ragil Putra   Laravel Blogging Platform   vendor/nikic/php-parser/test/code/prettyPrinter/commentsInCommaList.test   Download  
File: vendor/nikic/php-parser/test/code/prettyPrinter/commentsInCommaList.test
Role: Example script
Content type: text/plain
Description: Example script
Class: Laravel Blogging Platform
Manage blog posts using Laravel and Bootstrap
Author: By
Last change:
Date: 8 months ago
Size: 470 bytes
 

Contents

Class file image Download
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
);