Mercurial > hg > isophonics-drupal-site
view vendor/nikic/php-parser/test/code/parser/stmt/function/variadicDefaultValue.test @ 16:c2387f117808
Routine composer update
author | Chris Cannam |
---|---|
date | Tue, 10 Jul 2018 15:07:59 +0100 |
parents | 5fb285c0d0e3 |
children |
line wrap: on
line source
Invalid variadic function ----- <?php function foo(...$foo = []) {} ----- Variadic parameter cannot have a default value from 2:24 to 2:25 array( 0: Stmt_Function( byRef: false name: Identifier( name: foo ) params: array( 0: Param( type: null byRef: false variadic: true var: Expr_Variable( name: foo ) default: Expr_Array( items: array( ) ) ) ) returnType: null stmts: array( ) ) )