@@ -57,9 +57,9 @@ public function testCompileWidgetWithVariables()
57
57
if (class_exists (Nodes::class)) {
58
58
$ arguments = new Nodes ([
59
59
new NameExpression ('form ' , 0 ),
60
- new ArrayExpression ([
61
- new ConstantExpression ('foo ' , 0 ),
62
- new ConstantExpression ('bar ' , 0 ),
60
+ new ArrayExpression ([
61
+ new ConstantExpression ('foo ' , 0 ),
62
+ new ConstantExpression ('bar ' , 0 ),
63
63
], 0 ),
64
64
]);
65
65
} else {
@@ -201,9 +201,9 @@ public function testCompileLabelWithAttributes()
201
201
$ arguments = new Nodes ([
202
202
new NameExpression ('form ' , 0 ),
203
203
new ConstantExpression (null , 0 ),
204
- new ArrayExpression ([
205
- new ConstantExpression ('foo ' , 0 ),
206
- new ConstantExpression ('bar ' , 0 ),
204
+ new ArrayExpression ([
205
+ new ConstantExpression ('foo ' , 0 ),
206
+ new ConstantExpression ('bar ' , 0 ),
207
207
], 0 ),
208
208
]);
209
209
} else {
@@ -239,11 +239,11 @@ public function testCompileLabelWithLabelAndAttributes()
239
239
$ arguments = new Nodes ([
240
240
new NameExpression ('form ' , 0 ),
241
241
new ConstantExpression ('value in argument ' , 0 ),
242
- new ArrayExpression ([
243
- new ConstantExpression ('foo ' , 0 ),
244
- new ConstantExpression ('bar ' , 0 ),
245
- new ConstantExpression ('label ' , 0 ),
246
- new ConstantExpression ('value in attributes ' , 0 ),
242
+ new ArrayExpression ([
243
+ new ConstantExpression ('foo ' , 0 ),
244
+ new ConstantExpression ('bar ' , 0 ),
245
+ new ConstantExpression ('label ' , 0 ),
246
+ new ConstantExpression ('value in attributes ' , 0 ),
247
247
], 0 ),
248
248
]);
249
249
} else {
@@ -277,14 +277,14 @@ public function testCompileLabelWithLabelThatEvaluatesToNull()
277
277
if (class_exists (Nodes::class)) {
278
278
$ arguments = new Nodes ([
279
279
new NameExpression ('form ' , 0 ),
280
- new ConditionalExpression (
281
- // if
282
- new ConstantExpression (true , 0 ),
283
- // then
284
- new ConstantExpression (null , 0 ),
285
- // else
286
- new ConstantExpression (null , 0 ),
287
- 0
280
+ new ConditionalExpression (
281
+ // if
282
+ new ConstantExpression (true , 0 ),
283
+ // then
284
+ new ConstantExpression (null , 0 ),
285
+ // else
286
+ new ConstantExpression (null , 0 ),
287
+ 0
288
288
),
289
289
]);
290
290
} else {
@@ -324,20 +324,20 @@ public function testCompileLabelWithLabelThatEvaluatesToNullAndAttributes()
324
324
if (class_exists (Nodes::class)) {
325
325
$ arguments = new Nodes ([
326
326
new NameExpression ('form ' , 0 ),
327
- new ConditionalExpression (
328
- // if
329
- new ConstantExpression (true , 0 ),
330
- // then
331
- new ConstantExpression (null , 0 ),
332
- // else
333
- new ConstantExpression (null , 0 ),
334
- 0
335
- ),
336
- new ArrayExpression ([
337
- new ConstantExpression ('foo ' , 0 ),
338
- new ConstantExpression ('bar ' , 0 ),
339
- new ConstantExpression ('label ' , 0 ),
340
- new ConstantExpression ('value in attributes ' , 0 ),
327
+ new ConditionalExpression (
328
+ // if
329
+ new ConstantExpression (true , 0 ),
330
+ // then
331
+ new ConstantExpression (null , 0 ),
332
+ // else
333
+ new ConstantExpression (null , 0 ),
334
+ 0
335
+ ),
336
+ new ArrayExpression ([
337
+ new ConstantExpression ('foo ' , 0 ),
338
+ new ConstantExpression ('bar ' , 0 ),
339
+ new ConstantExpression ('label ' , 0 ),
340
+ new ConstantExpression ('value in attributes ' , 0 ),
341
341
], 0 ),
342
342
]);
343
343
} else {
0 commit comments