forked from symfony/demo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
phpstan-baseline.neon
522 lines (418 loc) · 20.5 KB
/
phpstan-baseline.neon
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
parameters:
ignoreErrors:
-
message: "#^Method App\\\\Command\\\\AddUserCommand\\:\\:validateUserData\\(\\) has parameter \\$email with no type specified\\.$#"
count: 1
path: src/Command/AddUserCommand.php
-
message: "#^Method App\\\\Command\\\\AddUserCommand\\:\\:validateUserData\\(\\) has parameter \\$fullName with no type specified\\.$#"
count: 1
path: src/Command/AddUserCommand.php
-
message: "#^Method App\\\\Command\\\\AddUserCommand\\:\\:validateUserData\\(\\) has parameter \\$plainPassword with no type specified\\.$#"
count: 1
path: src/Command/AddUserCommand.php
-
message: "#^Method App\\\\Command\\\\AddUserCommand\\:\\:validateUserData\\(\\) has parameter \\$username with no type specified\\.$#"
count: 1
path: src/Command/AddUserCommand.php
-
message: "#^Parameter \\#1 \\$email of method App\\\\Entity\\\\User\\:\\:setEmail\\(\\) expects string, mixed given\\.$#"
count: 1
path: src/Command/AddUserCommand.php
-
message: "#^Parameter \\#1 \\$fullName of method App\\\\Entity\\\\User\\:\\:setFullName\\(\\) expects string, mixed given\\.$#"
count: 1
path: src/Command/AddUserCommand.php
-
message: "#^Parameter \\#1 \\$string of function Symfony\\\\Component\\\\String\\\\u expects string\\|null, mixed given\\.$#"
count: 1
path: src/Command/AddUserCommand.php
-
message: "#^Parameter \\#1 \\$username of method App\\\\Entity\\\\User\\:\\:setUsername\\(\\) expects string, mixed given\\.$#"
count: 1
path: src/Command/AddUserCommand.php
-
message: "#^Parameter \\#2 \\$plainPassword of method Symfony\\\\Component\\\\PasswordHasher\\\\Hasher\\\\UserPasswordHasherInterface\\:\\:hashPassword\\(\\) expects string, mixed given\\.$#"
count: 1
path: src/Command/AddUserCommand.php
-
message: "#^Call to an undefined method App\\\\Repository\\\\UserRepository\\:\\:findOneByUsername\\(\\)\\.$#"
count: 1
path: src/Command/DeleteUserCommand.php
-
message: "#^Parameter \\#1 \\$username of method App\\\\Utils\\\\Validator\\:\\:validateUsername\\(\\) expects string\\|null, mixed given\\.$#"
count: 1
path: src/Command/DeleteUserCommand.php
-
message: "#^Parameter \\#2 \\$recipient of method App\\\\Command\\\\ListUsersCommand\\:\\:sendReport\\(\\) expects string, mixed given\\.$#"
count: 1
path: src/Command/ListUsersCommand.php
-
message: "#^Parameter \\#3 \\$limit of method Doctrine\\\\ORM\\\\EntityRepository\\<mixed\\>\\:\\:findBy\\(\\) expects int\\|null, mixed given\\.$#"
count: 1
path: src/Command/ListUsersCommand.php
-
message: "#^Call to an undefined method Symfony\\\\Component\\\\Form\\\\FormInterface\\:\\:isClicked\\(\\)\\.$#"
count: 1
path: src/Controller/Admin/BlogController.php
-
message: "#^Parameter \\#1 \\$author of method App\\\\Entity\\\\Post\\:\\:setAuthor\\(\\) expects App\\\\Entity\\\\User, Symfony\\\\Component\\\\Security\\\\Core\\\\User\\\\UserInterface\\|null given\\.$#"
count: 1
path: src/Controller/Admin/BlogController.php
-
message: "#^Parameter \\#2 \\$token of method Symfony\\\\Bundle\\\\FrameworkBundle\\\\Controller\\\\AbstractController\\:\\:isCsrfTokenValid\\(\\) expects string\\|null, bool\\|float\\|int\\|string\\|null given\\.$#"
count: 1
path: src/Controller/Admin/BlogController.php
-
message: "#^Cannot call method getFullName\\(\\) on App\\\\Entity\\\\User\\|null\\.$#"
count: 1
path: src/Controller/BlogController.php
-
message: "#^Parameter \\#1 \\$author of method App\\\\Entity\\\\Comment\\:\\:setAuthor\\(\\) expects App\\\\Entity\\\\User, Symfony\\\\Component\\\\Security\\\\Core\\\\User\\\\UserInterface\\|null given\\.$#"
count: 1
path: src/Controller/BlogController.php
-
message: "#^Parameter \\#1 \\$query of method App\\\\Repository\\\\PostRepository\\:\\:findBySearchQuery\\(\\) expects string, bool\\|float\\|int\\|string\\|null given\\.$#"
count: 1
path: src/Controller/BlogController.php
-
message: "#^Parameter \\#1 \\$string of function htmlspecialchars expects string, string\\|null given\\.$#"
count: 3
path: src/Controller/BlogController.php
-
message: "#^Parameter \\#2 \\$limit of method App\\\\Repository\\\\PostRepository\\:\\:findBySearchQuery\\(\\) expects int, bool\\|float\\|int\\|string\\|null given\\.$#"
count: 1
path: src/Controller/BlogController.php
-
message: "#^Cannot call method setPassword\\(\\) on Symfony\\\\Component\\\\Security\\\\Core\\\\User\\\\UserInterface\\|null\\.$#"
count: 1
path: src/Controller/UserController.php
-
message: "#^Parameter \\#1 \\$user of method Symfony\\\\Component\\\\PasswordHasher\\\\Hasher\\\\UserPasswordHasherInterface\\:\\:hashPassword\\(\\) expects Symfony\\\\Component\\\\Security\\\\Core\\\\User\\\\PasswordAuthenticatedUserInterface, Symfony\\\\Component\\\\Security\\\\Core\\\\User\\\\UserInterface\\|null given\\.$#"
count: 1
path: src/Controller/UserController.php
-
message: "#^Parameter \\#2 \\$plainPassword of method Symfony\\\\Component\\\\PasswordHasher\\\\Hasher\\\\UserPasswordHasherInterface\\:\\:hashPassword\\(\\) expects string, mixed given\\.$#"
count: 1
path: src/Controller/UserController.php
-
message: "#^Method App\\\\DataFixtures\\\\AppFixtures\\:\\:getPhrases\\(\\) return type has no value type specified in iterable type array\\.$#"
count: 1
path: src/DataFixtures/AppFixtures.php
-
message: "#^Method App\\\\DataFixtures\\\\AppFixtures\\:\\:getPostData\\(\\) return type has no value type specified in iterable type array\\.$#"
count: 1
path: src/DataFixtures/AppFixtures.php
-
message: "#^Method App\\\\DataFixtures\\\\AppFixtures\\:\\:getRandomTags\\(\\) return type has no value type specified in iterable type array\\.$#"
count: 1
path: src/DataFixtures/AppFixtures.php
-
message: "#^Method App\\\\DataFixtures\\\\AppFixtures\\:\\:getTagData\\(\\) return type has no value type specified in iterable type array\\.$#"
count: 1
path: src/DataFixtures/AppFixtures.php
-
message: "#^Method App\\\\DataFixtures\\\\AppFixtures\\:\\:getUserData\\(\\) return type has no value type specified in iterable type array\\.$#"
count: 1
path: src/DataFixtures/AppFixtures.php
-
message: "#^Parameter \\#1 \\$author of method App\\\\Entity\\\\Comment\\:\\:setAuthor\\(\\) expects App\\\\Entity\\\\User, object given\\.$#"
count: 1
path: src/DataFixtures/AppFixtures.php
-
message: "#^Method App\\\\Entity\\\\Post\\:\\:getComments\\(\\) return type with generic interface Doctrine\\\\Common\\\\Collections\\\\Collection does not specify its types\\: TKey, T$#"
count: 1
path: src/Entity/Post.php
-
message: "#^Method App\\\\Entity\\\\Post\\:\\:getTags\\(\\) return type with generic interface Doctrine\\\\Common\\\\Collections\\\\Collection does not specify its types\\: TKey, T$#"
count: 1
path: src/Entity/Post.php
-
message: "#^Property App\\\\Entity\\\\Post\\:\\:\\$comments with generic interface Doctrine\\\\Common\\\\Collections\\\\Collection does not specify its types\\: TKey, T$#"
count: 1
path: src/Entity/Post.php
-
message: "#^Property App\\\\Entity\\\\Post\\:\\:\\$tags with generic interface Doctrine\\\\Common\\\\Collections\\\\Collection does not specify its types\\: TKey, T$#"
count: 1
path: src/Entity/Post.php
-
message: "#^Method App\\\\Entity\\\\Tag\\:\\:__toString\\(\\) should return string but returns string\\|null\\.$#"
count: 1
path: src/Entity/Tag.php
-
message: "#^Method App\\\\Entity\\\\Tag\\:\\:jsonSerialize\\(\\) should return string but returns string\\|null\\.$#"
count: 1
path: src/Entity/Tag.php
-
message: "#^Method App\\\\Entity\\\\User\\:\\:__serialize\\(\\) return type has no value type specified in iterable type array\\.$#"
count: 1
path: src/Entity/User.php
-
message: "#^Method App\\\\Entity\\\\User\\:\\:__unserialize\\(\\) has parameter \\$data with no value type specified in iterable type array\\.$#"
count: 1
path: src/Entity/User.php
-
message: "#^Method App\\\\Entity\\\\User\\:\\:getUserIdentifier\\(\\) should return string but returns string\\|null\\.$#"
count: 1
path: src/Entity/User.php
-
message: "#^Method App\\\\Entity\\\\User\\:\\:setRoles\\(\\) has parameter \\$roles with no value type specified in iterable type array\\.$#"
count: 1
path: src/Entity/User.php
-
message: "#^Property App\\\\Entity\\\\User\\:\\:\\$roles type has no value type specified in iterable type array\\.$#"
count: 1
path: src/Entity/User.php
-
message: "#^Ternary operator condition is always true\\.$#"
count: 1
path: src/EventSubscriber/CheckRequirementsSubscriber.php
-
message: "#^Cannot call method getAuthor\\(\\) on App\\\\Entity\\\\Post\\|null\\.$#"
count: 1
path: src/EventSubscriber/CommentNotificationSubscriber.php
-
message: "#^Cannot call method getEmail\\(\\) on App\\\\Entity\\\\User\\|null\\.$#"
count: 1
path: src/EventSubscriber/CommentNotificationSubscriber.php
-
message: "#^Cannot call method getSlug\\(\\) on App\\\\Entity\\\\Post\\|null\\.$#"
count: 1
path: src/EventSubscriber/CommentNotificationSubscriber.php
-
message: "#^Cannot call method getTitle\\(\\) on App\\\\Entity\\\\Post\\|null\\.$#"
count: 1
path: src/EventSubscriber/CommentNotificationSubscriber.php
-
message: "#^Parameter \\#1 \\.\\.\\.\\$addresses of method Symfony\\\\Component\\\\Mime\\\\Email\\:\\:to\\(\\) expects string\\|Symfony\\\\Component\\\\Mime\\\\Address, string\\|null given\\.$#"
count: 1
path: src/EventSubscriber/CommentNotificationSubscriber.php
-
message: "#^Property App\\\\EventSubscriber\\\\RedirectToPreferredLocaleSubscriber\\:\\:\\$locales type has no value type specified in iterable type array\\.$#"
count: 1
path: src/EventSubscriber/RedirectToPreferredLocaleSubscriber.php
-
message: "#^Method App\\\\Form\\\\DataTransformer\\\\TagArrayToStringTransformer\\:\\:reverseTransform\\(\\) return type has no value type specified in iterable type array\\.$#"
count: 1
path: src/Form/DataTransformer/TagArrayToStringTransformer.php
-
message: "#^Parameter \\#1 \\$callback of function array_map expects \\(callable\\(Symfony\\\\Component\\\\String\\\\UnicodeString\\)\\: mixed\\)\\|null, 'trim' given\\.$#"
count: 1
path: src/Form/DataTransformer/TagArrayToStringTransformer.php
-
message: "#^Parameter \\#1 \\$string of function Symfony\\\\Component\\\\String\\\\u expects string\\|null, mixed given\\.$#"
count: 2
path: src/Form/DataTransformer/TagArrayToStringTransformer.php
-
message: "#^Parameter \\#2 \\$array of function implode expects array\\<string\\>, mixed given\\.$#"
count: 1
path: src/Form/DataTransformer/TagArrayToStringTransformer.php
-
message: "#^Parameter \\#2 \\$array of function implode expects array\\|null, mixed given\\.$#"
count: 1
path: src/Form/DataTransformer/TagArrayToStringTransformer.php
-
message: "#^Parameter \\#1 \\$format of method App\\\\Utils\\\\MomentFormatConverter\\:\\:convert\\(\\) expects string, mixed given\\.$#"
count: 1
path: src/Form/Type/DateTimePickerType.php
-
message: "#^Method App\\\\Pagination\\\\Paginator\\:\\:getResults\\(\\) return type has no value type specified in iterable type Traversable\\.$#"
count: 1
path: src/Pagination/Paginator.php
-
message: "#^Parameter \\#1 \\$value of function count expects array\\|Countable, mixed given\\.$#"
count: 2
path: src/Pagination/Paginator.php
-
message: "#^Property App\\\\Pagination\\\\Paginator\\:\\:\\$results type has no value type specified in iterable type Traversable\\.$#"
count: 1
path: src/Pagination/Paginator.php
-
message: "#^Class App\\\\Repository\\\\PostRepository extends generic class Doctrine\\\\Bundle\\\\DoctrineBundle\\\\Repository\\\\ServiceEntityRepository but does not specify its types\\: T$#"
count: 1
path: src/Repository/PostRepository.php
-
message: "#^Method App\\\\Repository\\\\PostRepository\\:\\:extractSearchTerms\\(\\) return type has no value type specified in iterable type array\\.$#"
count: 1
path: src/Repository/PostRepository.php
-
message: "#^Method App\\\\Repository\\\\PostRepository\\:\\:findBySearchQuery\\(\\) should return array\\<App\\\\Entity\\\\Post\\> but returns mixed\\.$#"
count: 1
path: src/Repository/PostRepository.php
-
message: "#^Class App\\\\Repository\\\\TagRepository extends generic class Doctrine\\\\Bundle\\\\DoctrineBundle\\\\Repository\\\\ServiceEntityRepository but does not specify its types\\: T$#"
count: 1
path: src/Repository/TagRepository.php
-
message: "#^Class App\\\\Repository\\\\UserRepository extends generic class Doctrine\\\\Bundle\\\\DoctrineBundle\\\\Repository\\\\ServiceEntityRepository but does not specify its types\\: T$#"
count: 1
path: src/Repository/UserRepository.php
-
message: "#^Method App\\\\Security\\\\PostVoter\\:\\:supports\\(\\) has parameter \\$subject with no type specified\\.$#"
count: 1
path: src/Security/PostVoter.php
-
message: "#^Method App\\\\Twig\\\\AppExtension\\:\\:getLocales\\(\\) return type has no value type specified in iterable type array\\.$#"
count: 1
path: src/Twig/AppExtension.php
-
message: "#^Property App\\\\Twig\\\\AppExtension\\:\\:\\$localeCodes type has no value type specified in iterable type array\\.$#"
count: 1
path: src/Twig/AppExtension.php
-
message: "#^Property App\\\\Twig\\\\AppExtension\\:\\:\\$locales type has no value type specified in iterable type array\\.$#"
count: 1
path: src/Twig/AppExtension.php
-
message: "#^Method App\\\\Twig\\\\SourceCodeExtension\\:\\:getController\\(\\) return type has no value type specified in iterable type array\\.$#"
count: 1
path: src/Twig/SourceCodeExtension.php
-
message: "#^Method App\\\\Twig\\\\SourceCodeExtension\\:\\:getTemplateSource\\(\\) return type has no value type specified in iterable type array\\.$#"
count: 1
path: src/Twig/SourceCodeExtension.php
-
message: "#^Method App\\\\Twig\\\\SourceCodeExtension\\:\\:showSourceCode\\(\\) has parameter \\$template with no value type specified in iterable type array\\.$#"
count: 1
path: src/Twig/SourceCodeExtension.php
-
message: "#^Parameter \\#1 \\$array of function array_slice expects array, array\\<int, string\\>\\|false given\\.$#"
count: 1
path: src/Twig/SourceCodeExtension.php
-
message: "#^Parameter \\#1 \\$filename of function file expects string, string\\|false given\\.$#"
count: 1
path: src/Twig/SourceCodeExtension.php
-
message: "#^Parameter \\#1 \\$function of class ReflectionFunction constructor expects Closure\\|string, callable\\(\\)\\: mixed given\\.$#"
count: 1
path: src/Twig/SourceCodeExtension.php
-
message: "#^Property App\\\\Twig\\\\SourceCodeExtension\\:\\:\\$controller has no type specified\\.$#"
count: 1
path: src/Twig/SourceCodeExtension.php
-
message: "#^Cannot call method setApplication\\(\\) on object\\|null\\.$#"
count: 1
path: tests/Command/AbstractCommandTest.php
-
message: "#^Method App\\\\Tests\\\\Command\\\\AbstractCommandTest\\:\\:executeCommand\\(\\) has parameter \\$arguments with no value type specified in iterable type array\\.$#"
count: 1
path: tests/Command/AbstractCommandTest.php
-
message: "#^Method App\\\\Tests\\\\Command\\\\AbstractCommandTest\\:\\:executeCommand\\(\\) has parameter \\$inputs with no value type specified in iterable type array\\.$#"
count: 1
path: tests/Command/AbstractCommandTest.php
-
message: "#^Parameter \\#1 \\$command of class Symfony\\\\Component\\\\Console\\\\Tester\\\\CommandTester constructor expects Symfony\\\\Component\\\\Console\\\\Command\\\\Command, object\\|null given\\.$#"
count: 1
path: tests/Command/AbstractCommandTest.php
-
message: "#^Cannot call method findOneByEmail\\(\\) on object\\|null\\.$#"
count: 1
path: tests/Command/AddUserCommandTest.php
-
message: "#^Cannot call method isPasswordValid\\(\\) on object\\|null\\.$#"
count: 1
path: tests/Command/AddUserCommandTest.php
-
message: "#^Method App\\\\Tests\\\\Command\\\\AddUserCommandTest\\:\\:isAdminDataProvider\\(\\) return type has no value type specified in iterable type Generator\\.$#"
count: 1
path: tests/Command/AddUserCommandTest.php
-
message: "#^Property App\\\\Tests\\\\Command\\\\AddUserCommandTest\\:\\:\\$userData has no type specified\\.$#"
count: 1
path: tests/Command/AddUserCommandTest.php
-
message: "#^Yield can be used only with these return types\\: Generator, Iterator, Traversable, iterable\\.$#"
count: 2
path: tests/Command/AddUserCommandTest.php
-
message: "#^Method App\\\\Tests\\\\Command\\\\ListUsersCommandTest\\:\\:maxResultsProvider\\(\\) return type has no value type specified in iterable type Generator\\.$#"
count: 1
path: tests/Command/ListUsersCommandTest.php
-
message: "#^Yield can be used only with these return types\\: Generator, Iterator, Traversable, iterable\\.$#"
count: 2
path: tests/Command/ListUsersCommandTest.php
-
message: "#^Cannot call method find\\(\\) on object\\|null\\.$#"
count: 2
path: tests/Controller/Admin/BlogControllerTest.php
-
message: "#^Cannot call method findOneByTitle\\(\\) on object\\|null\\.$#"
count: 1
path: tests/Controller/Admin/BlogControllerTest.php
-
message: "#^Method App\\\\Tests\\\\Controller\\\\Admin\\\\BlogControllerTest\\:\\:getUrlsForRegularUsers\\(\\) return type has no value type specified in iterable type Generator\\.$#"
count: 1
path: tests/Controller/Admin/BlogControllerTest.php
-
message: "#^Parameter \\#2 \\$times of function str_repeat expects int, float given\\.$#"
count: 1
path: tests/Controller/Admin/BlogControllerTest.php
-
message: "#^Yield can be used only with these return types\\: Generator, Iterator, Traversable, iterable\\.$#"
count: 4
path: tests/Controller/Admin/BlogControllerTest.php
-
message: "#^Cannot access offset 'author' on mixed\\.$#"
count: 1
path: tests/Controller/BlogControllerTest.php
-
message: "#^Cannot access offset 'title' on mixed\\.$#"
count: 1
path: tests/Controller/BlogControllerTest.php
-
message: "#^Cannot access offset 0 on mixed\\.$#"
count: 2
path: tests/Controller/BlogControllerTest.php
-
message: "#^Parameter \\#1 \\$json of function json_decode expects string, string\\|false given\\.$#"
count: 1
path: tests/Controller/BlogControllerTest.php
-
message: "#^Parameter \\#2 \\$haystack of method PHPUnit\\\\Framework\\\\Assert\\:\\:assertCount\\(\\) expects Countable\\|iterable, mixed given\\.$#"
count: 1
path: tests/Controller/BlogControllerTest.php
-
message: "#^Cannot call method getRepository\\(\\) on object\\|null\\.$#"
count: 1
path: tests/Controller/DefaultControllerTest.php
-
message: "#^Method App\\\\Tests\\\\Controller\\\\DefaultControllerTest\\:\\:getPublicUrls\\(\\) return type has no value type specified in iterable type Generator\\.$#"
count: 1
path: tests/Controller/DefaultControllerTest.php
-
message: "#^Method App\\\\Tests\\\\Controller\\\\DefaultControllerTest\\:\\:getSecureUrls\\(\\) return type has no value type specified in iterable type Generator\\.$#"
count: 1
path: tests/Controller/DefaultControllerTest.php
-
message: "#^Yield can be used only with these return types\\: Generator, Iterator, Traversable, iterable\\.$#"
count: 7
path: tests/Controller/DefaultControllerTest.php
-
message: "#^Cannot call method findOneByEmail\\(\\) on object\\|null\\.$#"
count: 1
path: tests/Controller/UserControllerTest.php
-
message: "#^Method App\\\\Tests\\\\Controller\\\\UserControllerTest\\:\\:getUrlsForAnonymousUsers\\(\\) return type has no value type specified in iterable type Generator\\.$#"
count: 1
path: tests/Controller/UserControllerTest.php
-
message: "#^Yield can be used only with these return types\\: Generator, Iterator, Traversable, iterable\\.$#"
count: 2
path: tests/Controller/UserControllerTest.php
-
message: "#^Method App\\\\Tests\\\\Form\\\\DataTransformer\\\\TagArrayToStringTransformerTest\\:\\:getMockedTransformer\\(\\) has parameter \\$findByReturnValues with no value type specified in iterable type array\\.$#"
count: 1
path: tests/Form/DataTransformer/TagArrayToStringTransformerTest.php
-
message: "#^Method App\\\\Tests\\\\Utils\\\\ValidatorTest\\:\\:testValidateFullNameEmpty\\(\\) has no return type specified\\.$#"
count: 1
path: tests/Utils/ValidatorTest.php
-
message: "#^Property App\\\\Tests\\\\Utils\\\\ValidatorTest\\:\\:\\$validator has no type specified\\.$#"
count: 1
path: tests/Utils/ValidatorTest.php