@@ -62,9 +62,9 @@ public function testCompileWidgetWithVariables()
62
62
if (class_exists (Nodes::class)) {
63
63
$ arguments = new Nodes ([
64
64
new NameExpression ('form ' , 0 ),
65
- new ArrayExpression ([
66
- new ConstantExpression ('foo ' , 0 ),
67
- new ConstantExpression ('bar ' , 0 ),
65
+ new ArrayExpression ([
66
+ new ConstantExpression ('foo ' , 0 ),
67
+ new ConstantExpression ('bar ' , 0 ),
68
68
], 0 ),
69
69
]);
70
70
} else {
@@ -226,9 +226,9 @@ public function testCompileLabelWithAttributes()
226
226
$ arguments = new Nodes ([
227
227
new NameExpression ('form ' , 0 ),
228
228
new ConstantExpression (null , 0 ),
229
- new ArrayExpression ([
230
- new ConstantExpression ('foo ' , 0 ),
231
- new ConstantExpression ('bar ' , 0 ),
229
+ new ArrayExpression ([
230
+ new ConstantExpression ('foo ' , 0 ),
231
+ new ConstantExpression ('bar ' , 0 ),
232
232
], 0 ),
233
233
]);
234
234
} else {
@@ -268,11 +268,11 @@ public function testCompileLabelWithLabelAndAttributes()
268
268
$ arguments = new Nodes ([
269
269
new NameExpression ('form ' , 0 ),
270
270
new ConstantExpression ('value in argument ' , 0 ),
271
- new ArrayExpression ([
272
- new ConstantExpression ('foo ' , 0 ),
273
- new ConstantExpression ('bar ' , 0 ),
274
- new ConstantExpression ('label ' , 0 ),
275
- new ConstantExpression ('value in attributes ' , 0 ),
271
+ new ArrayExpression ([
272
+ new ConstantExpression ('foo ' , 0 ),
273
+ new ConstantExpression ('bar ' , 0 ),
274
+ new ConstantExpression ('label ' , 0 ),
275
+ new ConstantExpression ('value in attributes ' , 0 ),
276
276
], 0 ),
277
277
]);
278
278
} else {
@@ -310,14 +310,14 @@ public function testCompileLabelWithLabelThatEvaluatesToNull()
310
310
if (class_exists (Nodes::class)) {
311
311
$ arguments = new Nodes ([
312
312
new NameExpression ('form ' , 0 ),
313
- new ConditionalExpression (
314
- // if
315
- new ConstantExpression (true , 0 ),
316
- // then
317
- new ConstantExpression (null , 0 ),
318
- // else
319
- new ConstantExpression (null , 0 ),
320
- 0
313
+ new ConditionalExpression (
314
+ // if
315
+ new ConstantExpression (true , 0 ),
316
+ // then
317
+ new ConstantExpression (null , 0 ),
318
+ // else
319
+ new ConstantExpression (null , 0 ),
320
+ 0
321
321
),
322
322
]);
323
323
} else {
@@ -361,20 +361,20 @@ public function testCompileLabelWithLabelThatEvaluatesToNullAndAttributes()
361
361
if (class_exists (Nodes::class)) {
362
362
$ arguments = new Nodes ([
363
363
new NameExpression ('form ' , 0 ),
364
- new ConditionalExpression (
365
- // if
366
- new ConstantExpression (true , 0 ),
367
- // then
368
- new ConstantExpression (null , 0 ),
369
- // else
370
- new ConstantExpression (null , 0 ),
371
- 0
372
- ),
373
- new ArrayExpression ([
374
- new ConstantExpression ('foo ' , 0 ),
375
- new ConstantExpression ('bar ' , 0 ),
376
- new ConstantExpression ('label ' , 0 ),
377
- new ConstantExpression ('value in attributes ' , 0 ),
364
+ new ConditionalExpression (
365
+ // if
366
+ new ConstantExpression (true , 0 ),
367
+ // then
368
+ new ConstantExpression (null , 0 ),
369
+ // else
370
+ new ConstantExpression (null , 0 ),
371
+ 0
372
+ ),
373
+ new ArrayExpression ([
374
+ new ConstantExpression ('foo ' , 0 ),
375
+ new ConstantExpression ('bar ' , 0 ),
376
+ new ConstantExpression ('label ' , 0 ),
377
+ new ConstantExpression ('value in attributes ' , 0 ),
378
378
], 0 ),
379
379
]);
380
380
} else {
0 commit comments