@@ -105,7 +105,9 @@ public static function dataNamedFunctionCallArguments()
105
105
],
106
106
[
107
107
'/* testMixedPositionalAndNamedArgs */ ' ,
108
- ['double_encode ' ],
108
+ [
109
+ 'double_encode ' ,
110
+ ],
109
111
],
110
112
[
111
113
'/* testNestedFunctionCallOuter */ ' ,
@@ -117,11 +119,15 @@ public static function dataNamedFunctionCallArguments()
117
119
],
118
120
[
119
121
'/* testNestedFunctionCallInner1 */ ' ,
120
- ['skip ' ],
122
+ [
123
+ 'skip ' ,
124
+ ],
121
125
],
122
126
[
123
127
'/* testNestedFunctionCallInner2 */ ' ,
124
- ['array_or_countable ' ],
128
+ [
129
+ 'array_or_countable ' ,
130
+ ],
125
131
],
126
132
[
127
133
'/* testNamespaceRelativeFunction */ ' ,
@@ -212,23 +218,33 @@ public static function dataNamedFunctionCallArguments()
212
218
// Coding errors which should still be handled.
213
219
[
214
220
'/* testCompileErrorNamedBeforePositional */ ' ,
215
- ['param ' ],
221
+ [
222
+ 'param ' ,
223
+ ],
216
224
],
217
225
[
218
226
'/* testDuplicateName1 */ ' ,
219
- ['param ' ],
227
+ [
228
+ 'param ' ,
229
+ ],
220
230
],
221
231
[
222
232
'/* testDuplicateName2 */ ' ,
223
- ['param ' ],
233
+ [
234
+ 'param ' ,
235
+ ],
224
236
],
225
237
[
226
238
'/* testIncorrectOrderWithVariadic */ ' ,
227
- ['start_index ' ],
239
+ [
240
+ 'start_index ' ,
241
+ ],
228
242
],
229
243
[
230
244
'/* testCompileErrorIncorrectOrderWithVariadic */ ' ,
231
- ['param ' ],
245
+ [
246
+ 'param ' ,
247
+ ],
232
248
],
233
249
[
234
250
'/* testParseErrorNoValue */ ' ,
@@ -239,19 +255,27 @@ public static function dataNamedFunctionCallArguments()
239
255
],
240
256
[
241
257
'/* testParseErrorExit */ ' ,
242
- ['status ' ],
258
+ [
259
+ 'status ' ,
260
+ ],
243
261
],
244
262
[
245
263
'/* testParseErrorEmpty */ ' ,
246
- ['variable ' ],
264
+ [
265
+ 'variable ' ,
266
+ ],
247
267
],
248
268
[
249
269
'/* testParseErrorEval */ ' ,
250
- ['code ' ],
270
+ [
271
+ 'code ' ,
272
+ ],
251
273
],
252
274
[
253
275
'/* testParseErrorArbitraryParentheses */ ' ,
254
- ['something ' ],
276
+ [
277
+ 'something ' ,
278
+ ],
255
279
],
256
280
];
257
281
0 commit comments