forked from polylang/polylang
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathphpstan-baseline.neon
957 lines (766 loc) · 32.6 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
parameters:
ignoreErrors:
-
message: "#^@param PLL_Language \\$pref_lang does not accept actual type of parameter\\: PLL_Language\\|false\\.$#"
count: 1
path: admin/admin-base.php
-
message: "#^Parameter \\#1 \\$post_type of method PLL_Model\\:\\:is_translated_post_type\\(\\) expects array\\<string\\>\\|string, string\\|false given\\.$#"
count: 1
path: admin/admin-base.php
-
message: "#^Parameter \\#2 \\$callback of function add_action expects callable\\(\\)\\: mixed, array\\{mixed, 'admin_bar_menu'\\} given\\.$#"
count: 1
path: admin/admin-base.php
-
message: "#^Parameter \\#2 \\$callback of function add_action expects callable\\(\\)\\: mixed, array\\{mixed, 'init_user'\\} given\\.$#"
count: 1
path: admin/admin-base.php
-
message: "#^Parameter \\#2 \\$callback of function add_filter expects callable\\(\\)\\: mixed, array\\{mixed, 'request'\\} given\\.$#"
count: 1
path: admin/admin-base.php
-
message: "#^Parameter \\#6 \\$callback of function add_submenu_page expects callable\\(\\)\\: mixed, array\\{\\$this\\(PLL_Admin_Base\\), 'languages_page'\\} given\\.$#"
count: 1
path: admin/admin-base.php
-
message: "#^Property PLL_Admin_Base\\:\\:\\$curlang \\(PLL_Language\\|null\\) does not accept PLL_Language\\|false\\.$#"
count: 2
path: admin/admin-base.php
-
message: "#^Property PLL_Admin_Base\\:\\:\\$curlang \\(PLL_Language\\|null\\) does not accept PLL_Language\\|false\\|null\\.$#"
count: 2
path: admin/admin-base.php
-
message: "#^Property PLL_Admin_Base\\:\\:\\$filter_lang \\(PLL_Language\\|null\\) does not accept PLL_Language\\|false\\.$#"
count: 1
path: admin/admin-base.php
-
message: "#^Property PLL_Admin_Base\\:\\:\\$pref_lang \\(PLL_Language\\|null\\) does not accept PLL_Language\\|false\\.$#"
count: 1
path: admin/admin-base.php
-
message: "#^Cannot call method edit_post_translation_link\\(\\) on PLL_Admin_Links\\|null\\.$#"
count: 2
path: admin/admin-classic-editor.php
-
message: "#^Parameter \\#2 \\$lang of method PLL_Translated_Object\\:\\:get_translation\\(\\) expects PLL_Language\\|string, PLL_Language\\|false given\\.$#"
count: 1
path: admin/admin-classic-editor.php
-
message: "#^Parameter \\#2 \\$untranslated_in of method PLL_Translated_Post\\:\\:get_untranslated\\(\\) expects PLL_Language, PLL_Language\\|false given\\.$#"
count: 1
path: admin/admin-classic-editor.php
-
message: "#^Parameter \\#3 \\$lang of method PLL_Translated_Post\\:\\:get_untranslated\\(\\) expects PLL_Language, PLL_Language\\|false given\\.$#"
count: 1
path: admin/admin-classic-editor.php
-
message: "#^Cannot access offset 'term_id' on array\\{term_id\\: int, term_taxonomy_id\\: int\\|string\\}\\|WP_Error\\.$#"
count: 1
path: admin/admin-default-term.php
-
message: "#^Cannot access property \\$slug on PLL_Language\\|false\\.$#"
count: 1
path: admin/admin-default-term.php
-
message: "#^Cannot cast mixed to int\\.$#"
count: 2
path: admin/admin-default-term.php
-
message: "#^Parameter \\#1 \\$id of method PLL_Translated_Object\\:\\:get_translations\\(\\) expects int, mixed given\\.$#"
count: 1
path: admin/admin-default-term.php
-
message: "#^Parameter \\#2 \\$lang of method PLL_Translated_Term\\:\\:set_language\\(\\) expects int\\|PLL_Language\\|string, PLL_Language\\|false given\\.$#"
count: 2
path: admin/admin-default-term.php
-
message: "#^Cannot call method new_post_translation_link\\(\\) on PLL_Admin_Links\\|null\\.$#"
count: 1
path: admin/admin-filters-columns.php
-
message: "#^Cannot call method new_term_translation_link\\(\\) on PLL_Admin_Links\\|null\\.$#"
count: 1
path: admin/admin-filters-columns.php
-
message: "#^Parameter \\#1 \\$args of method WP_Ajax_Response\\:\\:add\\(\\) expects array\\{what\\?\\: string, action\\?\\: string\\|false, id\\?\\: int\\|WP_Error, old_id\\?\\: int\\|false, position\\?\\: string, data\\?\\: string\\|WP_Error, supplemental\\?\\: array\\}, array\\{what\\: 'row', data\\: string\\|false, supplemental\\: array\\{post_id\\: int\\}\\} given\\.$#"
count: 1
path: admin/admin-filters-columns.php
-
message: "#^Parameter \\#1 \\$args of method WP_Ajax_Response\\:\\:add\\(\\) expects array\\{what\\?\\: string, action\\?\\: string\\|false, id\\?\\: int\\|WP_Error, old_id\\?\\: int\\|false, position\\?\\: string, data\\?\\: string\\|WP_Error, supplemental\\?\\: array\\}, array\\{what\\: 'row', data\\: string\\|false, supplemental\\: array\\{term_id\\: int\\}\\} given\\.$#"
count: 1
path: admin/admin-filters-columns.php
-
message: "#^Cannot call method create_media_translation\\(\\) on PLL_CRUD_Posts\\|null\\.$#"
count: 1
path: admin/admin-filters-media.php
-
message: "#^Parameter \\#1 \\$location of function wp_safe_redirect expects string, string\\|false given\\.$#"
count: 1
path: admin/admin-filters-media.php
-
message: "#^Parameter \\#1 \\$lang of method PLL_Query\\:\\:filter_query\\(\\) expects PLL_Language\\|false, PLL_Language\\|null given\\.$#"
count: 1
path: admin/admin-filters-post.php
-
message: "#^Cannot access property \\$slug on PLL_Language\\|false\\.$#"
count: 2
path: admin/admin-filters-term.php
-
message: "#^Cannot access property \\$term_id on PLL_Language\\|null\\.$#"
count: 1
path: admin/admin-filters-term.php
-
message: "#^Cannot call method edit_term_translation_link\\(\\) on PLL_Admin_Links\\|null\\.$#"
count: 1
path: admin/admin-filters-term.php
-
message: "#^Cannot call method is_default_term\\(\\) on PLL_Admin_Default_Term\\|null\\.$#"
count: 1
path: admin/admin-filters-term.php
-
message: "#^Parameter \\#2 \\$lang of method PLL_Translated_Object\\:\\:get_translation\\(\\) expects PLL_Language\\|string, PLL_Language\\|false given\\.$#"
count: 3
path: admin/admin-filters-term.php
-
message: "#^Parameter \\#2 \\$lang of method PLL_Translated_Term\\:\\:set_language\\(\\) expects int\\|PLL_Language\\|string, PLL_Language\\|false given\\.$#"
count: 2
path: admin/admin-filters-term.php
-
message: "#^Parameter \\#3 \\.\\.\\.\\$values of function sprintf expects bool\\|float\\|int\\|string\\|null, array\\<string\\>\\|string\\|void given\\.$#"
count: 1
path: admin/admin-filters-term.php
-
message: "#^Parameter \\#1 \\$id of method PLL_Translated_Object\\:\\:get_translations\\(\\) expects int, mixed given\\.$#"
count: 1
path: admin/admin-filters.php
-
message: "#^Parameter \\#4 \\.\\.\\.\\$values of function printf expects bool\\|float\\|int\\|string\\|null, mixed given\\.$#"
count: 1
path: admin/admin-filters.php
-
message: "#^Parameter \\#1 \\$id of method PLL_Translated_Object\\:\\:get_translations\\(\\) expects int, mixed given\\.$#"
count: 1
path: admin/admin-links.php
-
message: "#^Parameter \\#1 \\$link of method PLL_Admin_Links\\:\\:edit_translation_link\\(\\) expects string, string\\|null given\\.$#"
count: 2
path: admin/admin-links.php
-
message: "#^Parameter \\#1 \\$post_type of function get_post_type_object expects string, string\\|false given\\.$#"
count: 1
path: admin/admin-links.php
-
message: "#^Parameter \\#2 \\$language of method PLL_Admin_Links\\:\\:edit_translation_link\\(\\) expects PLL_Language, PLL_Language\\|false given\\.$#"
count: 2
path: admin/admin-links.php
-
message: "#^@param array\\<array\\<string\\>\\|int\\> \\$tr does not accept actual type of parameter\\: mixed\\.$#"
count: 1
path: admin/admin-model.php
-
message: "#^Cannot access an offset on mixed\\.$#"
count: 1
path: admin/admin-notices.php
-
message: "#^Parameter \\#1 .+ of function array_merge expects array, mixed given\\.$#"
count: 1
path: admin/admin-notices.php
-
message: "#^Parameter \\#1 \\$array of function array_unique expects array, mixed given\\.$#"
count: 1
path: admin/admin-notices.php
-
message: "#^Parameter \\#2 .+ of function array_diff expects array, mixed given\\.$#"
count: 1
path: admin/admin-notices.php
-
message: "#^Parameter \\#2 \\$haystack of function in_array expects array, mixed given\\.$#"
count: 2
path: admin/admin-notices.php
-
message: "#^Cannot call method get_new_post_translation_link\\(\\) on PLL_Admin_Links\\|null\\.$#"
count: 1
path: admin/admin-static-pages.php
-
message: "#^Offset 'widget_text' does not exist on array\\<string\\>\\|null\\.$#"
count: 1
path: admin/admin-strings.php
-
message: "#^Offset 'widget_title' does not exist on array\\<string\\>\\|null\\.$#"
count: 1
path: admin/admin-strings.php
-
message: "#^Property PLL_Admin\\:\\:\\$block_editor \\(PLL_Admin_Block_Editor\\|null\\) does not accept object\\.$#"
count: 1
path: admin/admin.php
-
message: "#^Property PLL_Admin\\:\\:\\$classic_editor \\(PLL_Admin_Classic_Editor\\|null\\) does not accept object\\.$#"
count: 1
path: admin/admin.php
-
message: "#^Property PLL_Admin\\:\\:\\$filters \\(PLL_Admin_Filters\\|null\\) does not accept object\\.$#"
count: 1
path: admin/admin.php
-
message: "#^Property PLL_Admin\\:\\:\\$filters_columns \\(PLL_Admin_Filters_Columns\\|null\\) does not accept object\\.$#"
count: 1
path: admin/admin.php
-
message: "#^Property PLL_Admin\\:\\:\\$filters_media \\(PLL_Admin_Filters_Media\\|null\\) does not accept object\\.$#"
count: 1
path: admin/admin.php
-
message: "#^Property PLL_Admin\\:\\:\\$filters_post \\(PLL_Admin_Filters_Post\\|null\\) does not accept object\\.$#"
count: 1
path: admin/admin.php
-
message: "#^Property PLL_Admin\\:\\:\\$filters_term \\(PLL_Admin_Filters_Term\\|null\\) does not accept object\\.$#"
count: 1
path: admin/admin.php
-
message: "#^Property PLL_Admin\\:\\:\\$nav_menu \\(PLL_Admin_Nav_Menu\\|null\\) does not accept object\\.$#"
count: 1
path: admin/admin.php
-
message: "#^Parameter \\#1 \\$curlang of method PLL_Choose_Lang_Content\\:\\:set_language\\(\\) expects PLL_Language, PLL_Language\\|false given\\.$#"
count: 1
path: frontend/choose-lang-content.php
-
message: "#^Parameter \\#1 \\$.+ of function get_query_var expects string, string\\|false given\\.$#"
count: 1
path: frontend/choose-lang-content.php
-
message: "#^Parameter \\#2 \\$.+ of function explode expects string, mixed given\\.$#"
count: 1
path: frontend/choose-lang-content.php
-
message: "#^Method PLL_Choose_Lang_Domain\\:\\:get_preferred_language\\(\\) should return PLL_Language but returns PLL_Language\\|false\\.$#"
count: 1
path: frontend/choose-lang-domain.php
-
message: "#^Parameter \\#1 \\$term_id of method PLL_Frontend_Auto_Translate\\:\\:get_term\\(\\) expects int, float\\|int\\<0, max\\> given\\.$#"
count: 1
path: frontend/frontend-auto-translate.php
-
message: "#^Parameter \\#1 \\$term_id of method PLL_Frontend_Auto_Translate\\:\\:get_term\\(\\) expects int, int\\|string given\\.$#"
count: 1
path: frontend/frontend-auto-translate.php
-
message: "#^Parameter \\#2 \\$lang of method PLL_Translated_Object\\:\\:get\\(\\) expects int\\|PLL_Language\\|string, PLL_Language\\|null given\\.$#"
count: 2
path: frontend/frontend-auto-translate.php
-
message: "#^Cannot call method get_home_url\\(\\) on PLL_Frontend_Links\\|null\\.$#"
count: 2
path: frontend/frontend-filters-links.php
-
message: "#^Cannot call method get_translation_url\\(\\) on PLL_Frontend_Links\\|null\\.$#"
count: 1
path: frontend/frontend-filters-links.php
-
message: "#^Method PLL_Frontend_Filters_Links\\:\\:_get_page_link\\(\\) should return string but returns mixed\\.$#"
count: 1
path: frontend/frontend-filters-links.php
-
message: "#^Method PLL_Frontend_Filters_Links\\:\\:attachment_link\\(\\) should return string but returns mixed\\.$#"
count: 1
path: frontend/frontend-filters-links.php
-
message: "#^Method PLL_Frontend_Filters_Links\\:\\:post_type_link\\(\\) should return string but returns mixed\\.$#"
count: 1
path: frontend/frontend-filters-links.php
-
message: "#^Parameter \\#1 \\$post_type of method PLL_Model\\:\\:is_translated_post_type\\(\\) expects array\\<string\\>\\|string, string\\|false given\\.$#"
count: 1
path: frontend/frontend-filters-links.php
-
message: "#^Parameter \\#2 \\$lang of method PLL_Links_Model\\:\\:switch_language_in_link\\(\\) expects PLL_Language, PLL_Language\\|false given\\.$#"
count: 1
path: frontend/frontend-filters-links.php
-
message: "#^Parameter \\#2 \\$lang of method PLL_Links_Model\\:\\:switch_language_in_link\\(\\) expects PLL_Language, PLL_Language\\|null given\\.$#"
count: 3
path: frontend/frontend-filters-links.php
-
message: "#^Cannot access property \\$slug on PLL_Language\\|null\\.$#"
count: 1
path: frontend/frontend-filters-search.php
-
message: "#^Cannot access property \\$slug on PLL_Language\\|null\\.$#"
count: 1
path: frontend/frontend-filters-widgets.php
-
message: "#^Method PLL_Frontend_Filters_Widgets\\:\\:sidebars_widgets\\(\\) should return array but returns mixed\\.$#"
count: 1
path: frontend/frontend-filters-widgets.php
-
message: "#^Parameter \\#1 \\$.+ of function md5 expects string, mixed given\\.$#"
count: 1
path: frontend/frontend-filters-widgets.php
-
message: "#^Cannot access property \\$locale on PLL_Language\\|null\\.$#"
count: 2
path: frontend/frontend-filters.php
-
message: "#^Cannot access property \\$slug on PLL_Language\\|null\\.$#"
count: 1
path: frontend/frontend-filters.php
-
message: "#^Method PLL_Frontend_Filters\\:\\:get_user_metadata\\(\\) should return string\\|null but returns mixed\\.$#"
count: 1
path: frontend/frontend-filters.php
-
message: "#^Access to an undefined property WP_Post\\|WP_Post_Type\\|WP_Term\\|WP_User\\:\\:\\$taxonomy\\.$#"
count: 7
path: frontend/frontend-links.php
-
message: "#^Access to an undefined property WP_Post\\|WP_Post_Type\\|WP_Term\\|WP_User\\:\\:\\$term_id\\.$#"
count: 2
path: frontend/frontend-links.php
-
message: "#^Cannot access property \\$name on WP_Taxonomy\\|false\\.$#"
count: 2
path: frontend/frontend-links.php
-
message: "#^Method PLL_Frontend_Links\\:\\:get_translation_url\\(\\) should return string but returns mixed\\.$#"
count: 1
path: frontend/frontend-links.php
-
message: "#^Method PLL_Frontend_Links\\:\\:get_translation_url\\(\\) should return string but returns string\\|null\\.$#"
count: 1
path: frontend/frontend-links.php
-
message: "#^Parameter \\#1 \\$language of method PLL_Links\\:\\:get_home_url\\(\\) expects PLL_Language\\|string, PLL_Language\\|string\\|null given\\.$#"
count: 1
path: frontend/frontend-links.php
-
message: "#^Parameter \\#1 \\$.+ of function wp_list_pluck expects array, array\\<int, WP_Term\\>\\|WP_Error given\\.$#"
count: 1
path: frontend/frontend-links.php
-
message: "#^Parameter \\#1 \\$term of function get_term_link expects int\\|string\\|WP_Term, WP_Post\\|WP_Post_Type\\|WP_Term\\|WP_User given\\.$#"
count: 1
path: frontend/frontend-links.php
-
message: "#^Parameter \\#2 \\$haystack of function array_search expects array, array\\<int, string\\>\\|WP_Error given\\.$#"
count: 1
path: frontend/frontend-links.php
-
message: "#^Method PLL_Frontend_Nav_Menu\\:\\:get_ancestors\\(\\) should return array\\<int\\> but returns array\\<int\\<0, max\\>, mixed\\>\\.$#"
count: 1
path: frontend/frontend-nav-menu.php
-
message: "#^Parameter \\#1 \\$links of method PLL_Switcher\\:\\:the_languages\\(\\) expects PLL_Links, PLL_Admin_Links\\|PLL_Frontend_Links\\|null given\\.$#"
count: 1
path: frontend/frontend-nav-menu.php
-
message: "#^Parameter \\#1 \\$post_id of function get_post_meta expects int, mixed given\\.$#"
count: 1
path: frontend/frontend-nav-menu.php
-
message: "#^Cannot access property \\$page_on_front on PLL_Language\\|null\\.$#"
count: 2
path: frontend/frontend-static-pages.php
-
message: "#^Cannot call method get_home_url\\(\\) on PLL_Frontend_Links\\|null\\.$#"
count: 2
path: frontend/frontend-static-pages.php
-
message: "#^Parameter \\#2 \\$page of method PLL_Links_Model\\:\\:add_paged_to_link\\(\\) expects int, mixed given\\.$#"
count: 1
path: frontend/frontend-static-pages.php
-
message: "#^Property WP_Query\\:\\:\\$queried_object_id \\(int\\) in isset\\(\\) is not nullable\\.$#"
count: 1
path: frontend/frontend-static-pages.php
-
message: "#^Cannot access property \\$slug on PLL_Language\\|null\\.$#"
count: 1
path: frontend/frontend.php
-
message: "#^Property PLL_Frontend\\:\\:\\$curlang \\(PLL_Language\\|null\\) does not accept PLL_Language\\|false\\.$#"
count: 1
path: frontend/frontend.php
-
message: "#^Property PLL_Base\\:\\:\\$options \\(array\\) does not accept mixed\\.$#"
count: 1
path: include/base.php
-
message: "#^Call to an undefined method object\\:\\:init\\(\\)\\.$#"
count: 1
path: include/class-polylang.php
-
message: "#^Cannot access offset 'version' on mixed\\.$#"
count: 1
path: include/class-polylang.php
-
message: "#^Parameter \\#1 \\$version1 of function version_compare expects string, mixed given\\.$#"
count: 1
path: include/class-polylang.php
-
message: "#^Access to an undefined property object\\:\\:\\$options\\.$#"
count: 1
path: include/crud-posts.php
-
message: "#^Method PLL_CRUD_Posts\\:\\:wp_insert_post_parent\\(\\) should return int but returns int\\|false\\.$#"
count: 1
path: include/crud-posts.php
-
message: "#^Cannot access property \\$slug on PLL_Language\\|false\\.$#"
count: 1
path: include/crud-terms.php
-
message: "#^Method PLL_CRUD_Terms\\:\\:get_queried_language\\(\\) should return PLL_Language\\|string\\|false but returns PLL_Language\\|null\\.$#"
count: 2
path: include/crud-terms.php
-
message: "#^Parameter \\#2 \\$lang of method PLL_Model\\:\\:terms_clauses\\(\\) expects PLL_Language\\|false, PLL_Language\\|string\\|false given\\.$#"
count: 1
path: include/crud-terms.php
-
message: "#^@param PLL_Language \\$lang does not accept actual type of parameter\\: PLL_Language\\|false\\.$#"
count: 2
path: include/filters-links.php
-
message: "#^Parameter \\#2 \\$lang of method PLL_Links_Model\\:\\:switch_language_in_link\\(\\) expects PLL_Language, PLL_Language\\|false given\\.$#"
count: 4
path: include/filters-links.php
-
message: "#^Parameter \\#2 \\$lang of method PLL_Links_Model\\:\\:switch_language_in_link\\(\\) expects PLL_Language, PLL_Language\\|null given\\.$#"
count: 1
path: include/filters-links.php
-
message: "#^Parameter \\#1 \\$id of method PLL_Translated_Object\\:\\:get_translations\\(\\) expects int, mixed given\\.$#"
count: 1
path: include/filters.php
-
message: "#^Parameter \\#1 \\$string of function pll__ expects string, mixed given\\.$#"
count: 1
path: include/filters.php
-
message: "#^Function pll_get_requested_url\\(\\) should return string but returns mixed\\.$#"
count: 1
path: include/functions.php
-
message: "#^Parameter \\#1 \\$.+ of function base64_encode expects string, string\\|false given\\.$#"
count: 1
path: include/language.php
-
message: "#^Parameter \\#1 \\$format of function date_i18n expects string, mixed given\\.$#"
count: 3
path: include/license.php
-
message: "#^Method PLL_Links_Directory\\:\\:add_language_to_link\\(\\) should return string but returns string\\|null\\.$#"
count: 1
path: include/links-directory.php
-
message: "#^Method PLL_Links_Directory\\:\\:remove_language_from_link\\(\\) should return string but returns string\\|null\\.$#"
count: 1
path: include/links-directory.php
-
message: "#^Parameter \\#1 \\$str of function preg_quote expects string, string\\|null given\\.$#"
count: 2
path: include/links-directory.php
-
message: "#^Method PLL_Links_Domain\\:\\:add_language_to_link\\(\\) should return string but returns string\\|null\\.$#"
count: 1
path: include/links-domain.php
-
message: "#^Method PLL_Links_Domain\\:\\:remove_language_from_link\\(\\) should return string but returns string\\|null\\.$#"
count: 1
path: include/links-domain.php
-
message: "#^Method PLL_Links_Model\\:\\:get_hosts\\(\\) should return array\\<string\\> but returns array\\<int, string\\|false\\|null\\>\\.$#"
count: 1
path: include/links-model.php
-
message: "#^@param string \\$modified_url does not accept actual type of parameter\\: string\\|null\\.$#"
count: 1
path: include/links-permalinks.php
-
message: "#^Parameter \\#1 \\$string of function substr expects string, mixed given\\.$#"
count: 1
path: include/links-permalinks.php
-
message: "#^Parameter \\#2 \\$subject of function preg_match expects string, mixed given\\.$#"
count: 1
path: include/links-permalinks.php
-
message: "#^Method PLL_Links_Subdomain\\:\\:remove_language_from_link\\(\\) should return string but returns string\\|null\\.$#"
count: 1
path: include/links-subdomain.php
-
message: "#^Access to an undefined property object\\:\\:\\$term_id\\.$#"
count: 1
path: include/model.php
-
message: "#^Method PLL_Model\\:\\:get_links_model\\(\\) should return PLL_Links_Model but returns object\\.$#"
count: 1
path: include/model.php
-
message: "#^Parameter \\#1 \\$.+ of function md5 expects string, mixed given\\.$#"
count: 1
path: include/model.php
-
message: "#^Parameter \\#2 \\$callback of function add_action expects callable\\(\\)\\: mixed, array\\{mixed, 'clean_languages…'\\} given\\.$#"
count: 4
path: include/model.php
-
message: "#^Parameter \\#2 \\$callback of function add_filter expects callable\\(\\)\\: mixed, array\\{mixed, 'get_terms_args'\\} given\\.$#"
count: 1
path: include/model.php
-
message: "#^Property PLL_Nav_Menu\\:\\:\\$theme \\(string\\) does not accept mixed\\.$#"
count: 1
path: include/nav-menu.php
-
message: "#^Cannot access property \\$model on PLL_Links\\|null\\.$#"
count: 5
path: include/switcher.php
-
message: "#^Cannot access property \\$options on PLL_Links\\|null\\.$#"
count: 1
path: include/switcher.php
-
message: "#^Cannot call method get_home_url\\(\\) on PLL_Links\\|null\\.$#"
count: 1
path: include/switcher.php
-
message: "#^Method PLL_Switcher\\:\\:get_link\\(\\) should return string\\|null but returns string\\|false\\.$#"
count: 2
path: include/switcher.php
-
message: "#^Parameter \\#1 \\$language of method PLL_Switcher\\:\\:get_link\\(\\) expects PLL_Language, PLL_Language\\|false given\\.$#"
count: 1
path: include/switcher.php
-
message: "#^Argument of an invalid type array\\|object supplied for foreach, only iterables are supported\\.$#"
count: 4
path: include/translate-option.php
-
message: "#^Method PLL_Translate_Option\\:\\:translate_string_recursive\\(\\) should return array\\|string but returns array\\|object\\|string\\.$#"
count: 1
path: include/translate-option.php
-
message: "#^Parameter \\#1 \\$singular of method Translations\\:\\:translate\\(\\) expects string, mixed given\\.$#"
count: 1
path: include/translate-option.php
-
message: "#^Parameter \\#1 \\$string of function pll__ expects string, mixed given\\.$#"
count: 1
path: include/translate-option.php
-
message: "#^Parameter \\#2 \\$string of static method PLL_Admin_Strings\\:\\:register_string\\(\\) expects string, mixed given\\.$#"
count: 1
path: include/translate-option.php
-
message: "#^Parameter \\#3 \\$args of function wp_insert_term expects array\\{alias_of\\?\\: string, description\\?\\: string, parent\\?\\: int, slug\\?\\: string\\}, array\\{description\\: mixed\\} given\\.$#"
count: 1
path: include/translated-object.php
-
message: "#^Parameter \\#3 \\$args of function wp_update_term expects array\\{alias_of\\?\\: string, description\\?\\: string, parent\\?\\: int, slug\\?\\: string\\}, array\\{description\\: mixed\\} given\\.$#"
count: 2
path: include/translated-object.php
-
message: "#^Parameter \\#3 \\$args of function wp_insert_term expects array\\{alias_of\\?\\: string, description\\?\\: string, parent\\?\\: int, slug\\?\\: string\\}, array\\{description\\: mixed\\} given\\.$#"
count: 1
path: include/translated-term.php
-
message: "#^Parameter \\#1 \\$text of function esc_attr expects string, bool\\|string given\\.$#"
count: 1
path: include/widget-languages.php
-
message: "#^Cannot access offset 'version' on mixed\\.$#"
count: 1
path: install/install.php
-
message: "#^Parameter \\#1 \\$version1 of function version_compare expects string, mixed given\\.$#"
count: 1
path: install/install.php
-
message: "#^Access to an undefined property object\\:\\:\\$_last_checked\\.$#"
count: 1
path: install/t15s.php
-
message: "#^Cannot access offset 'slug' on object\\.$#"
count: 1
path: install/t15s.php
-
message: "#^Cannot access property \\$translations on array\\|stdClass\\|true\\.$#"
count: 2
path: install/t15s.php
-
message: "#^Method PLL_T15S\\:\\:site_transient_update_plugins\\(\\) should return array\\|bool but returns array\\|stdClass\\|true\\.$#"
count: 2
path: install/t15s.php
-
message: "#^Cannot call method get_must_translate_message\\(\\) on PLL_Admin_Static_Pages\\|null\\.$#"
count: 1
path: modules/site-health/admin-site-health.php
-
message: "#^Parameter \\#1 \\$name of method WP_Sitemaps_Provider\\:\\:get_sitemap_url\\(\\) expects string, string\\|null given\\.$#"
count: 1
path: modules/sitemaps/multilingual-sitemaps-provider.php
-
message: "#^Offset 'file' does not exist on array\\{function\\: string, line\\?\\: int, file\\?\\: string, class\\?\\: class\\-string, type\\?\\: '\\-\\>'\\|'\\:\\:', args\\?\\: array, object\\?\\: object\\}\\.$#"
count: 2
path: modules/sync/admin-sync.php
-
message: "#^Offset 'line' does not exist on array\\{function\\: string, line\\?\\: int, file\\?\\: string, class\\?\\: class\\-string, type\\?\\: '\\-\\>'\\|'\\:\\:', args\\?\\: array, object\\?\\: object\\}\\.$#"
count: 2
path: modules/sync/admin-sync.php
-
message: "#^Parameter \\#1 \\$.+ of function array_diff expects array, mixed given\\.$#"
count: 1
path: modules/sync/admin-sync.php
-
message: "#^Parameter \\#1 .+ of function array_merge expects array, mixed given\\.$#"
count: 1
path: modules/sync/admin-sync.php
-
message: "#^Parameter \\#1 \\$data of function maybe_serialize expects array\\|object\\|string, mixed given\\.$#"
count: 2
path: modules/sync/sync-metas.php
-
message: "#^Parameter \\#1 \\$data of function maybe_unserialize expects string, mixed given\\.$#"
count: 1
path: modules/sync/sync-metas.php
-
message: "#^@param int \\$from does not accept actual type of parameter\\: int\\|null\\.$#"
count: 1
path: modules/sync/sync-tax.php
-
message: "#^@param int \\$to does not accept actual type of parameter\\: int\\|null\\.$#"
count: 1
path: modules/sync/sync-tax.php
-
message: "#^@param string \\$lang does not accept actual type of parameter\\: string\\|null\\.$#"
count: 1
path: modules/sync/sync-tax.php
-
message: "#^Parameter \\#1 \\$.+ of function wp_list_pluck expects array, array\\<WP_Term\\>\\|WP_Error given\\.$#"
count: 1
path: modules/sync/sync-tax.php
-
message: "#^Parameter \\#1 \\$.+ of function wp_list_pluck expects array, array\\<WP_Term\\>\\|WP_Error\\|false given\\.$#"
count: 1
path: modules/sync/sync-tax.php
-
message: "#^Parameter \\#2 \\$lang of method PLL_Translated_Object\\:\\:get_translation\\(\\) expects PLL_Language\\|string, PLL_Language\\|false given\\.$#"
count: 2
path: modules/sync/sync-tax.php
-
message: "#^Parameter \\#2 \\$object_type of function update_object_term_cache expects array\\<string\\>\\|string, string\\|false given\\.$#"
count: 1
path: modules/sync/sync-tax.php
-
message: "#^Parameter \\#2 \\$post of method PLL_Sync\\:\\:pll_save_post\\(\\) expects WP_Post, WP_Post\\|null given\\.$#"
count: 1
path: modules/sync/sync.php
-
message: "#^Cannot access property \\$name on PLL_Language\\|false\\.$#"
count: 1
path: modules/wizard/wizard.php
-
message: "#^Method PLL_Wizard\\:\\:wizard_notice\\(\\) should return string but returns string\\|false\\.$#"
count: 1
path: modules/wizard/wizard.php
-
message: "#^Parameter \\#1 \\$id of method PLL_Translated_Object\\:\\:get_translations\\(\\) expects int, mixed given\\.$#"
count: 1
path: modules/wizard/wizard.php
-
message: "#^Property PLL_Wizard\\:\\:\\$step \\(string\\|null\\) does not accept int\\|string\\|false\\.$#"
count: 1
path: modules/wizard/wizard.php
-
message: "#^Method PLL_WPML_API\\:\\:wpml_is_rtl\\(\\) should return bool but returns string\\|false\\.$#"
count: 1
path: modules/wpml/wpml-api.php
-
message: "#^Parameter \\#1 \\$text of function esc_attr expects string, string\\|false given\\.$#"
count: 1
path: modules/wpml/wpml-api.php
-
message: "#^Static property PLL_WPML_API\\:\\:\\$original_language \\(PLL_Language\\|null\\) does not accept PLL_Language\\|false\\|null\\.$#"
count: 1
path: modules/wpml/wpml-api.php
-
message: "#^Parameter \\#1 \\$singular of method Translations\\:\\:translate\\(\\) expects string, string\\|true given\\.$#"
count: 1
path: modules/wpml/wpml-compat.php
-
message: "#^Static property PLL_WPML_Compat\\:\\:\\$strings \\(array\\) does not accept mixed\\.$#"
count: 1
path: modules/wpml/wpml-compat.php
-
message: "#^Cannot call method get_home_url\\(\\) on PLL_Admin_Links\\|PLL_Frontend_Links\\|null\\.$#"
count: 1
path: modules/wpml/wpml-legacy-api.php
-
message: "#^Function icl_get_current_language\\(\\) should return string but returns string\\|false\\.$#"
count: 1
path: modules/wpml/wpml-legacy-api.php
-
message: "#^Function icl_get_default_language\\(\\) should return string but returns string\\|false\\.$#"
count: 1
path: modules/wpml/wpml-legacy-api.php
-
message: "#^Function wpml_get_default_language\\(\\) should return string but returns string\\|false\\.$#"
count: 1
path: modules/wpml/wpml-legacy-api.php
-
message: "#^Parameter \\#1 \\$.+ of function method_exists expects object\\|string, PLL_Admin_Links\\|PLL_Frontend_Links\\|null given\\.$#"
count: 1
path: modules/wpml/wpml-legacy-api.php
-
message: "#^Parameter \\#1 \\$id of method PLL_Translatable_Object\\:\\:get_language\\(\\) expects int, int\\|false given\\.$#"
count: 1
path: modules/wpml/wpml-legacy-api.php
-
message: "#^Parameter \\#1 \\$string of function pll__ expects string, bool\\|string given\\.$#"
count: 1
path: modules/wpml/wpml-legacy-api.php
-
message: "#^Parameter \\#1 \\$string of function pll_translate_string expects string, bool\\|string given\\.$#"
count: 1
path: modules/wpml/wpml-legacy-api.php
-
message: "#^Parameter \\#2 \\$lang of method PLL_Translated_Object\\:\\:get_translation\\(\\) expects PLL_Language\\|string, string\\|false given\\.$#"
count: 2
path: modules/wpml/wpml-legacy-api.php
-
message: "#^Parameter \\#1 \\$args of method WP_Ajax_Response\\:\\:add\\(\\) expects array\\{what\\?\\: string, action\\?\\: string\\|false, id\\?\\: int\\|WP_Error, old_id\\?\\: int\\|false, position\\?\\: string, data\\?\\: string\\|WP_Error, supplemental\\?\\: array\\}, array\\{what\\: 'success', data\\: string\\|false\\} given\\.$#"
count: 1
path: settings/settings-licenses.php
-
message: "#^Method PLL_Settings_Module\\:\\:get_form\\(\\) should return string but returns string\\|false\\.$#"
count: 1
path: settings/settings-module.php
-
message: "#^Cannot access property \\$name on PLL_Language\\|false\\.$#"
count: 1
path: settings/settings-url.php
-
message: "#^Parameter \\#1 \\$post of function _get_page_link expects int\\|WP_Post, int\\|null given\\.$#"
count: 1
path: settings/settings-url.php
-
message: "#^Parameter \\#1 \\$id of method PLL_Translatable_Object\\:\\:get_language\\(\\) expects int, int\\|null given\\.$#"
count: 1
path: settings/settings-url.php
-
message: "#^Property PLL_Settings\\:\\:\\$modules \\(array\\<PLL_Settings_Module\\>\\|null\\) does not accept array\\<object\\>\\.$#"
count: 1
path: settings/settings.php
-
message: "#^Parameter \\#1 \\$text of function esc_attr expects string, string\\|null given\\.$#"
count: 2
path: settings/table-settings.php
-
message: "#^Parameter \\#2 \\$column_name of method PLL_Table_Settings\\:\\:column_default\\(\\) expects string, int\\|string given\\.$#"
count: 1
path: settings/table-settings.php