@@ -160,6 +160,7 @@ public function provideParamTagsData(): Iterator
160
160
false ,
161
161
'$foo ' ,
162
162
'' ,
163
+ false ,
163
164
),
164
165
),
165
166
]),
@@ -176,6 +177,7 @@ public function provideParamTagsData(): Iterator
176
177
false ,
177
178
'$foo ' ,
178
179
'optional description ' ,
180
+ false ,
179
181
),
180
182
),
181
183
]),
@@ -192,6 +194,7 @@ public function provideParamTagsData(): Iterator
192
194
true ,
193
195
'$foo ' ,
194
196
'' ,
197
+ false ,
195
198
),
196
199
),
197
200
]),
@@ -208,6 +211,7 @@ public function provideParamTagsData(): Iterator
208
211
true ,
209
212
'$foo ' ,
210
213
'optional description ' ,
214
+ false ,
211
215
),
212
216
),
213
217
]),
@@ -292,6 +296,7 @@ public function provideParamTagsData(): Iterator
292
296
false ,
293
297
'$foo ' ,
294
298
'optional description ' ,
299
+ false ,
295
300
),
296
301
),
297
302
]),
@@ -509,6 +514,7 @@ public function provideParamTagsData(): Iterator
509
514
'$parameters ' ,
510
515
'{ ' . PHP_EOL .
511
516
' Optional. Parameters for filtering the list of user assignments. Default empty array. ' ,
517
+ false ,
512
518
),
513
519
),
514
520
new PhpDocTextNode ('' ),
@@ -2966,6 +2972,7 @@ public function provideMultiLinePhpDocData(): iterable
2966
2972
false ,
2967
2973
'$foo ' ,
2968
2974
'1st multi world description ' ,
2975
+ false ,
2969
2976
),
2970
2977
),
2971
2978
new PhpDocTagNode (
@@ -2975,6 +2982,7 @@ public function provideMultiLinePhpDocData(): iterable
2975
2982
false ,
2976
2983
'$bar ' ,
2977
2984
'2nd multi world description ' ,
2985
+ false ,
2978
2986
),
2979
2987
),
2980
2988
]),
@@ -2995,6 +3003,7 @@ public function provideMultiLinePhpDocData(): iterable
2995
3003
'$foo ' ,
2996
3004
'1st multi world description
2997
3005
some text in the middle ' ,
3006
+ false ,
2998
3007
),
2999
3008
),
3000
3009
new PhpDocTagNode (
@@ -3004,6 +3013,7 @@ public function provideMultiLinePhpDocData(): iterable
3004
3013
false ,
3005
3014
'$bar ' ,
3006
3015
'2nd multi world description ' ,
3016
+ false ,
3007
3017
),
3008
3018
),
3009
3019
]),
@@ -3037,6 +3047,7 @@ public function provideMultiLinePhpDocData(): iterable
3037
3047
3038
3048
3039
3049
some text in the middle ' ,
3050
+ false ,
3040
3051
),
3041
3052
),
3042
3053
new PhpDocTextNode ('' ),
@@ -3051,6 +3062,7 @@ public function provideMultiLinePhpDocData(): iterable
3051
3062
3052
3063
3053
3064
test ' ,
3065
+ false ,
3054
3066
),
3055
3067
),
3056
3068
@@ -3082,6 +3094,7 @@ public function provideMultiLinePhpDocData(): iterable
3082
3094
false ,
3083
3095
'$foo ' ,
3084
3096
'@param string $bar ' ,
3097
+ false ,
3085
3098
),
3086
3099
),
3087
3100
]),
@@ -3824,6 +3837,7 @@ public function provideMultiLinePhpDocData(): iterable
3824
3837
false ,
3825
3838
'$list ' ,
3826
3839
'' ,
3840
+ false ,
3827
3841
),
3828
3842
),
3829
3843
new PhpDocTextNode ('' ),
@@ -3903,7 +3917,7 @@ public function provideMultiLinePhpDocData(): iterable
3903
3917
' */ ' ,
3904
3918
new PhpDocNode ([
3905
3919
new PhpDocTextNode ('Real description ' ),
3906
- new PhpDocTagNode ('@param ' , new ParamTagValueNode (new IdentifierTypeNode ('int ' ), false , '$a ' , '' )),
3920
+ new PhpDocTagNode ('@param ' , new ParamTagValueNode (new IdentifierTypeNode ('int ' ), false , '$a ' , '' , false )),
3907
3921
new PhpDocTextNode ('' ),
3908
3922
new PhpDocTextNode ('' ),
3909
3923
]),
@@ -3930,6 +3944,7 @@ public function provideMultiLinePhpDocData(): iterable
3930
3944
. PHP_EOL
3931
3945
. PHP_EOL
3932
3946
. 'test ' ,
3947
+ false ,
3933
3948
),
3934
3949
),
3935
3950
]),
@@ -4344,6 +4359,7 @@ public function provideExtendsTagsData(): Iterator
4344
4359
false ,
4345
4360
'$test ' ,
4346
4361
'' ,
4362
+ false ,
4347
4363
),
4348
4364
),
4349
4365
]),
@@ -4360,6 +4376,7 @@ public function provideExtendsTagsData(): Iterator
4360
4376
false ,
4361
4377
'$test ' ,
4362
4378
'some description ' ,
4379
+ false ,
4363
4380
),
4364
4381
),
4365
4382
]),
@@ -5082,6 +5099,7 @@ public function provideRealWorldExampleData(): Iterator
5082
5099
'$field_definition ' ,
5083
5100
'
5084
5101
The field definition. ' ,
5102
+ false ,
5085
5103
),
5086
5104
),
5087
5105
new PhpDocTextNode ('' ),
@@ -5158,6 +5176,7 @@ public function provideRealWorldExampleData(): Iterator
5158
5176
false ,
5159
5177
'$request ' ,
5160
5178
'- The request object ' ,
5179
+ false ,
5161
5180
),
5162
5181
),
5163
5182
new PhpDocTextNode ('' ),
@@ -5328,6 +5347,7 @@ public function provideRealWorldExampleData(): Iterator
5328
5347
false ,
5329
5348
'$foo ' ,
5330
5349
'' ,
5350
+ false ,
5331
5351
),
5332
5352
),
5333
5353
]),
@@ -5356,6 +5376,7 @@ public function provideRealWorldExampleData(): Iterator
5356
5376
false ,
5357
5377
'$foo ' ,
5358
5378
'' ,
5379
+ false ,
5359
5380
),
5360
5381
),
5361
5382
]),
@@ -5384,6 +5405,7 @@ public function provideRealWorldExampleData(): Iterator
5384
5405
false ,
5385
5406
'$foo ' ,
5386
5407
'' ,
5408
+ false ,
5387
5409
),
5388
5410
),
5389
5411
]),
@@ -5437,6 +5459,7 @@ public function provideRealWorldExampleData(): Iterator
5437
5459
false ,
5438
5460
'$pattern ' ,
5439
5461
'' ,
5462
+ false ,
5440
5463
),
5441
5464
),
5442
5465
new PhpDocTagNode (
@@ -5446,6 +5469,7 @@ public function provideRealWorldExampleData(): Iterator
5446
5469
false ,
5447
5470
'$subject ' ,
5448
5471
'' ,
5472
+ false ,
5449
5473
),
5450
5474
),
5451
5475
new PhpDocTagNode (
@@ -5455,6 +5479,7 @@ public function provideRealWorldExampleData(): Iterator
5455
5479
false ,
5456
5480
'$matches ' ,
5457
5481
'' ,
5482
+ false ,
5458
5483
),
5459
5484
),
5460
5485
new PhpDocTagNode (
@@ -5464,6 +5489,7 @@ public function provideRealWorldExampleData(): Iterator
5464
5489
false ,
5465
5490
'$flags ' ,
5466
5491
'' ,
5492
+ false ,
5467
5493
),
5468
5494
),
5469
5495
new PhpDocTagNode (
@@ -5671,6 +5697,7 @@ public function dataParseTagValue(): array
5671
5697
false ,
5672
5698
'$a ' ,
5673
5699
'' ,
5700
+ false ,
5674
5701
),
5675
5702
],
5676
5703
[
@@ -5817,6 +5844,7 @@ public function provideCommentLikeDescriptions(): Iterator
5817
5844
false ,
5818
5845
'$a ' ,
5819
5846
'// this is a description ' ,
5847
+ false ,
5820
5848
)),
5821
5849
]),
5822
5850
];
@@ -5833,6 +5861,7 @@ public function provideCommentLikeDescriptions(): Iterator
5833
5861
false ,
5834
5862
'$a ' ,
5835
5863
PHP_EOL . '// this is a comment ' ,
5864
+ false ,
5836
5865
)),
5837
5866
]),
5838
5867
];
@@ -5849,6 +5878,7 @@ public function provideCommentLikeDescriptions(): Iterator
5849
5878
false ,
5850
5879
'$a ' ,
5851
5880
PHP_EOL . PHP_EOL . '// this is a comment ' ,
5881
+ false ,
5852
5882
)),
5853
5883
]),
5854
5884
];
@@ -6720,6 +6750,7 @@ public function provideDoctrineWithoutDoctrineCheckData(): Iterator
6720
6750
false ,
6721
6751
'$z ' ,
6722
6752
'@X() ' ,
6753
+ false ,
6723
6754
)),
6724
6755
]),
6725
6756
];
@@ -6733,6 +6764,7 @@ public function provideDoctrineWithoutDoctrineCheckData(): Iterator
6733
6764
false ,
6734
6765
'$z ' ,
6735
6766
'@\X\Y() ' ,
6767
+ false ,
6736
6768
)),
6737
6769
]),
6738
6770
];
@@ -6746,6 +6778,7 @@ public function provideDoctrineWithoutDoctrineCheckData(): Iterator
6746
6778
false ,
6747
6779
'$z ' ,
6748
6780
'@X ' ,
6781
+ false ,
6749
6782
)),
6750
6783
]),
6751
6784
];
@@ -7198,8 +7231,8 @@ public function dataTextBetweenTagsBelongsToDescription(): iterable
7198
7231
' */ ' ,
7199
7232
new PhpDocNode ([
7200
7233
new PhpDocTextNode ('Real description ' ),
7201
- new PhpDocTagNode ('@param ' , new ParamTagValueNode (new IdentifierTypeNode ('int ' ), false , '$a ' , PHP_EOL . ' paramA description ' )),
7202
- new PhpDocTagNode ('@param ' , new ParamTagValueNode (new IdentifierTypeNode ('int ' ), false , '$b ' , PHP_EOL . ' paramB description ' )),
7234
+ new PhpDocTagNode ('@param ' , new ParamTagValueNode (new IdentifierTypeNode ('int ' ), false , '$a ' , PHP_EOL . ' paramA description ' , false )),
7235
+ new PhpDocTagNode ('@param ' , new ParamTagValueNode (new IdentifierTypeNode ('int ' ), false , '$b ' , PHP_EOL . ' paramB description ' , false )),
7203
7236
]),
7204
7237
];
7205
7238
@@ -7212,9 +7245,9 @@ public function dataTextBetweenTagsBelongsToDescription(): iterable
7212
7245
' */ ' ,
7213
7246
new PhpDocNode ([
7214
7247
new PhpDocTextNode ('Real description ' ),
7215
- new PhpDocTagNode ('@param ' , new ParamTagValueNode (new IdentifierTypeNode ('int ' ), false , '$a ' , '' )),
7248
+ new PhpDocTagNode ('@param ' , new ParamTagValueNode (new IdentifierTypeNode ('int ' ), false , '$a ' , '' , false )),
7216
7249
new PhpDocTextNode ('' ),
7217
- new PhpDocTagNode ('@param ' , new ParamTagValueNode (new IdentifierTypeNode ('int ' ), false , '$b ' , '' )),
7250
+ new PhpDocTagNode ('@param ' , new ParamTagValueNode (new IdentifierTypeNode ('int ' ), false , '$b ' , '' , false )),
7218
7251
]),
7219
7252
];
7220
7253
@@ -7228,7 +7261,7 @@ public function dataTextBetweenTagsBelongsToDescription(): iterable
7228
7261
' */ ' ,
7229
7262
new PhpDocNode ([
7230
7263
new PhpDocTextNode ('Real description ' ),
7231
- new PhpDocTagNode ('@param ' , new ParamTagValueNode (new IdentifierTypeNode ('int ' ), false , '$a ' , 'aaaa ' . PHP_EOL . ' bbbb ' . PHP_EOL . PHP_EOL . 'ccc ' )),
7264
+ new PhpDocTagNode ('@param ' , new ParamTagValueNode (new IdentifierTypeNode ('int ' ), false , '$a ' , 'aaaa ' . PHP_EOL . ' bbbb ' . PHP_EOL . PHP_EOL . 'ccc ' , false )),
7232
7265
]),
7233
7266
];
7234
7267
@@ -7272,7 +7305,7 @@ public function dataTextBetweenTagsBelongsToDescription(): iterable
7272
7305
new PhpDocNode ([
7273
7306
new PhpDocTextNode ('Real description ' ),
7274
7307
new PhpDocTagNode ('@ORM\Column ' , new DoctrineTagValueNode (new DoctrineAnnotation ('@ORM\Column ' , []), 'aaaa ' . PHP_EOL . ' bbbb ' . PHP_EOL . PHP_EOL . 'ccc ' )),
7275
- new PhpDocTagNode ('@param ' , new ParamTagValueNode (new IdentifierTypeNode ('int ' ), false , '$b ' , '' )),
7308
+ new PhpDocTagNode ('@param ' , new ParamTagValueNode (new IdentifierTypeNode ('int ' ), false , '$b ' , '' , false )),
7276
7309
]),
7277
7310
];
7278
7311
@@ -7285,7 +7318,7 @@ public function dataTextBetweenTagsBelongsToDescription(): iterable
7285
7318
' */ ' ,
7286
7319
new PhpDocNode ([
7287
7320
new PhpDocTextNode ('Real description ' ),
7288
- new PhpDocTagNode ('@param ' , new ParamTagValueNode (new IdentifierTypeNode ('int ' ), false , '$a ' , '' )),
7321
+ new PhpDocTagNode ('@param ' , new ParamTagValueNode (new IdentifierTypeNode ('int ' ), false , '$a ' , '' , false )),
7289
7322
new PhpDocTextNode ('' ),
7290
7323
new PhpDocTextNode ('' ),
7291
7324
]),
@@ -7301,7 +7334,7 @@ public function dataTextBetweenTagsBelongsToDescription(): iterable
7301
7334
' */ ' ,
7302
7335
new PhpDocNode ([
7303
7336
new PhpDocTextNode ('Real description ' ),
7304
- new PhpDocTagNode ('@param ' , new ParamTagValueNode (new IdentifierTypeNode ('int ' ), false , '$a ' , PHP_EOL . PHP_EOL . PHP_EOL . 'test ' )),
7337
+ new PhpDocTagNode ('@param ' , new ParamTagValueNode (new IdentifierTypeNode ('int ' ), false , '$a ' , PHP_EOL . PHP_EOL . PHP_EOL . 'test ' , false )),
7305
7338
]),
7306
7339
];
7307
7340
@@ -7313,7 +7346,7 @@ public function dataTextBetweenTagsBelongsToDescription(): iterable
7313
7346
' */ ' ,
7314
7347
new PhpDocNode ([
7315
7348
new PhpDocTextNode ('Real description ' ),
7316
- new PhpDocTagNode ('@param ' , new ParamTagValueNode (new IdentifierTypeNode ('int ' ), false , '$a ' , 'test ' )),
7349
+ new PhpDocTagNode ('@param ' , new ParamTagValueNode (new IdentifierTypeNode ('int ' ), false , '$a ' , 'test ' , false )),
7317
7350
new PhpDocTextNode ('' ),
7318
7351
]),
7319
7352
];
@@ -7327,7 +7360,7 @@ public function dataTextBetweenTagsBelongsToDescription(): iterable
7327
7360
' */ ' ,
7328
7361
new PhpDocNode ([
7329
7362
new PhpDocTextNode ('Real description ' ),
7330
- new PhpDocTagNode ('@param ' , new ParamTagValueNode (new IdentifierTypeNode ('int ' ), false , '$a ' , 'test ' )),
7363
+ new PhpDocTagNode ('@param ' , new ParamTagValueNode (new IdentifierTypeNode ('int ' ), false , '$a ' , 'test ' , false )),
7331
7364
new PhpDocTextNode ('' ),
7332
7365
new PhpDocTextNode ('' ),
7333
7366
]),
@@ -7343,7 +7376,7 @@ public function dataTextBetweenTagsBelongsToDescription(): iterable
7343
7376
' */ ' ,
7344
7377
new PhpDocNode ([
7345
7378
new PhpDocTextNode ('Real description ' ),
7346
- new PhpDocTagNode ('@param ' , new ParamTagValueNode (new IdentifierTypeNode ('int ' ), false , '$a ' , PHP_EOL . ' test ' )),
7379
+ new PhpDocTagNode ('@param ' , new ParamTagValueNode (new IdentifierTypeNode ('int ' ), false , '$a ' , PHP_EOL . ' test ' , false )),
7347
7380
new PhpDocTextNode ('' ),
7348
7381
new PhpDocTextNode ('' ),
7349
7382
]),
@@ -7360,7 +7393,7 @@ public function dataTextBetweenTagsBelongsToDescription(): iterable
7360
7393
' */ ' ,
7361
7394
new PhpDocNode ([
7362
7395
new PhpDocTextNode ('Real description ' ),
7363
- new PhpDocTagNode ('@param ' , new ParamTagValueNode (new IdentifierTypeNode ('int ' ), false , '$a ' , PHP_EOL . ' test ' )),
7396
+ new PhpDocTagNode ('@param ' , new ParamTagValueNode (new IdentifierTypeNode ('int ' ), false , '$a ' , PHP_EOL . ' test ' , false )),
7364
7397
new PhpDocTextNode ('' ),
7365
7398
new PhpDocTextNode ('' ),
7366
7399
new PhpDocTextNode ('' ),
@@ -7378,7 +7411,7 @@ public function dataTextBetweenTagsBelongsToDescription(): iterable
7378
7411
' */ ' ,
7379
7412
new PhpDocNode ([
7380
7413
new PhpDocTextNode ('Real description ' ),
7381
- new PhpDocTagNode ('@param ' , new ParamTagValueNode (new IdentifierTypeNode ('int ' ), false , '$a ' , PHP_EOL . ' test ' . PHP_EOL . PHP_EOL . 'test 2 ' )),
7414
+ new PhpDocTagNode ('@param ' , new ParamTagValueNode (new IdentifierTypeNode ('int ' ), false , '$a ' , PHP_EOL . ' test ' . PHP_EOL . PHP_EOL . 'test 2 ' , false )),
7382
7415
new PhpDocTextNode ('' ),
7383
7416
]),
7384
7417
];
@@ -7394,7 +7427,7 @@ public function dataTextBetweenTagsBelongsToDescription(): iterable
7394
7427
' */ ' ,
7395
7428
new PhpDocNode ([
7396
7429
new PhpDocTextNode ('Real description ' ),
7397
- new PhpDocTagNode ('@param ' , new ParamTagValueNode (new IdentifierTypeNode ('int ' ), false , '$a ' , PHP_EOL . ' test ' . PHP_EOL . PHP_EOL . 'test 2 ' )),
7430
+ new PhpDocTagNode ('@param ' , new ParamTagValueNode (new IdentifierTypeNode ('int ' ), false , '$a ' , PHP_EOL . ' test ' . PHP_EOL . PHP_EOL . 'test 2 ' , false )),
7398
7431
new PhpDocTextNode ('' ),
7399
7432
new PhpDocTextNode ('' ),
7400
7433
]),
0 commit comments