Skip to content

Commit b6b518f

Browse files
PHPCS fixes
1 parent 41570d2 commit b6b518f

File tree

1 file changed

+15
-15
lines changed

1 file changed

+15
-15
lines changed

tests/Core/Tokenizers/PHP/BackfillAsymmetricVisibilityTest.php

+15-15
Original file line numberDiff line numberDiff line change
@@ -243,85 +243,85 @@ public static function dataAsymmetricVisibility()
243243
public static function dataNotAsymmetricVisibility()
244244
{
245245
return [
246-
'property, invalid case 1' => [
246+
'property, invalid case 1' => [
247247
'testMarker' => '/* testInvalidUnsetProperty */',
248248
'testType' => 'T_PUBLIC',
249249
'testContent' => 'public',
250250
],
251-
'property, invalid case 2' => [
251+
'property, invalid case 2' => [
252252
'testMarker' => '/* testInvalidSpaceProperty */',
253253
'testType' => 'T_PUBLIC',
254254
'testContent' => 'public',
255255
],
256-
'property, invalid case 3' => [
256+
'property, invalid case 3' => [
257257
'testMarker' => '/* testInvalidCommentProperty */',
258258
'testType' => 'T_PROTECTED',
259259
'testContent' => 'protected',
260260
],
261-
'property, invalid case 4' => [
261+
'property, invalid case 4' => [
262262
'testMarker' => '/* testInvalidGetProperty */',
263263
'testType' => 'T_PRIVATE',
264264
'testContent' => 'private',
265265
],
266-
'property, invalid case 5' => [
266+
'property, invalid case 5' => [
267267
'testMarker' => '/* testInvalidNoParenProperty */',
268268
'testType' => 'T_PRIVATE',
269269
'testContent' => 'private',
270270
],
271271

272272
// Constructor property promotion.
273-
'promotion, invalid case 1' => [
273+
'promotion, invalid case 1' => [
274274
'testMarker' => '/* testInvalidUnsetCPP */',
275275
'testType' => 'T_PUBLIC',
276276
'testContent' => 'public',
277277
],
278-
'promotion, invalid case 2' => [
278+
'promotion, invalid case 2' => [
279279
'testMarker' => '/* testInvalidSpaceCPP */',
280280
'testType' => 'T_PUBLIC',
281281
'testContent' => 'public',
282282
],
283-
'promotion, invalid case 3' => [
283+
'promotion, invalid case 3' => [
284284
'testMarker' => '/* testInvalidCommentCPP */',
285285
'testType' => 'T_PROTECTED',
286286
'testContent' => 'protected',
287287
],
288-
'promotion, invalid case 4' => [
288+
'promotion, invalid case 4' => [
289289
'testMarker' => '/* testInvalidGetCPP */',
290290
'testType' => 'T_PRIVATE',
291291
'testContent' => 'private',
292292
],
293-
'promotion, invalid case 5' => [
293+
'promotion, invalid case 5' => [
294294
'testMarker' => '/* testInvalidNoParenCPP */',
295295
'testType' => 'T_PRIVATE',
296296
'testContent' => 'private',
297297
],
298298

299299
// Context sensitivitiy.
300-
'protected as function name' => [
300+
'protected as function name' => [
301301
'testMarker' => '/* testProtectedFunctionName */',
302302
'testType' => 'T_STRING',
303303
'testContent' => 'protected',
304304
],
305-
'public as function name' => [
305+
'public as function name' => [
306306
'testMarker' => '/* testPublicFunctionName */',
307307
'testType' => 'T_STRING',
308308
'testContent' => 'public',
309309
],
310-
'set as parameter type' => [
310+
'set as parameter type' => [
311311
'testMarker' => '/* testSetParameterType */',
312312
'testType' => 'T_STRING',
313313
'testContent' => 'Set',
314314
],
315315

316316
// Live coding.
317-
'live coding' => [
317+
'live coding' => [
318318
'testMarker' => '/* testLiveCoding */',
319319
'testType' => 'T_PRIVATE',
320320
'testContent' => 'private',
321321
],
322322
];
323323

324-
}//end dataAsymmetricVisibility()
324+
}//end dataNotAsymmetricVisibility()
325325

326326

327327
}//end class

0 commit comments

Comments
 (0)