-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathphpstan-baseline.neon
727 lines (607 loc) · 24.3 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
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
parameters:
ignoreErrors:
-
message: '#^Cannot cast mixed to string\.$#'
identifier: cast.string
count: 1
path: src/AbstractController.php
-
message: '#^Method kissj\\AbstractController\:\:getParameterFromBody\(\) should return string but returns mixed\.$#'
identifier: return.type
count: 1
path: src/AbstractController.php
-
message: '#^Method kissj\\AbstractController\:\:getParameterFromQuery\(\) should return string but returns mixed\.$#'
identifier: return.type
count: 1
path: src/AbstractController.php
-
message: '#^Parameter \#2 \$data of method Slim\\Interfaces\\RouteParserInterface\:\:urlFor\(\) expects array\<string, string\>, array\<string\> given\.$#'
identifier: argument.type
count: 2
path: src/AbstractController.php
-
message: '#^Parameter \#1 \$basePath of method Slim\\Routing\\RouteCollectorProxy\<Psr\\Container\\ContainerInterface\|null\>\:\:setBasePath\(\) expects string, mixed given\.$#'
identifier: argument.type
count: 1
path: src/Application/ApplicationGetter.php
-
message: '#^PHPDoc tag @var with type Psr\\Http\\Message\\StreamInterface\|null is not subtype of native type Psr\\Http\\Message\\StreamInterface\.$#'
identifier: varTag.nativeType
count: 1
path: src/Application/CsvParser.php
-
message: '#^PHPDoc tag @var with type array\<h4kuna\\Fio\\Read\\Transaction\> is not subtype of native type h4kuna\\Fio\\Read\\TransactionList\.$#'
identifier: varTag.nativeType
count: 1
path: src/BankPayment/FioBankPaymentService.php
-
message: '#^Method obtainAllDealsForParticipant always return list, but is marked as array\<kissj\\Deal\\Deal\>$#'
identifier: shipmonk.returnListNotUsed
count: 1
path: src/Deal/DealRepository.php
-
message: '#^Binary operation "\." between ''unknown event type\: '' and mixed results in an error\.$#'
identifier: binaryOp.invalid
count: 1
path: src/Event/Event.php
-
message: '#^Method getAvailableRoles always return list, but is marked as array\<kissj\\Participant\\ParticipantRole\>$#'
identifier: shipmonk.returnListNotUsed
count: 1
path: src/Event/Event.php
-
message: '#^Method getFoodOptions always return list, but is marked as array\<string\>$#'
identifier: shipmonk.returnListNotUsed
count: 1
path: src/Event/EventType/Aqua/EventTypeAqua.php
-
message: '#^Method getParticipantCountries always return list, but is marked as array\<string\>$#'
identifier: shipmonk.returnListNotUsed
count: 1
path: src/Event/EventType/Aqua/EventTypeAqua.php
-
message: '#^Method getPositionOptions always return list, but is marked as array\<string\>$#'
identifier: shipmonk.returnListNotUsed
count: 1
path: src/Event/EventType/Aqua/EventTypeAqua.php
-
message: '#^PHPDoc tag @var with type kissj\\Participant\\Participant is not subtype of type kissj\\Participant\\Patrol\\PatrolLeader\|kissj\\Participant\\Patrol\\PatrolParticipant\.$#'
identifier: varTag.type
count: 1
path: src/Event/EventType/Aqua/EventTypeAqua.php
-
message: '#^Method getContingents always return list, but is marked as array\<string\>$#'
identifier: shipmonk.returnListNotUsed
count: 1
path: src/Event/EventType/Cej/EventTypeCej.php
-
message: '#^Method getEventDeals always return list, but is marked as array\<kissj\\Deal\\EventDeal\>$#'
identifier: shipmonk.returnListNotUsed
count: 1
path: src/Event/EventType/Cej/EventTypeCej.php
-
message: '#^Method getFoodOptions always return list, but is marked as array\<string\>$#'
identifier: shipmonk.returnListNotUsed
count: 1
path: src/Event/EventType/Cej/EventTypeCej.php
-
message: '#^Method getParticipantCountries always return list, but is marked as array\<string\>$#'
identifier: shipmonk.returnListNotUsed
count: 1
path: src/Event/EventType/Cej/EventTypeCej.php
-
message: '#^Method getFoodOptions always return list, but is marked as array\<string\>$#'
identifier: shipmonk.returnListNotUsed
count: 1
path: src/Event/EventType/EventType.php
-
message: '#^Method getParticipantCountries always return list, but is marked as array\<string\>$#'
identifier: shipmonk.returnListNotUsed
count: 1
path: src/Event/EventType/EventType.php
-
message: '#^Method getPositionOptions always return list, but is marked as array\<string\>$#'
identifier: shipmonk.returnListNotUsed
count: 1
path: src/Event/EventType/EventType.php
-
message: '#^Method getFoodOptions always return list, but is marked as array\<string\>$#'
identifier: shipmonk.returnListNotUsed
count: 1
path: src/Event/EventType/Navigamus/EventTypeNavigamus.php
-
message: '#^Method getPositionOptions always return list, but is marked as array\<string\>$#'
identifier: shipmonk.returnListNotUsed
count: 1
path: src/Event/EventType/Navigamus/EventTypeNavigamus.php
-
message: '#^Method getFoodOptions always return list, but is marked as array\<string\>$#'
identifier: shipmonk.returnListNotUsed
count: 1
path: src/Event/EventType/Nsj/EventTypeNsj.php
-
message: '#^Method getPositionOptions always return list, but is marked as array\<string\>$#'
identifier: shipmonk.returnListNotUsed
count: 1
path: src/Event/EventType/Nsj/EventTypeNsj.php
-
message: '#^Method getContingents always return list, but is marked as array\<string\>$#'
identifier: shipmonk.returnListNotUsed
count: 1
path: src/Event/EventType/Obrok/EventTypeObrok.php
-
message: '#^Method getEventDeals always return list, but is marked as array\<kissj\\Deal\\EventDeal\>$#'
identifier: shipmonk.returnListNotUsed
count: 1
path: src/Event/EventType/Obrok/EventTypeObrok.php
-
message: '#^Method getFoodOptions always return list, but is marked as array\<string\>$#'
identifier: shipmonk.returnListNotUsed
count: 1
path: src/Event/EventType/Obrok/EventTypeObrok.php
-
message: '#^Method getPositionOptions always return list, but is marked as array\<string\>$#'
identifier: shipmonk.returnListNotUsed
count: 1
path: src/Event/EventType/Wsj/EventTypeWsj.php
-
message: '#^Method allRegistrationDataToCSV always return list, but is marked as array\<int, array\<int, string\>\>$#'
identifier: shipmonk.returnListNotUsed
count: 1
path: src/Export/ExportService.php
-
message: '#^Method healthDataToCSV always return list, but is marked as array\<int, array\<int, string\>\>$#'
identifier: shipmonk.returnListNotUsed
count: 1
path: src/Export/ExportService.php
-
message: '#^Method paidContactDataToCSV always return list, but is marked as array\<int, array\<int, string\>\>$#'
identifier: shipmonk.returnListNotUsed
count: 1
path: src/Export/ExportService.php
-
message: '#^Using nullsafe property access "\?\-\>email" on left side of \?\? is unnecessary\. Use \-\> instead\.$#'
identifier: nullsafe.neverNull
count: 1
path: src/Export/ExportService.php
-
message: '#^Using nullsafe property access "\?\-\>value" on left side of \?\? is unnecessary\. Use \-\> instead\.$#'
identifier: nullsafe.neverNull
count: 3
path: src/Export/ExportService.php
-
message: '#^Cannot access offset ''ContentType'' on mixed\.$#'
identifier: offsetAccess.nonOffsetAccessible
count: 1
path: src/FileHandler/S3BucketSaveFileHandler.php
-
message: '#^Parameter \#2 \$mimeContentType of class kissj\\FileHandler\\File constructor expects string, mixed given\.$#'
identifier: argument.type
count: 1
path: src/FileHandler/S3BucketSaveFileHandler.php
-
message: '#^Cannot access an offset on mixed\.$#'
identifier: offsetAccess.nonOffsetAccessible
count: 4
path: src/FlashMessages/FlashMessagesBySession.php
-
message: '#^Method kissj\\FlashMessages\\FlashMessagesBySession\:\:dumpMessagesIntoArray\(\) should return array\<string\> but returns mixed\.$#'
identifier: return.type
count: 1
path: src/FlashMessages/FlashMessagesBySession.php
-
message: '#^PHPDoc tag @var with type array\<array\<string, string\>\> is not subtype of native type Iterator\.$#'
identifier: varTag.nativeType
count: 1
path: src/Import/ImportSrs.php
-
message: '#^Method getEmbeddedQr always return list, but is marked as array\<kissj\\Mailer\\EmbedDTO\>$#'
identifier: shipmonk.returnListNotUsed
count: 1
path: src/Mailer/Mailer.php
-
message: '#^Method getAvailableLanguages always return list, but is marked as array\<string\>$#'
identifier: shipmonk.returnListNotUsed
count: 1
path: src/Middleware/LocalizationResolverMiddleware.php
-
message: '#^Binary operation "\." between ''Got unknown…'' and mixed results in an error\.$#'
identifier: binaryOp.invalid
count: 1
path: src/Orm/Mapper.php
-
message: '#^Binary operation "\." between non\-falsy\-string and mixed results in an error\.$#'
identifier: binaryOp.invalid
count: 1
path: src/Orm/Mapper.php
-
message: '#^Method findBy always return list, but is marked as array\<LeanMapper\\Entity\>$#'
identifier: shipmonk.returnListNotUsed
count: 1
path: src/Orm/Repository.php
-
message: '#^Parameter \#1 \$dibiRow of method LeanMapper\\Repository\:\:createEntity\(\) expects Dibi\\Row&iterable\<string, mixed\>, mixed given\.$#'
identifier: argument.type
count: 1
path: src/Orm/Repository.php
-
message: '#^Using nullsafe property access "\?\-\>value" on left side of \?\? is unnecessary\. Use \-\> instead\.$#'
identifier: nullsafe.neverNull
count: 1
path: src/Participant/Admin/AdminController.php
-
message: '#^Using nullsafe property access "\?\-\>id" on left side of \?\? is unnecessary\. Use \-\> instead\.$#'
identifier: nullsafe.neverNull
count: 1
path: src/Participant/Admin/AdminService.php
-
message: '#^Cannot cast mixed to string\.$#'
identifier: cast.string
count: 1
path: src/Participant/Participant.php
-
message: '#^Class kissj\\Participant\\Participant has PHPDoc tag @property for property \$preferredPosition with no value type specified in iterable type array\.$#'
identifier: missingType.iterableValue
count: 1
path: src/Participant/Participant.php
-
message: '#^Method getPreferredPosition always return list, but is marked as array\<string\>$#'
identifier: shipmonk.returnListNotUsed
count: 1
path: src/Participant/Participant.php
-
message: '#^Method getTshirtParsed always return list, but is marked as array\<string\>$#'
identifier: shipmonk.returnListNotUsed
count: 1
path: src/Participant/Participant.php
-
message: '#^Method kissj\\Participant\\Participant\:\:getTshirt\(\) should return string\|null but returns mixed\.$#'
identifier: return.type
count: 1
path: src/Participant/Participant.php
-
message: '#^Binary operation "\+\=" between \(float\|int\) and mixed results in an error\.$#'
identifier: assignOp.invalid
count: 1
path: src/Participant/ParticipantRepository.php
-
message: '#^Method kissj\\Participant\\ParticipantRepository\:\:getFoodStatistic\(\) should return array\<string, int\> but returns array\<\(float\|int\)\>\.$#'
identifier: return.type
count: 1
path: src/Participant/ParticipantRepository.php
-
message: '#^Method kissj\\Participant\\ParticipantRepository\:\:getRowsForEntryParticipant\(\) should return array\<Dibi\\Row\> but returns array\.$#'
identifier: return.type
count: 1
path: src/Participant/ParticipantRepository.php
-
message: '#^Method kissj\\Participant\\ParticipantRepository\:\:getRowsForEntryPatrolParticipant\(\) should return array\<Dibi\\Row\> but returns array\.$#'
identifier: return.type
count: 1
path: src/Participant/ParticipantRepository.php
-
message: '#^Method sortParticipantsBasedOnTroopOrPatrol always return list, but is marked as array\<kissj\\Participant\\Participant\>$#'
identifier: shipmonk.returnListNotUsed
count: 1
path: src/Participant/ParticipantRepository.php
-
message: '#^Parameter \#1 \$openCount of class kissj\\Participant\\Admin\\StatisticUserValueObject constructor expects int, mixed given\.$#'
identifier: argument.type
count: 1
path: src/Participant/ParticipantRepository.php
-
message: '#^Parameter \#1 \$rows of method LeanMapper\\Repository\:\:createEntities\(\) expects array\<Dibi\\Row\>, array given\.$#'
identifier: argument.type
count: 2
path: src/Participant/ParticipantRepository.php
-
message: '#^Parameter \#2 \$closedCount of class kissj\\Participant\\Admin\\StatisticUserValueObject constructor expects int, mixed given\.$#'
identifier: argument.type
count: 1
path: src/Participant/ParticipantRepository.php
-
message: '#^Parameter \#3 \$approvedCount of class kissj\\Participant\\Admin\\StatisticUserValueObject constructor expects int, mixed given\.$#'
identifier: argument.type
count: 1
path: src/Participant/ParticipantRepository.php
-
message: '#^Parameter \#4 \$paidCount of class kissj\\Participant\\Admin\\StatisticUserValueObject constructor expects int, mixed given\.$#'
identifier: argument.type
count: 1
path: src/Participant/ParticipantRepository.php
-
message: '#^PHPDoc tag @var with type array\<string\> is not subtype of type array\{\}\|string\.$#'
identifier: varTag.type
count: 1
path: src/Participant/ParticipantService.php
-
message: '#^Parameter \#1 \$params of method kissj\\Participant\\ParticipantService\:\:addParamsIntoPerson\(\) expects array\<string, string\|null\>, array\<string\> given\.$#'
identifier: argument.type
count: 1
path: src/Participant/ParticipantService.php
-
message: '#^Parameter \#1 \$rows of method LeanMapper\\Repository\:\:createEntities\(\) expects array\<Dibi\\Row\>, array given\.$#'
identifier: argument.type
count: 1
path: src/Participant/Troop/TroopParticipantRepository.php
-
message: '#^Parameter \#1 \$rows of method LeanMapper\\Repository\:\:createEntities\(\) expects array\<Dibi\\Row\>, array given\.$#'
identifier: argument.type
count: 1
path: src/Payment/PaymentRepository.php
-
message: '#^Method kissj\\PdfGenerator\\mPdfGenerator\:\:generatePatrolRoster\(\) should return string but returns mixed\.$#'
identifier: return.type
count: 1
path: src/PdfGenerator/mPdfGenerator.php
-
message: '#^Method kissj\\PdfGenerator\\mPdfGenerator\:\:generatePdfReceipt\(\) should return string but returns mixed\.$#'
identifier: return.type
count: 1
path: src/PdfGenerator/mPdfGenerator.php
-
message: '#^Binary operation "\." between ''Got unknown…'' and mixed results in an error\.$#'
identifier: binaryOp.invalid
count: 1
path: src/Settings/Settings.php
-
message: '#^Binary operation "\." between ''kissj@'' and mixed results in an error\.$#'
identifier: binaryOp.invalid
count: 1
path: src/Settings/Settings.php
-
message: '#^Cannot cast mixed to float\.$#'
identifier: cast.double
count: 1
path: src/Settings/Settings.php
-
message: '#^Cannot cast mixed to int\.$#'
identifier: cast.int
count: 1
path: src/Settings/Settings.php
-
message: '#^Parameter \#1 \$appId of class kissj\\Skautis\\SkautisFactory constructor expects string, mixed given\.$#'
identifier: argument.type
count: 1
path: src/Settings/Settings.php
-
message: '#^Parameter \#1 \$locale of class Symfony\\Component\\Translation\\Translator constructor expects string, mixed given\.$#'
identifier: argument.type
count: 1
path: src/Settings/Settings.php
-
message: '#^Parameter \#1 \$locales of method Symfony\\Component\\Translation\\Translator\:\:setFallbackLocales\(\) expects array\<string\>, array\<int, mixed\> given\.$#'
identifier: argument.type
count: 1
path: src/Settings/Settings.php
-
message: '#^Parameter \#1 \$mailDsn of class kissj\\Mailer\\MailerSettings constructor expects string, mixed given\.$#'
identifier: argument.type
count: 1
path: src/Settings/Settings.php
-
message: '#^Parameter \#1 \$name of class Monolog\\Logger constructor expects string, mixed given\.$#'
identifier: argument.type
count: 1
path: src/Settings/Settings.php
-
message: '#^Parameter \#2 \$host of class kissj\\Session\\RedisSessionHandler constructor expects string, mixed given\.$#'
identifier: argument.type
count: 1
path: src/Settings/Settings.php
-
message: '#^Parameter \#2 \$level of class Monolog\\Handler\\StreamHandler constructor expects 100\|200\|250\|300\|400\|500\|550\|600\|''ALERT''\|''alert''\|''CRITICAL''\|''critical''\|''DEBUG''\|''debug''\|''EMERGENCY''\|''emergency''\|''ERROR''\|''error''\|''INFO''\|''info''\|''NOTICE''\|''notice''\|''WARNING''\|''warning''\|Monolog\\Level, mixed given\.$#'
identifier: argument.type
count: 1
path: src/Settings/Settings.php
-
message: '#^Parameter \#2 \$s3bucket of class kissj\\FileHandler\\S3BucketSaveFileHandler constructor expects string, mixed given\.$#'
identifier: argument.type
count: 1
path: src/Settings/Settings.php
-
message: '#^Parameter \#2 \$sendMailToMainRecipient of class kissj\\Mailer\\MailerSettings constructor expects string, mixed given\.$#'
identifier: argument.type
count: 1
path: src/Settings/Settings.php
-
message: '#^Parameter \#4 \$password of class kissj\\Session\\RedisSessionHandler constructor expects string, mixed given\.$#'
identifier: argument.type
count: 1
path: src/Settings/Settings.php
-
message: '#^Method getTests always return list, but is marked as array\<Twig\\TwigTest\>$#'
identifier: shipmonk.returnListNotUsed
count: 1
path: src/Settings/TwigExtension.php
-
message: '#^Parameter \#1 \$parsedBody of method kissj\\Skautis\\SkautisService\:\:saveDataFromPost\(\) expects array\<string, string\>, array given\.$#'
identifier: argument.type
count: 1
path: src/Skautis/SkautisController.php
-
message: '#^Cannot access property \$Birthday on mixed\.$#'
identifier: property.nonObject
count: 1
path: src/Skautis/SkautisService.php
-
message: '#^Cannot access property \$City on mixed\.$#'
identifier: property.nonObject
count: 1
path: src/Skautis/SkautisService.php
-
message: '#^Cannot access property \$Email on mixed\.$#'
identifier: property.nonObject
count: 1
path: src/Skautis/SkautisService.php
-
message: '#^Cannot access property \$FirstName on mixed\.$#'
identifier: property.nonObject
count: 1
path: src/Skautis/SkautisService.php
-
message: '#^Cannot access property \$HasMembership on mixed\.$#'
identifier: property.nonObject
count: 2
path: src/Skautis/SkautisService.php
-
message: '#^Cannot access property \$ID on mixed\.$#'
identifier: property.nonObject
count: 1
path: src/Skautis/SkautisService.php
-
message: '#^Cannot access property \$ID_Person on mixed\.$#'
identifier: property.nonObject
count: 1
path: src/Skautis/SkautisService.php
-
message: '#^Cannot access property \$LastName on mixed\.$#'
identifier: property.nonObject
count: 1
path: src/Skautis/SkautisService.php
-
message: '#^Cannot access property \$MembershipAllOutput on mixed\.$#'
identifier: property.nonObject
count: 1
path: src/Skautis/SkautisService.php
-
message: '#^Cannot access property \$NickName on mixed\.$#'
identifier: property.nonObject
count: 1
path: src/Skautis/SkautisService.php
-
message: '#^Cannot access property \$Phone on mixed\.$#'
identifier: property.nonObject
count: 1
path: src/Skautis/SkautisService.php
-
message: '#^Cannot access property \$PostCode on mixed\.$#'
identifier: property.nonObject
count: 1
path: src/Skautis/SkautisService.php
-
message: '#^Cannot access property \$RegistrationNumber on mixed\.$#'
identifier: property.nonObject
count: 1
path: src/Skautis/SkautisService.php
-
message: '#^Cannot access property \$Street on mixed\.$#'
identifier: property.nonObject
count: 1
path: src/Skautis/SkautisService.php
-
message: '#^Cannot access property \$Unit on mixed\.$#'
identifier: property.nonObject
count: 1
path: src/Skautis/SkautisService.php
-
message: '#^Cannot access property \$UserName on mixed\.$#'
identifier: property.nonObject
count: 1
path: src/Skautis/SkautisService.php
-
message: '#^Cannot call method MembershipAllPerson\(\) on mixed\.$#'
identifier: method.nonObject
count: 1
path: src/Skautis/SkautisService.php
-
message: '#^Cannot call method UserDetail\(\) on mixed\.$#'
identifier: method.nonObject
count: 1
path: src/Skautis/SkautisService.php
-
message: '#^Cannot call method UserDetailExternal\(\) on mixed\.$#'
identifier: method.nonObject
count: 1
path: src/Skautis/SkautisService.php
-
message: '#^Parameter \#1 \$datetime of static method kissj\\Application\\DateTimeUtils\:\:getDateTime\(\) expects string, mixed given\.$#'
identifier: argument.type
count: 1
path: src/Skautis/SkautisService.php
-
message: '#^Parameter \#1 \$skautisId of class kissj\\Skautis\\SkautisUserData constructor expects int, mixed given\.$#'
identifier: argument.type
count: 1
path: src/Skautis/SkautisService.php
-
message: '#^Parameter \#10 \$street of class kissj\\Skautis\\SkautisUserData constructor expects string, mixed given\.$#'
identifier: argument.type
count: 1
path: src/Skautis/SkautisService.php
-
message: '#^Parameter \#11 \$city of class kissj\\Skautis\\SkautisUserData constructor expects string, mixed given\.$#'
identifier: argument.type
count: 1
path: src/Skautis/SkautisService.php
-
message: '#^Parameter \#12 \$postCode of class kissj\\Skautis\\SkautisUserData constructor expects string, mixed given\.$#'
identifier: argument.type
count: 1
path: src/Skautis/SkautisService.php
-
message: '#^Parameter \#13 \$hasMembership of class kissj\\Skautis\\SkautisUserData constructor expects bool, mixed given\.$#'
identifier: argument.type
count: 1
path: src/Skautis/SkautisService.php
-
message: '#^Parameter \#2 \$skautisUserName of class kissj\\Skautis\\SkautisUserData constructor expects string, mixed given\.$#'
identifier: argument.type
count: 1
path: src/Skautis/SkautisService.php
-
message: '#^Parameter \#2 \.\.\.\$values of function sprintf expects bool\|float\|int\|string\|null, mixed given\.$#'
identifier: argument.type
count: 1
path: src/Skautis/SkautisService.php
-
message: '#^Parameter \#3 \$skautisIdPerson of class kissj\\Skautis\\SkautisUserData constructor expects int, mixed given\.$#'
identifier: argument.type
count: 1
path: src/Skautis/SkautisService.php
-
message: '#^Parameter \#3 \.\.\.\$values of function sprintf expects bool\|float\|int\|string\|null, mixed given\.$#'
identifier: argument.type
count: 1
path: src/Skautis/SkautisService.php
-
message: '#^Parameter \#4 \$firstName of class kissj\\Skautis\\SkautisUserData constructor expects string, mixed given\.$#'
identifier: argument.type
count: 1
path: src/Skautis/SkautisService.php
-
message: '#^Parameter \#5 \$lastName of class kissj\\Skautis\\SkautisUserData constructor expects string, mixed given\.$#'
identifier: argument.type
count: 1
path: src/Skautis/SkautisService.php
-
message: '#^Parameter \#6 \$nickName of class kissj\\Skautis\\SkautisUserData constructor expects string, mixed given\.$#'
identifier: argument.type
count: 1
path: src/Skautis/SkautisService.php
-
message: '#^Parameter \#8 \$email of class kissj\\Skautis\\SkautisUserData constructor expects string, mixed given\.$#'
identifier: argument.type
count: 1
path: src/Skautis/SkautisService.php
-
message: '#^Parameter \#9 \$phone of class kissj\\Skautis\\SkautisUserData constructor expects string, mixed given\.$#'
identifier: argument.type
count: 1
path: src/Skautis/SkautisService.php
-
message: '#^Cannot access offset ''id'' on mixed\.$#'
identifier: offsetAccess.nonOffsetAccessible
count: 1
path: src/User/UserRegeneration.php
-
message: '#^Parameter \#1 \$userSession of method kissj\\User\\UserRegeneration\:\:recreateUserFromSession\(\) expects array\<string\>, mixed given\.$#'
identifier: argument.type
count: 1
path: src/User/UserRegeneration.php
-
message: '#^Method adminRoles always return list, but is marked as array\<kissj\\User\\UserRole\>$#'
identifier: shipmonk.returnListNotUsed
count: 1
path: src/User/UserRole.php