forked from phpmyadmin/phpmyadmin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
phpstan-baseline.neon
11662 lines (9330 loc) · 514 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
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
parameters:
ignoreErrors:
-
message: "#^Method PhpMyAdmin\\\\Advisory\\\\Advisor\\:\\:addRule\\(\\) has parameter \\$rule with no value type specified in iterable type array\\.$#"
count: 1
path: libraries/classes/Advisory/Advisor.php
-
message: "#^Method PhpMyAdmin\\\\Advisory\\\\Advisor\\:\\:getRunResult\\(\\) return type has no value type specified in iterable type array\\.$#"
count: 1
path: libraries/classes/Advisory/Advisor.php
-
message: "#^Method PhpMyAdmin\\\\Advisory\\\\Advisor\\:\\:replaceLinkURL\\(\\) has parameter \\$matches with no value type specified in iterable type array\\.$#"
count: 1
path: libraries/classes/Advisory/Advisor.php
-
message: "#^Method PhpMyAdmin\\\\Advisory\\\\Advisor\\:\\:replaceVariable\\(\\) has parameter \\$matches with no value type specified in iterable type array\\.$#"
count: 1
path: libraries/classes/Advisory/Advisor.php
-
message: "#^Method PhpMyAdmin\\\\Advisory\\\\Advisor\\:\\:run\\(\\) return type has no value type specified in iterable type array\\.$#"
count: 1
path: libraries/classes/Advisory/Advisor.php
-
message: "#^Parameter \\#2 \\$args of function vsprintf expects array, mixed given\\.$#"
count: 1
path: libraries/classes/Advisory/Advisor.php
-
message: "#^Property PhpMyAdmin\\\\Advisory\\\\Advisor\\:\\:\\$globals type has no value type specified in iterable type array\\.$#"
count: 1
path: libraries/classes/Advisory/Advisor.php
-
message: "#^Property PhpMyAdmin\\\\Advisory\\\\Advisor\\:\\:\\$runResult type has no value type specified in iterable type array\\.$#"
count: 1
path: libraries/classes/Advisory/Advisor.php
-
message: "#^Property PhpMyAdmin\\\\Advisory\\\\Advisor\\:\\:\\$variables type has no value type specified in iterable type array\\.$#"
count: 1
path: libraries/classes/Advisory/Advisor.php
-
message: "#^Method PhpMyAdmin\\\\Bookmark\\:\\:applyVariables\\(\\) has parameter \\$variables with no value type specified in iterable type array\\.$#"
count: 1
path: libraries/classes/Bookmark.php
-
message: "#^Method PhpMyAdmin\\\\Bookmark\\:\\:createBookmark\\(\\) has parameter \\$bkm_fields with no value type specified in iterable type array\\.$#"
count: 1
path: libraries/classes/Bookmark.php
-
message: "#^Method PhpMyAdmin\\\\Bookmark\\:\\:createFromRow\\(\\) has parameter \\$row with no value type specified in iterable type array\\.$#"
count: 1
path: libraries/classes/Bookmark.php
-
message: "#^Method PhpMyAdmin\\\\BrowseForeigners\\:\\:getHtmlForGotoPage\\(\\) has parameter \\$foreignData with no value type specified in iterable type array\\.$#"
count: 1
path: libraries/classes/BrowseForeigners.php
-
message: "#^Method PhpMyAdmin\\\\BrowseForeigners\\:\\:getHtmlForOneKey\\(\\) has parameter \\$descriptions with no value type specified in iterable type array\\.$#"
count: 1
path: libraries/classes/BrowseForeigners.php
-
message: "#^Method PhpMyAdmin\\\\BrowseForeigners\\:\\:getHtmlForOneKey\\(\\) has parameter \\$keys with no value type specified in iterable type array\\.$#"
count: 1
path: libraries/classes/BrowseForeigners.php
-
message: "#^Method PhpMyAdmin\\\\BrowseForeigners\\:\\:getHtmlForOneKey\\(\\) return type has no value type specified in iterable type array\\.$#"
count: 1
path: libraries/classes/BrowseForeigners.php
-
message: "#^Method PhpMyAdmin\\\\BrowseForeigners\\:\\:getHtmlForRelationalFieldSelection\\(\\) has parameter \\$foreignData with no value type specified in iterable type array\\.$#"
count: 1
path: libraries/classes/BrowseForeigners.php
-
message: "#^Parameter \\#1 \\$state of static method PhpMyAdmin\\\\Charsets\\\\Charset\\:\\:fromServer\\(\\) expects array\\{Charset\\?\\: string, Description\\?\\: string, Default collation\\?\\: string, Maxlen\\?\\: string\\}, array\\<string, string\\|null\\> given\\.$#"
count: 1
path: libraries/classes/Charsets.php
-
message: "#^Parameter \\#1 \\$state of static method PhpMyAdmin\\\\Charsets\\\\Collation\\:\\:fromServer\\(\\) expects array\\<string\\>, array\\<string, string\\|null\\> given\\.$#"
count: 1
path: libraries/classes/Charsets.php
-
message: "#^Only numeric types are allowed in \\+, int\\<0, max\\>\\|false given on the left side\\.$#"
count: 2
path: libraries/classes/CheckUserPrivileges.php
-
message: "#^Only numeric types are allowed in \\-, int\\<0, max\\>\\|false given on the left side\\.$#"
count: 3
path: libraries/classes/CheckUserPrivileges.php
-
message: "#^Only numeric types are allowed in \\-, int\\<0, max\\>\\|false given on the right side\\.$#"
count: 1
path: libraries/classes/CheckUserPrivileges.php
-
message: "#^Parameter \\#1 \\$row of method PhpMyAdmin\\\\CheckUserPrivileges\\:\\:getItemsFromShowGrantsRow\\(\\) expects string, string\\|null given\\.$#"
count: 1
path: libraries/classes/CheckUserPrivileges.php
-
message: "#^Parameter \\#3 \\$subject of function preg_replace expects array\\|string, string\\|null given\\.$#"
count: 1
path: libraries/classes/CheckUserPrivileges.php
-
message: "#^Method PhpMyAdmin\\\\Command\\\\TwigLintCommand\\:\\:display\\(\\) has parameter \\$filesInfo with no value type specified in iterable type array\\.$#"
count: 1
path: libraries/classes/Command/TwigLintCommand.php
-
message: "#^Method PhpMyAdmin\\\\Command\\\\TwigLintCommand\\:\\:findFiles\\(\\) return type has no value type specified in iterable type array\\.$#"
count: 1
path: libraries/classes/Command/TwigLintCommand.php
-
message: "#^Method PhpMyAdmin\\\\Command\\\\TwigLintCommand\\:\\:getContext\\(\\) return type has no value type specified in iterable type array\\.$#"
count: 1
path: libraries/classes/Command/TwigLintCommand.php
-
message: "#^Method PhpMyAdmin\\\\Command\\\\TwigLintCommand\\:\\:getFilesInfo\\(\\) return type has no value type specified in iterable type array\\.$#"
count: 1
path: libraries/classes/Command/TwigLintCommand.php
-
message: "#^Method PhpMyAdmin\\\\Command\\\\TwigLintCommand\\:\\:validate\\(\\) return type has no value type specified in iterable type array\\.$#"
count: 1
path: libraries/classes/Command/TwigLintCommand.php
-
message: "#^Parameter \\#1 \\$string of function strlen expects string, mixed given\\.$#"
count: 1
path: libraries/classes/Common.php
-
message: "#^Static property PhpMyAdmin\\\\SqlParser\\\\Lexer\\:\\:\\$DEFAULT_DELIMITER \\(string\\) does not accept mixed\\.$#"
count: 1
path: libraries/classes/Common.php
-
message: "#^Cannot cast mixed to string\\.$#"
count: 1
path: libraries/classes/Config.php
-
message: "#^Casting to string something that's already string\\.$#"
count: 1
path: libraries/classes/Config.php
-
message: "#^Method PhpMyAdmin\\\\Config\\:\\:getConnectionParams\\(\\) has parameter \\$server with no value type specified in iterable type array\\.$#"
count: 1
path: libraries/classes/Config.php
-
message: "#^Method PhpMyAdmin\\\\Config\\:\\:getConnectionParams\\(\\) return type has no value type specified in iterable type array\\.$#"
count: 1
path: libraries/classes/Config.php
-
message: "#^Method PhpMyAdmin\\\\Config\\:\\:getUploadTempDir\\(\\) should return string\\|null but returns string\\|false\\.$#"
count: 1
path: libraries/classes/Config.php
-
message: "#^Parameter \\#1 \\$str of function rtrim expects string, mixed given\\.$#"
count: 1
path: libraries/classes/Config.php
-
message: "#^Parameter \\#1 \\$url of function parse_url expects string, mixed given\\.$#"
count: 2
path: libraries/classes/Config.php
-
message: "#^Parameter \\#3 \\$default of method PhpMyAdmin\\\\Config\\:\\:setCookie\\(\\) expects string\\|null, mixed given\\.$#"
count: 1
path: libraries/classes/Config.php
-
message: "#^Parameter \\#3 \\$subject of function str_replace expects array\\|string, string\\|false\\|null given\\.$#"
count: 1
path: libraries/classes/Config.php
-
message: "#^Property PhpMyAdmin\\\\Config\\:\\:\\$baseSettings type has no value type specified in iterable type array\\.$#"
count: 1
path: libraries/classes/Config.php
-
message: "#^Property PhpMyAdmin\\\\Config\\:\\:\\$default type has no value type specified in iterable type array\\.$#"
count: 1
path: libraries/classes/Config.php
-
message: "#^Property PhpMyAdmin\\\\Config\\:\\:\\$defaultServer type has no value type specified in iterable type array\\.$#"
count: 1
path: libraries/classes/Config.php
-
message: "#^Property PhpMyAdmin\\\\Config\\:\\:\\$settings type has no value type specified in iterable type array\\.$#"
count: 1
path: libraries/classes/Config.php
-
message: "#^Method PhpMyAdmin\\\\Config\\\\ConfigFile\\:\\:__construct\\(\\) has parameter \\$baseConfig with no value type specified in iterable type array\\.$#"
count: 1
path: libraries/classes/Config/ConfigFile.php
-
message: "#^Method PhpMyAdmin\\\\Config\\\\ConfigFile\\:\\:getCanonicalPath\\(\\) should return string but returns string\\|null\\.$#"
count: 1
path: libraries/classes/Config/ConfigFile.php
-
message: "#^Method PhpMyAdmin\\\\Config\\\\ConfigFile\\:\\:getConfig\\(\\) return type has no value type specified in iterable type array\\.$#"
count: 1
path: libraries/classes/Config/ConfigFile.php
-
message: "#^Method PhpMyAdmin\\\\Config\\\\ConfigFile\\:\\:getConfigArray\\(\\) return type has no value type specified in iterable type array\\.$#"
count: 1
path: libraries/classes/Config/ConfigFile.php
-
message: "#^Method PhpMyAdmin\\\\Config\\\\ConfigFile\\:\\:getFlatArray\\(\\) has parameter \\$array with no value type specified in iterable type array\\.$#"
count: 1
path: libraries/classes/Config/ConfigFile.php
-
message: "#^Method PhpMyAdmin\\\\Config\\\\ConfigFile\\:\\:getFlatArray\\(\\) return type has no value type specified in iterable type array\\.$#"
count: 1
path: libraries/classes/Config/ConfigFile.php
-
message: "#^Method PhpMyAdmin\\\\Config\\\\ConfigFile\\:\\:getFlatDefaultConfig\\(\\) return type has no value type specified in iterable type array\\.$#"
count: 1
path: libraries/classes/Config/ConfigFile.php
-
message: "#^Method PhpMyAdmin\\\\Config\\\\ConfigFile\\:\\:getPersistKeysMap\\(\\) return type has no value type specified in iterable type array\\.$#"
count: 1
path: libraries/classes/Config/ConfigFile.php
-
message: "#^Method PhpMyAdmin\\\\Config\\\\ConfigFile\\:\\:getServerName\\(\\) should return string but returns mixed\\.$#"
count: 2
path: libraries/classes/Config/ConfigFile.php
-
message: "#^Method PhpMyAdmin\\\\Config\\\\ConfigFile\\:\\:getServers\\(\\) return type has no value type specified in iterable type array\\.$#"
count: 1
path: libraries/classes/Config/ConfigFile.php
-
message: "#^Method PhpMyAdmin\\\\Config\\\\ConfigFile\\:\\:setAllowedKeys\\(\\) has parameter \\$keys with no value type specified in iterable type array\\.$#"
count: 1
path: libraries/classes/Config/ConfigFile.php
-
message: "#^Method PhpMyAdmin\\\\Config\\\\ConfigFile\\:\\:setCfgUpdateReadMapping\\(\\) has parameter \\$mapping with no value type specified in iterable type array\\.$#"
count: 1
path: libraries/classes/Config/ConfigFile.php
-
message: "#^Method PhpMyAdmin\\\\Config\\\\ConfigFile\\:\\:setConfigData\\(\\) has parameter \\$cfg with no value type specified in iterable type array\\.$#"
count: 1
path: libraries/classes/Config/ConfigFile.php
-
message: "#^Method PhpMyAdmin\\\\Config\\\\ConfigFile\\:\\:setPersistKeys\\(\\) has parameter \\$keys with no value type specified in iterable type array\\.$#"
count: 1
path: libraries/classes/Config/ConfigFile.php
-
message: "#^Method PhpMyAdmin\\\\Config\\\\ConfigFile\\:\\:updateWithGlobalConfig\\(\\) has parameter \\$cfg with no value type specified in iterable type array\\.$#"
count: 1
path: libraries/classes/Config/ConfigFile.php
-
message: "#^Parameter \\#2 \\$array of static method PhpMyAdmin\\\\Core\\:\\:arrayRead\\(\\) expects array, array\\|null given\\.$#"
count: 1
path: libraries/classes/Config/ConfigFile.php
-
message: "#^Property PhpMyAdmin\\\\Config\\\\ConfigFile\\:\\:\\$baseCfg type has no value type specified in iterable type array\\.$#"
count: 1
path: libraries/classes/Config/ConfigFile.php
-
message: "#^Property PhpMyAdmin\\\\Config\\\\ConfigFile\\:\\:\\$cfgDb type has no value type specified in iterable type array\\.$#"
count: 1
path: libraries/classes/Config/ConfigFile.php
-
message: "#^Property PhpMyAdmin\\\\Config\\\\ConfigFile\\:\\:\\$cfgUpdateReadMapping type has no value type specified in iterable type array\\.$#"
count: 1
path: libraries/classes/Config/ConfigFile.php
-
message: "#^Property PhpMyAdmin\\\\Config\\\\ConfigFile\\:\\:\\$defaultCfg type has no value type specified in iterable type array\\.$#"
count: 1
path: libraries/classes/Config/ConfigFile.php
-
message: "#^Property PhpMyAdmin\\\\Config\\\\ConfigFile\\:\\:\\$persistKeys type has no value type specified in iterable type array\\.$#"
count: 1
path: libraries/classes/Config/ConfigFile.php
-
message: "#^Property PhpMyAdmin\\\\Config\\\\ConfigFile\\:\\:\\$setFilter type has no value type specified in iterable type array\\.$#"
count: 1
path: libraries/classes/Config/ConfigFile.php
-
message: "#^Empty array passed to foreach\\.$#"
count: 1
path: libraries/classes/Config/Form.php
-
message: "#^Method PhpMyAdmin\\\\Config\\\\Form\\:\\:__construct\\(\\) has parameter \\$form with no value type specified in iterable type array\\.$#"
count: 1
path: libraries/classes/Config/Form.php
-
message: "#^Method PhpMyAdmin\\\\Config\\\\Form\\:\\:cleanGroupPaths\\(\\) has parameter \\$form with no value type specified in iterable type array\\.$#"
count: 1
path: libraries/classes/Config/Form.php
-
message: "#^Method PhpMyAdmin\\\\Config\\\\Form\\:\\:cleanGroupPaths\\(\\) return type has no value type specified in iterable type array\\.$#"
count: 1
path: libraries/classes/Config/Form.php
-
message: "#^Method PhpMyAdmin\\\\Config\\\\Form\\:\\:getOptionValueList\\(\\) return type has no value type specified in iterable type array\\.$#"
count: 1
path: libraries/classes/Config/Form.php
-
message: "#^Method PhpMyAdmin\\\\Config\\\\Form\\:\\:loadForm\\(\\) has parameter \\$form with no value type specified in iterable type array\\.$#"
count: 1
path: libraries/classes/Config/Form.php
-
message: "#^Method PhpMyAdmin\\\\Config\\\\Form\\:\\:readFormPaths\\(\\) has parameter \\$form with no value type specified in iterable type array\\.$#"
count: 1
path: libraries/classes/Config/Form.php
-
message: "#^PHPDoc tag @var for variable \\$value has no value type specified in iterable type array\\.$#"
count: 1
path: libraries/classes/Config/Form.php
-
message: "#^Property PhpMyAdmin\\\\Config\\\\Form\\:\\:\\$default type has no value type specified in iterable type array\\.$#"
count: 1
path: libraries/classes/Config/Form.php
-
message: "#^Property PhpMyAdmin\\\\Config\\\\Form\\:\\:\\$fields type has no value type specified in iterable type array\\.$#"
count: 1
path: libraries/classes/Config/Form.php
-
message: "#^Property PhpMyAdmin\\\\Config\\\\Form\\:\\:\\$fieldsTypes type has no value type specified in iterable type array\\.$#"
count: 1
path: libraries/classes/Config/Form.php
-
message: "#^Property PhpMyAdmin\\\\Config\\\\Form\\:\\:\\$index \\(int\\) does not accept int\\|null\\.$#"
count: 1
path: libraries/classes/Config/Form.php
-
message: "#^Unreachable statement \\- code above always terminates\\.$#"
count: 2
path: libraries/classes/Config/Form.php
-
message: "#^Argument of an invalid type mixed supplied for foreach, only iterables are supported\\.$#"
count: 1
path: libraries/classes/Config/FormDisplay.php
-
message: "#^Call to function function_exists\\(\\) with 'bzcompress'\\|'gzcompress'\\|'gzencode' will always evaluate to true\\.$#"
count: 1
path: libraries/classes/Config/FormDisplay.php
-
message: "#^Call to function function_exists\\(\\) with 'bzopen'\\|'gzopen'\\|'zip_open' will always evaluate to true\\.$#"
count: 1
path: libraries/classes/Config/FormDisplay.php
-
message: "#^Cannot access offset 'wrapper_params' on mixed\\.$#"
count: 2
path: libraries/classes/Config/FormDisplay.php
-
message: "#^Cannot cast mixed to string\\.$#"
count: 1
path: libraries/classes/Config/FormDisplay.php
-
message: "#^Method PhpMyAdmin\\\\Config\\\\FormDisplay\\:\\:displayFieldInput\\(\\) has parameter \\$jsDefault with no value type specified in iterable type array\\.$#"
count: 1
path: libraries/classes/Config/FormDisplay.php
-
message: "#^Method PhpMyAdmin\\\\Config\\\\FormDisplay\\:\\:fillPostArrayParameters\\(\\) has parameter \\$postValues with no value type specified in iterable type array\\.$#"
count: 1
path: libraries/classes/Config/FormDisplay.php
-
message: "#^Method PhpMyAdmin\\\\Config\\\\FormDisplay\\:\\:getDisplay\\(\\) has parameter \\$hiddenFields with no value type specified in iterable type array\\.$#"
count: 1
path: libraries/classes/Config/FormDisplay.php
-
message: "#^Method PhpMyAdmin\\\\Config\\\\FormDisplay\\:\\:registerForm\\(\\) has parameter \\$form with no value type specified in iterable type array\\.$#"
count: 1
path: libraries/classes/Config/FormDisplay.php
-
message: "#^Method PhpMyAdmin\\\\Config\\\\FormDisplay\\:\\:setComments\\(\\) has parameter \\$opts with no value type specified in iterable type array\\.$#"
count: 1
path: libraries/classes/Config/FormDisplay.php
-
message: "#^Method PhpMyAdmin\\\\Config\\\\FormDisplay\\:\\:validateSelect\\(\\) has parameter \\$allowed with no value type specified in iterable type array\\.$#"
count: 1
path: libraries/classes/Config/FormDisplay.php
-
message: "#^Parameter \\#1 \\$path of method PhpMyAdmin\\\\Config\\\\ConfigFile\\:\\:getValue\\(\\) expects string, int\\|string\\|false given\\.$#"
count: 1
path: libraries/classes/Config/FormDisplay.php
-
message: "#^Parameter \\#1 \\$path of method PhpMyAdmin\\\\Config\\\\ConfigFile\\:\\:set\\(\\) expects string, int\\|string given\\.$#"
count: 1
path: libraries/classes/Config/FormDisplay.php
-
message: "#^Parameter \\#2 \\$array of function implode expects array\\<string\\>, mixed given\\.$#"
count: 1
path: libraries/classes/Config/FormDisplay.php
-
message: "#^Parameter \\#2 \\$pieces of function implode expects array, mixed given\\.$#"
count: 1
path: libraries/classes/Config/FormDisplay.php
-
message: "#^Parameter \\#2 \\$subject of function preg_match expects string, mixed given\\.$#"
count: 1
path: libraries/classes/Config/FormDisplay.php
-
message: "#^Parameter \\#3 \\$subject of function str_replace expects array\\|string, int\\|string\\|false given\\.$#"
count: 1
path: libraries/classes/Config/FormDisplay.php
-
message: "#^Parameter \\#4 \\$workPath of method PhpMyAdmin\\\\Config\\\\FormDisplay\\:\\:displayFieldInput\\(\\) expects string, int\\|string\\|false given\\.$#"
count: 1
path: libraries/classes/Config/FormDisplay.php
-
message: "#^Property PhpMyAdmin\\\\Config\\\\FormDisplay\\:\\:\\$errors type has no value type specified in iterable type array\\.$#"
count: 1
path: libraries/classes/Config/FormDisplay.php
-
message: "#^Property PhpMyAdmin\\\\Config\\\\FormDisplay\\:\\:\\$systemPaths type has no value type specified in iterable type array\\.$#"
count: 1
path: libraries/classes/Config/FormDisplay.php
-
message: "#^Property PhpMyAdmin\\\\Config\\\\FormDisplay\\:\\:\\$translatedPaths type has no value type specified in iterable type array\\.$#"
count: 1
path: libraries/classes/Config/FormDisplay.php
-
message: "#^Property PhpMyAdmin\\\\Config\\\\FormDisplay\\:\\:\\$userprefsDisallow type has no value type specified in iterable type array\\.$#"
count: 1
path: libraries/classes/Config/FormDisplay.php
-
message: "#^Property PhpMyAdmin\\\\Config\\\\FormDisplay\\:\\:\\$userprefsKeys type has no value type specified in iterable type array\\.$#"
count: 1
path: libraries/classes/Config/FormDisplay.php
-
message: "#^Method PhpMyAdmin\\\\Config\\\\FormDisplayTemplate\\:\\:addJsValidate\\(\\) has parameter \\$jsArray with no value type specified in iterable type array\\.$#"
count: 1
path: libraries/classes/Config/FormDisplayTemplate.php
-
message: "#^Method PhpMyAdmin\\\\Config\\\\FormDisplayTemplate\\:\\:addJsValidate\\(\\) has parameter \\$validators with no value type specified in iterable type array\\.$#"
count: 1
path: libraries/classes/Config/FormDisplayTemplate.php
-
message: "#^Method PhpMyAdmin\\\\Config\\\\FormDisplayTemplate\\:\\:display\\(\\) has parameter \\$data with no value type specified in iterable type array\\.$#"
count: 1
path: libraries/classes/Config/FormDisplayTemplate.php
-
message: "#^Method PhpMyAdmin\\\\Config\\\\FormDisplayTemplate\\:\\:displayErrors\\(\\) has parameter \\$errorList with no value type specified in iterable type array\\.$#"
count: 1
path: libraries/classes/Config/FormDisplayTemplate.php
-
message: "#^Method PhpMyAdmin\\\\Config\\\\FormDisplayTemplate\\:\\:displayInput\\(\\) has parameter \\$opts with no value type specified in iterable type array\\.$#"
count: 1
path: libraries/classes/Config/FormDisplayTemplate.php
-
message: "#^Method PhpMyAdmin\\\\Config\\\\Forms\\\\BaseForm\\:\\:getForms\\(\\) return type has no value type specified in iterable type array\\.$#"
count: 1
path: libraries/classes/Config/Forms/BaseForm.php
-
message: "#^Property PhpMyAdmin\\\\Config\\\\Forms\\\\BaseFormList\\:\\:\\$forms type has no value type specified in iterable type array\\.$#"
count: 1
path: libraries/classes/Config/Forms/BaseFormList.php
-
message: "#^Method PhpMyAdmin\\\\Config\\\\Forms\\\\Page\\\\BrowseForm\\:\\:getForms\\(\\) return type has no value type specified in iterable type array\\.$#"
count: 1
path: libraries/classes/Config/Forms/Page/BrowseForm.php
-
message: "#^Method PhpMyAdmin\\\\Config\\\\Forms\\\\Page\\\\DbStructureForm\\:\\:getForms\\(\\) return type has no value type specified in iterable type array\\.$#"
count: 1
path: libraries/classes/Config/Forms/Page/DbStructureForm.php
-
message: "#^Method PhpMyAdmin\\\\Config\\\\Forms\\\\Page\\\\EditForm\\:\\:getForms\\(\\) return type has no value type specified in iterable type array\\.$#"
count: 1
path: libraries/classes/Config/Forms/Page/EditForm.php
-
message: "#^Method PhpMyAdmin\\\\Config\\\\Forms\\\\Page\\\\TableStructureForm\\:\\:getForms\\(\\) return type has no value type specified in iterable type array\\.$#"
count: 1
path: libraries/classes/Config/Forms/Page/TableStructureForm.php
-
message: "#^Method PhpMyAdmin\\\\Config\\\\Forms\\\\Setup\\\\ConfigForm\\:\\:getForms\\(\\) return type has no value type specified in iterable type array\\.$#"
count: 1
path: libraries/classes/Config/Forms/Setup/ConfigForm.php
-
message: "#^Method PhpMyAdmin\\\\Config\\\\Forms\\\\Setup\\\\FeaturesForm\\:\\:getForms\\(\\) return type has no value type specified in iterable type array\\.$#"
count: 1
path: libraries/classes/Config/Forms/Setup/FeaturesForm.php
-
message: "#^Method PhpMyAdmin\\\\Config\\\\Forms\\\\Setup\\\\MainForm\\:\\:getForms\\(\\) return type has no value type specified in iterable type array\\.$#"
count: 1
path: libraries/classes/Config/Forms/Setup/MainForm.php
-
message: "#^Method PhpMyAdmin\\\\Config\\\\Forms\\\\Setup\\\\ServersForm\\:\\:getForms\\(\\) return type has no value type specified in iterable type array\\.$#"
count: 1
path: libraries/classes/Config/Forms/Setup/ServersForm.php
-
message: "#^Method PhpMyAdmin\\\\Config\\\\Forms\\\\Setup\\\\SqlForm\\:\\:getForms\\(\\) return type has no value type specified in iterable type array\\.$#"
count: 1
path: libraries/classes/Config/Forms/Setup/SqlForm.php
-
message: "#^Method PhpMyAdmin\\\\Config\\\\Forms\\\\User\\\\ExportForm\\:\\:getForms\\(\\) return type has no value type specified in iterable type array\\.$#"
count: 1
path: libraries/classes/Config/Forms/User/ExportForm.php
-
message: "#^Method PhpMyAdmin\\\\Config\\\\Forms\\\\User\\\\FeaturesForm\\:\\:getForms\\(\\) return type has no value type specified in iterable type array\\.$#"
count: 1
path: libraries/classes/Config/Forms/User/FeaturesForm.php
-
message: "#^Method PhpMyAdmin\\\\Config\\\\Forms\\\\User\\\\ImportForm\\:\\:getForms\\(\\) return type has no value type specified in iterable type array\\.$#"
count: 1
path: libraries/classes/Config/Forms/User/ImportForm.php
-
message: "#^Method PhpMyAdmin\\\\Config\\\\Forms\\\\User\\\\MainForm\\:\\:getForms\\(\\) return type has no value type specified in iterable type array\\.$#"
count: 1
path: libraries/classes/Config/Forms/User/MainForm.php
-
message: "#^Method PhpMyAdmin\\\\Config\\\\Forms\\\\User\\\\NaviForm\\:\\:getForms\\(\\) return type has no value type specified in iterable type array\\.$#"
count: 1
path: libraries/classes/Config/Forms/User/NaviForm.php
-
message: "#^Method PhpMyAdmin\\\\Config\\\\Forms\\\\User\\\\SqlForm\\:\\:getForms\\(\\) return type has no value type specified in iterable type array\\.$#"
count: 1
path: libraries/classes/Config/Forms/User/SqlForm.php
-
message: "#^Cannot access offset int\\|string on mixed\\.$#"
count: 1
path: libraries/classes/Config/Settings.php
-
message: "#^Cannot cast mixed to int\\.$#"
count: 34
path: libraries/classes/Config/Settings.php
-
message: "#^Cannot cast mixed to string\\.$#"
count: 44
path: libraries/classes/Config/Settings.php
-
message: "#^Method PhpMyAdmin\\\\Config\\\\Settings\\:\\:toArray\\(\\) return type has no value type specified in iterable type array\\.$#"
count: 1
path: libraries/classes/Config/Settings.php
-
message: "#^Method PhpMyAdmin\\\\Config\\\\Settings\\:\\:toArray\\(\\) should return array\\<string, array\\|bool\\|int\\|string\\|null\\> but returns array\\<string, mixed\\>\\.$#"
count: 1
path: libraries/classes/Config/Settings.php
-
message: "#^Parameter \\#1 \\$input of function array_keys expects array, mixed given\\.$#"
count: 1
path: libraries/classes/Config/Settings.php
-
message: "#^Cannot cast mixed to int\\.$#"
count: 1
path: libraries/classes/Config/Settings/Console.php
-
message: "#^Cannot cast mixed to int\\.$#"
count: 2
path: libraries/classes/Config/Settings/Export.php
-
message: "#^Cannot cast mixed to string\\.$#"
count: 23
path: libraries/classes/Config/Settings/Export.php
-
message: "#^Cannot cast mixed to int\\.$#"
count: 1
path: libraries/classes/Config/Settings/Import.php
-
message: "#^Cannot cast mixed to string\\.$#"
count: 11
path: libraries/classes/Config/Settings/Import.php
-
message: "#^Cannot cast mixed to string\\.$#"
count: 2
path: libraries/classes/Config/Settings/Schema.php
-
message: "#^Cannot cast mixed to int\\.$#"
count: 1
path: libraries/classes/Config/Settings/Server.php
-
message: "#^Cannot cast mixed to string\\.$#"
count: 46
path: libraries/classes/Config/Settings/Server.php
-
message: "#^Cannot cast mixed to string\\.$#"
count: 1
path: libraries/classes/Config/Settings/Transformations.php
-
message: "#^Argument of an invalid type array\\|object supplied for foreach, only iterables are supported\\.$#"
count: 1
path: libraries/classes/Config/Validator.php
-
message: "#^Argument of an invalid type mixed supplied for foreach, only iterables are supported\\.$#"
count: 1
path: libraries/classes/Config/Validator.php
-
message: "#^Cannot access offset mixed on mixed\\.$#"
count: 3
path: libraries/classes/Config/Validator.php
-
message: "#^Method PhpMyAdmin\\\\Config\\\\Validator\\:\\:getValidators\\(\\) return type has no value type specified in iterable type array\\.$#"
count: 1
path: libraries/classes/Config/Validator.php
-
message: "#^Method PhpMyAdmin\\\\Config\\\\Validator\\:\\:getValidators\\(\\) should return array but returns mixed\\.$#"
count: 2
path: libraries/classes/Config/Validator.php
-
message: "#^Method PhpMyAdmin\\\\Config\\\\Validator\\:\\:testDBConnection\\(\\) return type has no value type specified in iterable type array\\.$#"
count: 1
path: libraries/classes/Config/Validator.php
-
message: "#^Method PhpMyAdmin\\\\Config\\\\Validator\\:\\:validate\\(\\) has parameter \\$validatorId with no value type specified in iterable type array\\.$#"
count: 1
path: libraries/classes/Config/Validator.php
-
message: "#^Method PhpMyAdmin\\\\Config\\\\Validator\\:\\:validate\\(\\) has parameter \\$values with no value type specified in iterable type array\\.$#"
count: 1
path: libraries/classes/Config/Validator.php
-
message: "#^Method PhpMyAdmin\\\\Config\\\\Validator\\:\\:validate\\(\\) return type has no value type specified in iterable type array\\.$#"
count: 1
path: libraries/classes/Config/Validator.php
-
message: "#^Method PhpMyAdmin\\\\Config\\\\Validator\\:\\:validateByRegex\\(\\) has parameter \\$values with no value type specified in iterable type array\\.$#"
count: 1
path: libraries/classes/Config/Validator.php
-
message: "#^Method PhpMyAdmin\\\\Config\\\\Validator\\:\\:validateByRegex\\(\\) return type has no value type specified in iterable type array\\.$#"
count: 1
path: libraries/classes/Config/Validator.php
-
message: "#^Method PhpMyAdmin\\\\Config\\\\Validator\\:\\:validateNonNegativeNumber\\(\\) has parameter \\$values with no value type specified in iterable type array\\.$#"
count: 1
path: libraries/classes/Config/Validator.php
-
message: "#^Method PhpMyAdmin\\\\Config\\\\Validator\\:\\:validateNonNegativeNumber\\(\\) return type has no value type specified in iterable type array\\.$#"
count: 1
path: libraries/classes/Config/Validator.php
-
message: "#^Method PhpMyAdmin\\\\Config\\\\Validator\\:\\:validateNumber\\(\\) has parameter \\$values with no value type specified in iterable type array\\.$#"
count: 1
path: libraries/classes/Config/Validator.php
-
message: "#^Method PhpMyAdmin\\\\Config\\\\Validator\\:\\:validatePMAStorage\\(\\) has parameter \\$values with no value type specified in iterable type array\\.$#"
count: 1
path: libraries/classes/Config/Validator.php
-
message: "#^Method PhpMyAdmin\\\\Config\\\\Validator\\:\\:validatePMAStorage\\(\\) return type has no value type specified in iterable type array\\.$#"
count: 1
path: libraries/classes/Config/Validator.php
-
message: "#^Method PhpMyAdmin\\\\Config\\\\Validator\\:\\:validatePortNumber\\(\\) has parameter \\$values with no value type specified in iterable type array\\.$#"
count: 1
path: libraries/classes/Config/Validator.php
-
message: "#^Method PhpMyAdmin\\\\Config\\\\Validator\\:\\:validatePortNumber\\(\\) return type has no value type specified in iterable type array\\.$#"
count: 1
path: libraries/classes/Config/Validator.php
-
message: "#^Method PhpMyAdmin\\\\Config\\\\Validator\\:\\:validatePositiveNumber\\(\\) has parameter \\$values with no value type specified in iterable type array\\.$#"
count: 1
path: libraries/classes/Config/Validator.php
-
message: "#^Method PhpMyAdmin\\\\Config\\\\Validator\\:\\:validatePositiveNumber\\(\\) return type has no value type specified in iterable type array\\.$#"
count: 1
path: libraries/classes/Config/Validator.php
-
message: "#^Method PhpMyAdmin\\\\Config\\\\Validator\\:\\:validateRegex\\(\\) has parameter \\$values with no value type specified in iterable type array\\.$#"
count: 1
path: libraries/classes/Config/Validator.php
-
message: "#^Method PhpMyAdmin\\\\Config\\\\Validator\\:\\:validateRegex\\(\\) return type has no value type specified in iterable type array\\.$#"
count: 1
path: libraries/classes/Config/Validator.php
-
message: "#^Method PhpMyAdmin\\\\Config\\\\Validator\\:\\:validateServer\\(\\) has parameter \\$values with no value type specified in iterable type array\\.$#"
count: 1
path: libraries/classes/Config/Validator.php
-
message: "#^Method PhpMyAdmin\\\\Config\\\\Validator\\:\\:validateServer\\(\\) return type has no value type specified in iterable type array\\.$#"
count: 1
path: libraries/classes/Config/Validator.php
-
message: "#^Method PhpMyAdmin\\\\Config\\\\Validator\\:\\:validateTrustedProxies\\(\\) has parameter \\$values with no value type specified in iterable type array\\.$#"
count: 1
path: libraries/classes/Config/Validator.php
-
message: "#^Method PhpMyAdmin\\\\Config\\\\Validator\\:\\:validateTrustedProxies\\(\\) return type has no value type specified in iterable type array\\.$#"
count: 1
path: libraries/classes/Config/Validator.php
-
message: "#^Method PhpMyAdmin\\\\Config\\\\Validator\\:\\:validateUpperBound\\(\\) has parameter \\$values with no value type specified in iterable type array\\.$#"
count: 1
path: libraries/classes/Config/Validator.php
-
message: "#^Method PhpMyAdmin\\\\Config\\\\Validator\\:\\:validateUpperBound\\(\\) return type has no value type specified in iterable type array\\.$#"
count: 1
path: libraries/classes/Config/Validator.php
-
message: "#^Casting to string something that's already string\\.$#"
count: 4
path: libraries/classes/ConfigStorage/Relation.php
-
message: "#^Do\\-while loop condition is always false\\.$#"
count: 1
path: libraries/classes/ConfigStorage/Relation.php
-
message: "#^Method PhpMyAdmin\\\\ConfigStorage\\\\Relation\\:\\:buildForeignDropdown\\(\\) has parameter \\$foreign with no value type specified in iterable type array\\.$#"
count: 1
path: libraries/classes/ConfigStorage/Relation.php
-
message: "#^Method PhpMyAdmin\\\\ConfigStorage\\\\Relation\\:\\:checkChildForeignReferences\\(\\) has parameter \\$child_references_full with no value type specified in iterable type array\\.$#"
count: 1
path: libraries/classes/ConfigStorage/Relation.php
-
message: "#^Method PhpMyAdmin\\\\ConfigStorage\\\\Relation\\:\\:checkChildForeignReferences\\(\\) has parameter \\$foreigners_full with no value type specified in iterable type array\\.$#"
count: 1
path: libraries/classes/ConfigStorage/Relation.php
-
message: "#^Method PhpMyAdmin\\\\ConfigStorage\\\\Relation\\:\\:foreignDropdown\\(\\) has parameter \\$disp_row with no value type specified in iterable type array\\.$#"
count: 1
path: libraries/classes/ConfigStorage/Relation.php
-
message: "#^Method PhpMyAdmin\\\\ConfigStorage\\\\Relation\\:\\:getChildReferences\\(\\) return type has no value type specified in iterable type array\\.$#"
count: 1
path: libraries/classes/ConfigStorage/Relation.php
-
message: "#^Method PhpMyAdmin\\\\ConfigStorage\\\\Relation\\:\\:getComments\\(\\) return type has no value type specified in iterable type array\\.$#"
count: 1
path: libraries/classes/ConfigStorage/Relation.php
-
message: "#^Method PhpMyAdmin\\\\ConfigStorage\\\\Relation\\:\\:getDbComments\\(\\) return type has no value type specified in iterable type array\\.$#"
count: 1
path: libraries/classes/ConfigStorage/Relation.php
-
message: "#^Method PhpMyAdmin\\\\ConfigStorage\\\\Relation\\:\\:getDefaultPmaTableNames\\(\\) has parameter \\$tableNameReplacements with no value type specified in iterable type array\\.$#"
count: 1
path: libraries/classes/ConfigStorage/Relation.php
-
message: "#^Method PhpMyAdmin\\\\ConfigStorage\\\\Relation\\:\\:getForeignData\\(\\) has parameter \\$foreigners with no value type specified in iterable type array\\.$#"
count: 1
path: libraries/classes/ConfigStorage/Relation.php
-
message: "#^Method PhpMyAdmin\\\\ConfigStorage\\\\Relation\\:\\:getForeignData\\(\\) return type has no value type specified in iterable type array\\.$#"
count: 1
path: libraries/classes/ConfigStorage/Relation.php
-
message: "#^Method PhpMyAdmin\\\\ConfigStorage\\\\Relation\\:\\:getForeignData\\(\\) should return array\\{foreign_link\\: bool, the_total\\: mixed, foreign_display\\: string, disp_row\\: array\\<int, non\\-empty\\-array\\>\\|null, foreign_field\\: mixed\\} but returns array\\{foreign_link\\: bool, the_total\\: mixed, foreign_display\\: string, disp_row\\: array\\<int, array\\<string, string\\|null\\>\\>\\|null, foreign_field\\: mixed\\}\\.$#"
count: 1
path: libraries/classes/ConfigStorage/Relation.php
-
message: "#^Method PhpMyAdmin\\\\ConfigStorage\\\\Relation\\:\\:getForeigners\\(\\) return type has no value type specified in iterable type array\\.$#"
count: 1
path: libraries/classes/ConfigStorage/Relation.php
-
message: "#^Method PhpMyAdmin\\\\ConfigStorage\\\\Relation\\:\\:getHistory\\(\\) return type has no value type specified in iterable type array\\.$#"
count: 1
path: libraries/classes/ConfigStorage/Relation.php
-
message: "#^Method PhpMyAdmin\\\\ConfigStorage\\\\Relation\\:\\:getRelationsAndStatus\\(\\) return type has no value type specified in iterable type array\\.$#"
count: 1
path: libraries/classes/ConfigStorage/Relation.php
-
message: "#^Method PhpMyAdmin\\\\ConfigStorage\\\\Relation\\:\\:getTables\\(\\) return type has no value type specified in iterable type array\\.$#"
count: 1
path: libraries/classes/ConfigStorage/Relation.php
-
message: "#^Method PhpMyAdmin\\\\ConfigStorage\\\\Relation\\:\\:searchColumnInForeigners\\(\\) has parameter \\$foreigners with no value type specified in iterable type array\\.$#"
count: 1
path: libraries/classes/ConfigStorage/Relation.php
-
message: "#^Method PhpMyAdmin\\\\ConfigStorage\\\\Relation\\:\\:searchColumnInForeigners\\(\\) return type has no value type specified in iterable type array\\.$#"
count: 1
path: libraries/classes/ConfigStorage/Relation.php
-
message: "#^Parameter \\#1 \\$foreigners of method PhpMyAdmin\\\\ConfigStorage\\\\Relation\\:\\:searchColumnInForeigners\\(\\) expects array, array\\|true given\\.$#"
count: 1
path: libraries/classes/ConfigStorage/Relation.php
-
message: "#^Parameter \\#1 \\$list of class PhpMyAdmin\\\\SqlParser\\\\Parser constructor expects PhpMyAdmin\\\\SqlParser\\\\TokensList\\|PhpMyAdmin\\\\SqlParser\\\\UtfString\\|string\\|null, mixed given\\.$#"
count: 1
path: libraries/classes/ConfigStorage/Relation.php
-
message: "#^Parameter \\#2 \\$callback of function usort expects callable\\(string\\|null, string\\|null\\)\\: int, 'strnatcasecmp' given\\.$#"
count: 1
path: libraries/classes/ConfigStorage/Relation.php
-
message: "#^Argument of an invalid type array\\|null supplied for foreach, only iterables are supported\\.$#"
count: 3
path: libraries/classes/ConfigStorage/UserGroups.php
-
message: "#^Method PhpMyAdmin\\\\ConfigStorage\\\\UserGroups\\:\\:getAllowedTabNames\\(\\) has parameter \\$row with no value type specified in iterable type array\\.$#"
count: 1
path: libraries/classes/ConfigStorage/UserGroups.php
-
message: "#^Method PhpMyAdmin\\\\ConfigStorage\\\\UserGroups\\:\\:getTabList\\(\\) has parameter \\$selected with no value type specified in iterable type array\\.$#"
count: 1
path: libraries/classes/ConfigStorage/UserGroups.php
-
message: "#^Parameter \\#1 \\$params of static method PhpMyAdmin\\\\Url\\:\\:getCommonRaw\\(\\) expects array\\<int\\|string, bool\\|int\\|string\\>, array\\<string, mixed\\> given\\.$#"
count: 1
path: libraries/classes/Controllers/AbstractController.php
-
message: "#^Parameter \\#3 \\$new_cfg_value of method PhpMyAdmin\\\\Config\\:\\:setUserValue\\(\\) expects string, mixed given\\.$#"
count: 1
path: libraries/classes/Controllers/CollationConnectionController.php
-
message: "#^Parameter \\#3 \\$new_cfg_value of method PhpMyAdmin\\\\Config\\:\\:setUserValue\\(\\) expects string, mixed given\\.$#"
count: 1
path: libraries/classes/Controllers/Config/SetConfigController.php
-
message: "#^Parameter \\#2 \\$table of method PhpMyAdmin\\\\Database\\\\CentralColumns\\:\\:getColumnsNotInCentralList\\(\\) expects string, mixed given\\.$#"
count: 1
path: libraries/classes/Controllers/Database/CentralColumns/PopulateColumnsController.php
-
message: "#^Method PhpMyAdmin\\\\Controllers\\\\Database\\\\CentralColumnsController\\:\\:addColumn\\(\\) has parameter \\$params with no value type specified in iterable type array\\.$#"
count: 1
path: libraries/classes/Controllers/Database/CentralColumnsController.php
-
message: "#^Method PhpMyAdmin\\\\Controllers\\\\Database\\\\CentralColumnsController\\:\\:addNewColumn\\(\\) has parameter \\$params with no value type specified in iterable type array\\.$#"
count: 1
path: libraries/classes/Controllers/Database/CentralColumnsController.php
-
message: "#^Method PhpMyAdmin\\\\Controllers\\\\Database\\\\CentralColumnsController\\:\\:deleteSave\\(\\) has parameter \\$params with no value type specified in iterable type array\\.$#"
count: 1
path: libraries/classes/Controllers/Database/CentralColumnsController.php
-
message: "#^Method PhpMyAdmin\\\\Controllers\\\\Database\\\\CentralColumnsController\\:\\:editPage\\(\\) has parameter \\$params with no value type specified in iterable type array\\.$#"
count: 1