@@ -274,7 +274,7 @@ $del."extends SomeBaseClass",
274274 -> startIfBlock(' $do_that' )
275275 -> add(' return ' )
276276 -> addValue(
277- array ( 1 , 2 , 3 ) ,
277+ varray [ 1 , 2 , 3 ] ,
278278 HackBuilderValues :: valueArray(HackBuilderValues :: export()),
279279 )
280280 -> closeStatement()
@@ -286,9 +286,9 @@ $del."extends SomeBaseClass",
286286 public function testSwitchBodyWithReturnsInCaseAndDefault (): void {
287287 // Gosh, I have no idea what names of football shots are!
288288 $players = Vector {
289- array ( ' name' => ' Ronaldo' , ' favorite_shot' => ' freeKick' ) ,
290- array ( ' name' => ' Messi' , ' favorite_shot' => ' slideKick' ) ,
291- array ( ' name' => ' Maradona' , ' favorite_shot' => ' handOfGod' ) ,
289+ darray [ ' name' => ' Ronaldo' , ' favorite_shot' => ' freeKick' ] ,
290+ darray [ ' name' => ' Messi' , ' favorite_shot' => ' slideKick' ] ,
291+ darray [ ' name' => ' Maradona' , ' favorite_shot' => ' handOfGod' ] ,
292292 };
293293
294294 $body = $this
@@ -313,9 +313,9 @@ $del."extends SomeBaseClass",
313313 public function testSwitchBodyWithBreaksInCaseAndDefault (): void {
314314 // Gosh, I have no idea what names of football shots are!
315315 $players = Vector {
316- array ( ' name' => ' Ronaldo' , ' favorite_shot' => ' freeKick' ) ,
317- array ( ' name' => ' Messi' , ' favorite_shot' => ' slideKick' ) ,
318- array ( ' name' => ' Maradona' , ' favorite_shot' => ' handOfGod' ) ,
316+ darray [ ' name' => ' Ronaldo' , ' favorite_shot' => ' freeKick' ] ,
317+ darray [ ' name' => ' Messi' , ' favorite_shot' => ' slideKick' ] ,
318+ darray [ ' name' => ' Maradona' , ' favorite_shot' => ' handOfGod' ] ,
319319 };
320320
321321 $body = $this
@@ -340,9 +340,9 @@ $del."extends SomeBaseClass",
340340 public function testSwitchBodyWithMultipleCasesWithoutBreaks (): void {
341341 // Gosh, I have no idea what names of football shots are!
342342 $players = Vector {
343- array ( ' name' => ' Ronaldo' , ' favorite_shot' => ' freeKick' ) ,
344- array ( ' name' => ' Messi' , ' favorite_shot' => ' slideKick' ) ,
345- array ( ' name' => ' Maradona' , ' favorite_shot' => ' handOfGod' ) ,
343+ darray [ ' name' => ' Ronaldo' , ' favorite_shot' => ' freeKick' ] ,
344+ darray [ ' name' => ' Messi' , ' favorite_shot' => ' slideKick' ] ,
345+ darray [ ' name' => ' Maradona' , ' favorite_shot' => ' handOfGod' ] ,
346346 };
347347
348348 $body = $this
0 commit comments