-
Notifications
You must be signed in to change notification settings - Fork 2
/
phpstan-baseline.neon
6929 lines (5543 loc) · 240 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:
reportUnmatchedIgnoredErrors: false
treatPhpDocTypesAsCertain: false
ignoreErrors:
-
message: "#^Constant UAGB_DIR not found\\.$#"
count: 1
path: admin-core/admin-loader.php
-
message: "#^Constant UAGB_URL not found\\.$#"
count: 1
path: admin-core/admin-loader.php
-
message: "#^Constant UAG_ADMIN_DIR not found\\.$#"
count: 1
path: admin-core/admin-loader.php
-
message: "#^Method UagAdmin\\\\Admin_Loader\\:\\:autoload\\(\\) has no return type specified\\.$#"
count: 1
path: admin-core/admin-loader.php
-
message: "#^Method UagAdmin\\\\Admin_Loader\\:\\:define_constants\\(\\) has no return type specified\\.$#"
count: 1
path: admin-core/admin-loader.php
-
message: "#^Method UagAdmin\\\\Admin_Loader\\:\\:setup_classes\\(\\) has no return type specified\\.$#"
count: 1
path: admin-core/admin-loader.php
-
message: "#^Parameter \\#1 \\$str of function strtolower expects string, string\\|null given\\.$#"
count: 1
path: admin-core/admin-loader.php
-
message: "#^Parameter \\#1 \\$string of function strtolower expects string, string\\|null given\\.$#"
count: 1
path: admin-core/admin-loader.php
-
message: "#^Static property UagAdmin\\\\Admin_Loader\\:\\:\\$instance \\(object\\) in isset\\(\\) is not nullable\\.$#"
count: 1
path: admin-core/admin-loader.php
-
message: "#^Call to an undefined method object\\:\\:get_error_msg\\(\\)\\.$#"
count: 1
path: admin-core/ajax/ajax-base.php
-
message: "#^Method UagAdmin\\\\Ajax\\\\Ajax_Base\\:\\:init_ajax_events\\(\\) has no return type specified\\.$#"
count: 1
path: admin-core/ajax/ajax-base.php
-
message: "#^Method UagAdmin\\\\Ajax\\\\Ajax_Base\\:\\:init_ajax_events\\(\\) has parameter \\$ajax_events with no value type specified in iterable type array\\.$#"
count: 1
path: admin-core/ajax/ajax-base.php
-
message: "#^Parameter \\#2 \\$callback of function add_action expects callable\\(\\)\\: mixed, array\\{\\$this\\(UagAdmin\\\\Ajax\\\\Ajax_Base\\), mixed\\} given\\.$#"
count: 1
path: admin-core/ajax/ajax-base.php
-
message: "#^Property UagAdmin\\\\Ajax\\\\Ajax_Errors\\:\\:\\$errors type has no value type specified in iterable type array\\.$#"
count: 1
path: admin-core/ajax/ajax-errors.php
-
message: "#^Static property UagAdmin\\\\Ajax\\\\Ajax_Errors\\:\\:\\$instance \\(object\\) in isset\\(\\) is not nullable\\.$#"
count: 1
path: admin-core/ajax/ajax-errors.php
-
message: "#^Access to an undefined property UagAdmin\\\\Ajax\\\\Ajax_Init\\:\\:\\$UagAdmin\\\\Ajax\\\\Common_Settings\\.$#"
count: 1
path: admin-core/ajax/ajax-init.php
-
message: "#^Call to an undefined method object\\:\\:register_ajax_events\\(\\)\\.$#"
count: 1
path: admin-core/ajax/ajax-init.php
-
message: "#^Method UagAdmin\\\\Ajax\\\\Ajax_Init\\:\\:register_all_ajax_events\\(\\) has no return type specified\\.$#"
count: 1
path: admin-core/ajax/ajax-init.php
-
message: "#^Static property UagAdmin\\\\Ajax\\\\Ajax_Init\\:\\:\\$instance \\(object\\) in isset\\(\\) is not nullable\\.$#"
count: 1
path: admin-core/ajax/ajax-init.php
-
message: "#^Cannot access offset 'facebookAppId' on mixed\\.$#"
count: 1
path: admin-core/ajax/common-settings.php
-
message: "#^Cannot access offset 'facebookAppSecret' on mixed\\.$#"
count: 1
path: admin-core/ajax/common-settings.php
-
message: "#^Cannot access offset 'googleClientId' on mixed\\.$#"
count: 1
path: admin-core/ajax/common-settings.php
-
message: "#^Cannot access offset 'socialRegister' on mixed\\.$#"
count: 1
path: admin-core/ajax/common-settings.php
-
message: "#^Cannot access property \\$ID on int\\|WP_Post\\.$#"
count: 1
path: admin-core/ajax/common-settings.php
-
message: "#^Cannot access property \\$post_title on int\\|WP_Post\\.$#"
count: 1
path: admin-core/ajax/common-settings.php
-
message: "#^Method UagAdmin\\\\Ajax\\\\Common_Settings\\:\\:sanitize_form_inputs\\(\\) has parameter \\$input_settings with no value type specified in iterable type array\\.$#"
count: 1
path: admin-core/ajax/common-settings.php
-
message: "#^Method UagAdmin\\\\Ajax\\\\Common_Settings\\:\\:sanitize_form_inputs\\(\\) return type has no value type specified in iterable type array\\.$#"
count: 1
path: admin-core/ajax/common-settings.php
-
message: "#^Parameter \\#1 \\$font of static method UAGB_FSE_Fonts_Compatibility\\:\\:delete_theme_font_family\\(\\) expects array, mixed given\\.$#"
count: 1
path: admin-core/ajax/common-settings.php
-
message: "#^Parameter \\#1 \\$input_settings of method UagAdmin\\\\Ajax\\\\Common_Settings\\:\\:sanitize_form_inputs\\(\\) expects array, mixed given\\.$#"
count: 4
path: admin-core/ajax/common-settings.php
-
message: "#^Parameter \\#1 \\$str of function sanitize_text_field expects string, mixed given\\.$#"
count: 30
path: admin-core/ajax/common-settings.php
-
message: "#^Parameter \\#1 \\$str of function stripslashes expects string, mixed given\\.$#"
count: 6
path: admin-core/ajax/common-settings.php
-
message: "#^Parameter \\#1 \\$var of function intval expects array\\|bool\\|float\\|int\\|resource\\|string\\|null, mixed given\\.$#"
count: 1
path: admin-core/ajax/common-settings.php
-
message: "#^Parameter \\#1 \\$string of function stripslashes expects string, mixed given\\.$#"
count: 6
path: admin-core/ajax/common-settings.php
-
message: "#^Parameter \\#1 \\$value of function intval expects array\\|bool\\|float\\|int\\|resource\\|string\\|null, mixed given\\.$#"
count: 1
path: admin-core/ajax/common-settings.php
-
message: "#^Static property UagAdmin\\\\Ajax\\\\Common_Settings\\:\\:\\$instance \\(object\\) in isset\\(\\) is not nullable\\.$#"
count: 1
path: admin-core/ajax/common-settings.php
-
message: "#^Strict comparison using \\=\\=\\= between 'disabled' and file_generation will always evaluate to false\\.$#"
count: 1
path: admin-core/ajax/common-settings.php
-
message: "#^Method UagAdmin\\\\Api\\\\Api_Base\\:\\:get_api_namespace\\(\\) has no return type specified\\.$#"
count: 1
path: admin-core/api/api-base.php
-
message: "#^Access to an undefined property UagAdmin\\\\Api\\\\Api_Init\\:\\:\\$UagAdmin\\\\Api\\\\Common_Settings\\.$#"
count: 1
path: admin-core/api/api-init.php
-
message: "#^Call to an undefined method object\\:\\:register_routes\\(\\)\\.$#"
count: 1
path: admin-core/api/api-init.php
-
message: "#^Method UagAdmin\\\\Api\\\\Api_Init\\:\\:register_routes\\(\\) has no return type specified\\.$#"
count: 1
path: admin-core/api/api-init.php
-
message: "#^Static property UagAdmin\\\\Api\\\\Api_Init\\:\\:\\$instance \\(object\\) in isset\\(\\) is not nullable\\.$#"
count: 1
path: admin-core/api/api-init.php
-
message: "#^Method UagAdmin\\\\Api\\\\Common_Settings\\:\\:get_common_settings\\(\\) has no return type specified\\.$#"
count: 1
path: admin-core/api/common-settings.php
-
message: "#^Method UagAdmin\\\\Api\\\\Common_Settings\\:\\:get_items_permissions_check\\(\\) has invalid return type UagAdmin\\\\Api\\\\WP_Error\\.$#"
count: 1
path: admin-core/api/common-settings.php
-
message: "#^Method UagAdmin\\\\Api\\\\Common_Settings\\:\\:get_items_permissions_check\\(\\) should return bool\\|UagAdmin\\\\Api\\\\WP_Error but returns WP_Error\\.$#"
count: 1
path: admin-core/api/common-settings.php
-
message: "#^Parameter \\$request of method UagAdmin\\\\Api\\\\Common_Settings\\:\\:get_common_settings\\(\\) has invalid type UagAdmin\\\\Api\\\\WP_REST_Request\\.$#"
count: 1
path: admin-core/api/common-settings.php
-
message: "#^Parameter \\$request of method UagAdmin\\\\Api\\\\Common_Settings\\:\\:get_items_permissions_check\\(\\) has invalid type UagAdmin\\\\Api\\\\WP_REST_Request\\.$#"
count: 1
path: admin-core/api/common-settings.php
-
message: "#^Static property UagAdmin\\\\Api\\\\Common_Settings\\:\\:\\$instance \\(object\\) in isset\\(\\) is not nullable\\.$#"
count: 1
path: admin-core/api/common-settings.php
-
message: "#^Array has 2 duplicate keys with value 'preload_local_fonts' \\('preload_local_fonts', 'preload_local_fonts'\\)\\.$#"
count: 1
path: admin-core/inc/admin-helper.php
-
message: "#^Iterating over an object of an unknown class instance\\.$#"
count: 1
path: admin-core/inc/admin-helper.php
-
message: "#^Method UagAdmin\\\\Inc\\\\Admin_Helper\\:\\:get_blocks\\(\\) has no return type specified\\.$#"
count: 1
path: admin-core/inc/admin-helper.php
-
message: "#^Method UagAdmin\\\\Inc\\\\Admin_Helper\\:\\:get_visibility_page\\(\\) return type has no value type specified in iterable type array\\.$#"
count: 1
path: admin-core/inc/admin-helper.php
-
message: "#^Method UagAdmin\\\\Inc\\\\Admin_Helper\\:\\:get_common_settings\\(\\) return type has no value type specified in iterable type array\\.$#"
count: 1
path: admin-core/inc/admin-helper.php
-
message: "#^Method UagAdmin\\\\Inc\\\\Admin_Helper\\:\\:get_options\\(\\) has no return type specified\\.$#"
count: 1
path: admin-core/inc/admin-helper.php
-
message: "#^Method UagAdmin\\\\Inc\\\\Admin_Helper\\:\\:get_rollback_versions_options\\(\\) return type has no value type specified in iterable type array\\.$#"
count: 1
path: admin-core/inc/admin-helper.php
-
message: "#^Method UagAdmin\\\\Inc\\\\Admin_Helper\\:\\:sort_rollback_versions\\(\\) return type has no value type specified in iterable type array\\.$#"
count: 1
path: admin-core/inc/admin-helper.php
-
message: "#^Method UagAdmin\\\\Inc\\\\Admin_Helper\\:\\:sort_rollback_versions\\(\\) should return array but returns int\\.$#"
count: 3
path: admin-core/inc/admin-helper.php
-
message: "#^Parameter \\#1 \\$args of function wp_parse_args expects array\\|object\\|string, mixed given\\.$#"
count: 1
path: admin-core/inc/admin-helper.php
-
message: "#^Parameter \\#1 \\$post of function get_the_title expects int\\|WP_Post, mixed given\\.$#"
count: 1
path: admin-core/inc/admin-helper.php
-
message: "#^Parameter \\#2 \\.\\.\\.\\$args of function array_merge expects array, mixed given\\.$#"
count: 1
path: admin-core/inc/admin-helper.php
-
message: "#^Parameter \\#2 \\.\\.\\.\\$arrays of function array_merge expects array, mixed given\\.$#"
count: 1
path: admin-core/inc/admin-helper.php
-
message: "#^Possibly invalid array key type \\(array\\<int, string\\>\\|string\\)\\.$#"
count: 1
path: admin-core/inc/admin-helper.php
-
message: "#^Constant UAGB_BASE not found\\.$#"
count: 1
path: admin-core/inc/admin-menu.php
-
message: "#^Constant UAGB_DIR not found\\.$#"
count: 1
path: admin-core/inc/admin-menu.php
-
message: "#^Constant UAGB_URL not found\\.$#"
count: 1
path: admin-core/inc/admin-menu.php
-
message: "#^Constant UAGB_VER not found\\.$#"
count: 5
path: admin-core/inc/admin-menu.php
-
message: "#^Constant UAG_ADMIN_DIR not found\\.$#"
count: 3
path: admin-core/inc/admin-menu.php
-
message: "#^Constant UAG_ADMIN_URL not found\\.$#"
count: 1
path: admin-core/inc/admin-menu.php
-
message: "#^Method UagAdmin\\\\Inc\\\\Admin_Menu\\:\\:add_action_links\\(\\) has parameter \\$links with no value type specified in iterable type array\\.$#"
count: 1
path: admin-core/inc/admin-menu.php
-
message: "#^Method UagAdmin\\\\Inc\\\\Admin_Menu\\:\\:add_action_links\\(\\) return type has no value type specified in iterable type array\\.$#"
count: 1
path: admin-core/inc/admin-menu.php
-
message: "#^Method UagAdmin\\\\Inc\\\\Admin_Menu\\:\\:add_footer_link\\(\\) has no return type specified\\.$#"
count: 1
path: admin-core/inc/admin-menu.php
-
message: "#^Method UagAdmin\\\\Inc\\\\Admin_Menu\\:\\:get_blocks_info_for_activation_deactivation\\(\\) has no return type specified\\.$#"
count: 1
path: admin-core/inc/admin-menu.php
-
message: "#^Method UagAdmin\\\\Inc\\\\Admin_Menu\\:\\:settings_admin_scripts\\(\\) has no return type specified\\.$#"
count: 1
path: admin-core/inc/admin-menu.php
-
message: "#^Method UagAdmin\\\\Inc\\\\Admin_Menu\\:\\:settings_app_scripts\\(\\) has no return type specified\\.$#"
count: 1
path: admin-core/inc/admin-menu.php
-
message: "#^Method UagAdmin\\\\Inc\\\\Admin_Menu\\:\\:settings_app_scripts\\(\\) has parameter \\$localize with no value type specified in iterable type array\\.$#"
count: 1
path: admin-core/inc/admin-menu.php
-
message: "#^Method UagAdmin\\\\Inc\\\\Admin_Menu\\:\\:setup_menu\\(\\) has no return type specified\\.$#"
count: 1
path: admin-core/inc/admin-menu.php
-
message: "#^Method UagAdmin\\\\Inc\\\\Admin_Menu\\:\\:styles_scripts\\(\\) has no return type specified\\.$#"
count: 1
path: admin-core/inc/admin-menu.php
-
message: "#^Parameter \\#1 \\$array1 of function array_multisort is passed by reference, so it expects variables only\\.$#"
count: 1
path: admin-core/inc/admin-menu.php
-
message: "#^Parameter \\#1 \\$array of function array_multisort is passed by reference, so it expects variables only\\.$#"
count: 1
path: admin-core/inc/admin-menu.php
-
message: "#^Parameter \\#1 \\$localize of method UagAdmin\\\\Inc\\\\Admin_Menu\\:\\:settings_app_scripts\\(\\) expects array, mixed given\\.$#"
count: 1
path: admin-core/inc/admin-menu.php
-
message: "#^Parameter \\$menu_page_slug of method UagAdmin\\\\Inc\\\\Admin_Menu\\:\\:render_content\\(\\) has invalid type UagAdmin\\\\Inc\\\\sting\\.$#"
count: 1
path: admin-core/inc/admin-menu.php
-
message: "#^Parameter \\$page_action of method UagAdmin\\\\Inc\\\\Admin_Menu\\:\\:render_content\\(\\) has invalid type UagAdmin\\\\Inc\\\\sting\\.$#"
count: 1
path: admin-core/inc/admin-menu.php
-
message: "#^Static property UagAdmin\\\\Inc\\\\Admin_Menu\\:\\:\\$instance \\(object\\) in isset\\(\\) is not nullable\\.$#"
count: 1
path: admin-core/inc/admin-menu.php
-
message: "#^Strict comparison using \\=\\=\\= between string and UagAdmin\\\\Inc\\\\sting will always evaluate to false\\.$#"
count: 1
path: admin-core/inc/admin-menu.php
-
message: "#^Variable \\$menu_page_slug might not be defined\\.$#"
count: 1
path: admin-core/views/admin-base.php
-
message: "#^Variable \\$page_action might not be defined\\.$#"
count: 1
path: admin-core/views/admin-base.php
-
message: "#^Method UAGB_Buttons_Child\\:\\:get_instance\\(\\) should return UAGB_Buttons_Child but returns instance\\.$#"
count: 1
path: blocks-config/buttons-child/class-uagb-buttons-child.php
-
message: "#^Method UAGB_Buttons_Child\\:\\:render_buttons_child\\(\\) has parameter \\$attributes with no value type specified in iterable type array\\.$#"
count: 1
path: blocks-config/buttons-child/class-uagb-buttons-child.php
-
message: "#^Method UAGB_Buttons_Child\\:\\:render_buttons_child\\(\\) should return string but returns mixed\\.$#"
count: 1
path: blocks-config/buttons-child/class-uagb-buttons-child.php
-
message: "#^Property UAGB_Buttons_Child\\:\\:\\$instance has unknown class instance as its type\\.$#"
count: 1
path: blocks-config/buttons-child/class-uagb-buttons-child.php
-
message: "#^Static property UAGB_Buttons_Child\\:\\:\\$instance \\(instance\\) does not accept UAGB_Buttons_Child\\.$#"
count: 1
path: blocks-config/buttons-child/class-uagb-buttons-child.php
-
message: "#^Static property UAGB_Buttons_Child\\:\\:\\$instance \\(instance\\) in isset\\(\\) is not nullable\\.$#"
count: 1
path: blocks-config/buttons-child/class-uagb-buttons-child.php
-
message: "#^Method UAGB_CF7_Styler\\:\\:get_instance\\(\\) has no return type specified\\.$#"
count: 1
path: blocks-config/cf7-styler/class-uagb-cf7-styler.php
-
message: "#^Method UAGB_CF7_Styler\\:\\:register_blocks\\(\\) has no return type specified\\.$#"
count: 1
path: blocks-config/cf7-styler/class-uagb-cf7-styler.php
-
message: "#^Method UAGB_CF7_Styler\\:\\:render_html\\(\\) has no return type specified\\.$#"
count: 1
path: blocks-config/cf7-styler/class-uagb-cf7-styler.php
-
message: "#^Method UAGB_CF7_Styler\\:\\:render_html\\(\\) has parameter \\$attributes with no value type specified in iterable type array\\.$#"
count: 1
path: blocks-config/cf7-styler/class-uagb-cf7-styler.php
-
message: "#^Parameter \\#1 \\$prefix of static method UAGB_Block_Helper\\:\\:uag_generate_php_border_attribute\\(\\) expects array, string given\\.$#"
count: 2
path: blocks-config/cf7-styler/class-uagb-cf7-styler.php
-
message: "#^Property UAGB_CF7_Styler\\:\\:\\$instance has unknown class instance as its type\\.$#"
count: 1
path: blocks-config/cf7-styler/class-uagb-cf7-styler.php
-
message: "#^Static property UAGB_CF7_Styler\\:\\:\\$instance \\(instance\\) does not accept UAGB_CF7_Styler\\.$#"
count: 1
path: blocks-config/cf7-styler/class-uagb-cf7-styler.php
-
message: "#^Static property UAGB_CF7_Styler\\:\\:\\$instance \\(instance\\) in isset\\(\\) is not nullable\\.$#"
count: 1
path: blocks-config/cf7-styler/class-uagb-cf7-styler.php
-
message: "#^Argument of an invalid type mixed supplied for foreach, only iterables are supported\\.$#"
count: 1
path: blocks-config/forms/class-uagb-forms.php
-
message: "#^Call to static method get_instance\\(\\) on an unknown class Astra_Target_Rules_Fields\\.$#"
count: 1
path: blocks-config/forms/class-uagb-forms.php
-
message: "#^Cannot access offset 'block_id' on mixed\\.$#"
count: 2
path: blocks-config/forms/class-uagb-forms.php
-
message: "#^Cannot access offset 'reCaptchaEnable' on mixed\\.$#"
count: 1
path: blocks-config/forms/class-uagb-forms.php
-
message: "#^Cannot access offset 'reCaptchaType' on mixed\\.$#"
count: 5
path: blocks-config/forms/class-uagb-forms.php
-
message: "#^Cannot access offset 'slug' on mixed\\.$#"
count: 1
path: blocks-config/forms/class-uagb-forms.php
-
message: "#^Cannot access property \\$success on mixed\\.$#"
count: 1
path: blocks-config/forms/class-uagb-forms.php
-
message: "#^Method UAGB_Forms\\:\\:get_fse_template_part\\(\\) has parameter \\$block_attr with no value type specified in iterable type array\\.$#"
count: 1
path: blocks-config/forms/class-uagb-forms.php
-
message: "#^Method UAGB_Forms\\:\\:get_instance\\(\\) has no return type specified\\.$#"
count: 1
path: blocks-config/forms/class-uagb-forms.php
-
message: "#^Method UAGB_Forms\\:\\:get_valid_emails\\(\\) has parameter \\$emails with no value type specified in iterable type array\\.$#"
count: 1
path: blocks-config/forms/class-uagb-forms.php
-
message: "#^Method UAGB_Forms\\:\\:get_valid_emails\\(\\) return type has no value type specified in iterable type array\\.$#"
count: 1
path: blocks-config/forms/class-uagb-forms.php
-
message: "#^Method UAGB_Forms\\:\\:process_forms\\(\\) has no return type specified\\.$#"
count: 1
path: blocks-config/forms/class-uagb-forms.php
-
message: "#^Method UAGB_Forms\\:\\:recursive_inner_forms\\(\\) has parameter \\$blocks_array with no value type specified in iterable type array\\.$#"
count: 1
path: blocks-config/forms/class-uagb-forms.php
-
message: "#^Method UAGB_Forms\\:\\:reusable_block_content_on_page\\(\\) return type has no value type specified in iterable type array\\.$#"
count: 1
path: blocks-config/forms/class-uagb-forms.php
-
message: "#^Method UAGB_Forms\\:\\:send_email\\(\\) has no return type specified\\.$#"
count: 1
path: blocks-config/forms/class-uagb-forms.php
-
message: "#^Method UAGB_Forms\\:\\:uagb_forms_block_attr_check\\(\\) has parameter \\$block_attr with no value type specified in iterable type array\\.$#"
count: 1
path: blocks-config/forms/class-uagb-forms.php
-
message: "#^Method UAGB_Forms\\:\\:uagb_forms_block_attr_check\\(\\) return type has no value type specified in iterable type array\\.$#"
count: 1
path: blocks-config/forms/class-uagb-forms.php
-
message: "#^Method UAGB_Forms\\:\\:uagb_forms_block_attr_check\\(\\) should return array but returns array\\|false\\.$#"
count: 1
path: blocks-config/forms/class-uagb-forms.php
-
message: "#^Parameter \\#1 \\$block_attr of method UAGB_Forms\\:\\:get_fse_template_part\\(\\) expects array, mixed given\\.$#"
count: 1
path: blocks-config/forms/class-uagb-forms.php
-
message: "#^Parameter \\#1 \\$body of method UAGB_Forms\\:\\:send_email\\(\\) expects object, string given\\.$#"
count: 1
path: blocks-config/forms/class-uagb-forms.php
-
message: "#^Parameter \\#1 \\$email of function sanitize_email expects string, mixed given\\.$#"
count: 1
path: blocks-config/forms/class-uagb-forms.php
-
message: "#^Parameter \\#1 \\$haystack of function stripos expects string, string\\|false given\\.$#"
count: 1
path: blocks-config/forms/class-uagb-forms.php
-
message: "#^Parameter \\#1 \\$post of function _build_block_template_result_from_post expects WP_Post, int\\|WP_Post given\\.$#"
count: 1
path: blocks-config/forms/class-uagb-forms.php
-
message: "#^Parameter \\#1 \\$reusable_ref_id of method UAGB_Forms\\:\\:reusable_block_content_on_page\\(\\) expects int, bool\\|int given\\.$#"
count: 1
path: blocks-config/forms/class-uagb-forms.php
-
message: "#^Parameter \\#1 \\$text of function esc_html expects string, mixed given\\.$#"
count: 4
path: blocks-config/forms/class-uagb-forms.php
-
message: "#^Parameter \\#2 \\$block_id of method UAGB_Forms\\:\\:recursive_inner_forms\\(\\) expects int, string given\\.$#"
count: 3
path: blocks-config/forms/class-uagb-forms.php
-
message: "#^Parameter \\#2 \\$form_data of method UAGB_Forms\\:\\:send_email\\(\\) expects object, mixed given\\.$#"
count: 1
path: blocks-config/forms/class-uagb-forms.php
-
message: "#^Parameter \\#2 \\$post of function get_post_field expects int\\|WP_Post\\|null, string given\\.$#"
count: 1
path: blocks-config/forms/class-uagb-forms.php
-
message: "#^Parameter \\#3 \\$args of method UAGB_Forms\\:\\:send_email\\(\\) expects object, mixed given\\.$#"
count: 1
path: blocks-config/forms/class-uagb-forms.php
-
message: "#^Parameter \\#3 \\$message of function wp_mail expects string, object given\\.$#"
count: 1
path: blocks-config/forms/class-uagb-forms.php
-
message: "#^Property UAGB_Forms\\:\\:\\$instance has unknown class instance as its type\\.$#"
count: 1
path: blocks-config/forms/class-uagb-forms.php
-
message: "#^Property UAGB_Forms\\:\\:\\$settings has unknown class settings as its type\\.$#"
count: 1
path: blocks-config/forms/class-uagb-forms.php
-
message: "#^Static property UAGB_Forms\\:\\:\\$instance \\(instance\\) does not accept UAGB_Forms\\.$#"
count: 1
path: blocks-config/forms/class-uagb-forms.php
-
message: "#^Static property UAGB_Forms\\:\\:\\$instance \\(instance\\) in isset\\(\\) is not nullable\\.$#"
count: 1
path: blocks-config/forms/class-uagb-forms.php
-
message: "#^Static property UAGB_Forms\\:\\:\\$settings is unused\\.$#"
count: 1
path: blocks-config/forms/class-uagb-forms.php
-
message: "#^Variable \\$to_emails might not be defined\\.$#"
count: 1
path: blocks-config/forms/class-uagb-forms.php
-
message: "#^Method UAGB_GF_Styler\\:\\:get_instance\\(\\) has no return type specified\\.$#"
count: 1
path: blocks-config/gf-styler/class-uagb-gf-styler.php
-
message: "#^Method UAGB_GF_Styler\\:\\:register_blocks\\(\\) has no return type specified\\.$#"
count: 1
path: blocks-config/gf-styler/class-uagb-gf-styler.php
-
message: "#^Method UAGB_GF_Styler\\:\\:render_html\\(\\) has no return type specified\\.$#"
count: 1
path: blocks-config/gf-styler/class-uagb-gf-styler.php
-
message: "#^Method UAGB_GF_Styler\\:\\:render_html\\(\\) has parameter \\$attributes with no value type specified in iterable type array\\.$#"
count: 1
path: blocks-config/gf-styler/class-uagb-gf-styler.php
-
message: "#^Property UAGB_GF_Styler\\:\\:\\$instance has unknown class instance as its type\\.$#"
count: 1
path: blocks-config/gf-styler/class-uagb-gf-styler.php
-
message: "#^Static property UAGB_GF_Styler\\:\\:\\$instance \\(instance\\) does not accept UAGB_GF_Styler\\.$#"
count: 1
path: blocks-config/gf-styler/class-uagb-gf-styler.php
-
message: "#^Static property UAGB_GF_Styler\\:\\:\\$instance \\(instance\\) in isset\\(\\) is not nullable\\.$#"
count: 1
path: blocks-config/gf-styler/class-uagb-gf-styler.php
-
message: "#^Cannot access offset 'address' on mixed\\.$#"
count: 2
path: blocks-config/google-map/class-uagb-google-map.php
-
message: "#^Cannot access offset 'block_id' on mixed\\.$#"
count: 1
path: blocks-config/google-map/class-uagb-google-map.php
-
message: "#^Cannot access offset 'height' on mixed\\.$#"
count: 2
path: blocks-config/google-map/class-uagb-google-map.php
-
message: "#^Cannot access offset 'language' on mixed\\.$#"
count: 2
path: blocks-config/google-map/class-uagb-google-map.php
-
message: "#^Cannot access offset 'zIndex' on mixed\\.$#"
count: 3
path: blocks-config/google-map/class-uagb-google-map.php
-
message: "#^Cannot access offset 'zIndexMobile' on mixed\\.$#"
count: 3
path: blocks-config/google-map/class-uagb-google-map.php
-
message: "#^Cannot access offset 'zIndexTablet' on mixed\\.$#"
count: 3
path: blocks-config/google-map/class-uagb-google-map.php
-
message: "#^Cannot access offset 'zoom' on mixed\\.$#"
count: 2
path: blocks-config/google-map/class-uagb-google-map.php
-
message: "#^Method UAGB_Google_Map\\:\\:get_instance\\(\\) has no return type specified\\.$#"
count: 1
path: blocks-config/google-map/class-uagb-google-map.php
-
message: "#^Method UAGB_Google_Map\\:\\:google_map_callback\\(\\) has no return type specified\\.$#"
count: 1
path: blocks-config/google-map/class-uagb-google-map.php
-
message: "#^Method UAGB_Google_Map\\:\\:google_map_callback\\(\\) has parameter \\$attributes with no value type specified in iterable type array\\.$#"
count: 1
path: blocks-config/google-map/class-uagb-google-map.php
-
message: "#^Method UAGB_Google_Map\\:\\:register_blocks\\(\\) has no return type specified\\.$#"
count: 1
path: blocks-config/google-map/class-uagb-google-map.php
-
message: "#^Parameter \\#1 \\$str of function rawurlencode expects string, mixed given\\.$#"
count: 1
path: blocks-config/google-map/class-uagb-google-map.php
-
message: "#^Parameter \\#1 \\$var of function floatval expects array\\|bool\\|float\\|int\\|resource\\|string\\|null, mixed given\\.$#"
count: 1
path: blocks-config/google-map/class-uagb-google-map.php
-
message: "#^Parameter \\#2 \\$search of function array_key_exists expects array, mixed given\\.$#"
count: 3
path: blocks-config/google-map/class-uagb-google-map.php
-
message: "#^Parameter \\#1 \\$string of function rawurlencode expects string, mixed given\\.$#"
count: 1
path: blocks-config/google-map/class-uagb-google-map.php
-
message: "#^Parameter \\#1 \\$value of function floatval expects array\\|bool\\|float\\|int\\|resource\\|string\\|null, mixed given\\.$#"
count: 1
path: blocks-config/google-map/class-uagb-google-map.php
-
message: "#^Parameter \\#2 \\$array of function array_key_exists expects array, mixed given\\.$#"
count: 3
path: blocks-config/google-map/class-uagb-google-map.php
-
message: "#^Property UAGB_Google_Map\\:\\:\\$instance has unknown class instance as its type\\.$#"
count: 1
path: blocks-config/google-map/class-uagb-google-map.php
-
message: "#^Static property UAGB_Google_Map\\:\\:\\$instance \\(instance\\) does not accept UAGB_Google_Map\\.$#"
count: 1
path: blocks-config/google-map/class-uagb-google-map.php
-
message: "#^Static property UAGB_Google_Map\\:\\:\\$instance \\(instance\\) in isset\\(\\) is not nullable\\.$#"
count: 1
path: blocks-config/google-map/class-uagb-google-map.php
-
message: "#^Argument of an invalid type mixed supplied for foreach, only iterables are supported\\.$#"
count: 2
path: blocks-config/image-gallery/class-spectra-image-gallery.php
-
message: "#^Binary operation \"\\.\" between non\\-falsy\\-string and array results in an error\\.$#"
count: 1
path: blocks-config/image-gallery/class-spectra-image-gallery.php
-
message: "#^Cannot access offset 'gridPageNumber' on mixed\\.$#"
count: 2
path: blocks-config/image-gallery/class-spectra-image-gallery.php
-
message: "#^Cannot access offset mixed on mixed\\.$#"
count: 2
path: blocks-config/image-gallery/class-spectra-image-gallery.php
-
message: "#^Method Spectra_Image_Gallery\\:\\:get_gallery_images\\(\\) has no return type specified\\.$#"
count: 1
path: blocks-config/image-gallery/class-spectra-image-gallery.php
-
message: "#^Method Spectra_Image_Gallery\\:\\:get_gallery_images\\(\\) has parameter \\$attributes with no value type specified in iterable type array\\.$#"
count: 1
path: blocks-config/image-gallery/class-spectra-image-gallery.php
-
message: "#^Method Spectra_Image_Gallery\\:\\:get_instance\\(\\) has no return type specified\\.$#"
count: 1
path: blocks-config/image-gallery/class-spectra-image-gallery.php
-
message: "#^Method Spectra_Image_Gallery\\:\\:register_image_gallery\\(\\) has no return type specified\\.$#"
count: 1
path: blocks-config/image-gallery/class-spectra-image-gallery.php
-
message: "#^Method Spectra_Image_Gallery\\:\\:render_frontend_carousel_layout\\(\\) has no return type specified\\.$#"
count: 1
path: blocks-config/image-gallery/class-spectra-image-gallery.php
-
message: "#^Method Spectra_Image_Gallery\\:\\:render_frontend_carousel_layout\\(\\) has parameter \\$settings with no value type specified in iterable type array\\.$#"
count: 1
path: blocks-config/image-gallery/class-spectra-image-gallery.php
-
message: "#^Method Spectra_Image_Gallery\\:\\:render_frontend_grid_pagination\\(\\) has no return type specified\\.$#"
count: 1
path: blocks-config/image-gallery/class-spectra-image-gallery.php
-
message: "#^Method Spectra_Image_Gallery\\:\\:render_frontend_grid_pagination\\(\\) has parameter \\$attr with no value type specified in iterable type array\\.$#"
count: 1
path: blocks-config/image-gallery/class-spectra-image-gallery.php
-
message: "#^Method Spectra_Image_Gallery\\:\\:render_frontend_lightbox\\(\\) has parameter \\$attr with no value type specified in iterable type array\\.$#"
count: 1
path: blocks-config/image-gallery/class-spectra-image-gallery.php
-
message: "#^Method Spectra_Image_Gallery\\:\\:render_frontend_lightbox\\(\\) has parameter \\$lightbox_settings with no value type specified in iterable type array\\.$#"
count: 1
path: blocks-config/image-gallery/class-spectra-image-gallery.php
-
message: "#^Method Spectra_Image_Gallery\\:\\:render_frontend_lightbox\\(\\) has parameter \\$thumbnail_settings with no value type specified in iterable type array\\.$#"
count: 1
path: blocks-config/image-gallery/class-spectra-image-gallery.php
-
message: "#^Method Spectra_Image_Gallery\\:\\:render_frontend_lightbox\\(\\) should return string but returns string\\|false\\.$#"
count: 1
path: blocks-config/image-gallery/class-spectra-image-gallery.php
-
message: "#^Method Spectra_Image_Gallery\\:\\:render_frontend_masonry_layout\\(\\) has no return type specified\\.$#"
count: 1
path: blocks-config/image-gallery/class-spectra-image-gallery.php
-
message: "#^Method Spectra_Image_Gallery\\:\\:render_frontend_masonry_layout\\(\\) has parameter \\$attr with no value type specified in iterable type array\\.$#"
count: 1
path: blocks-config/image-gallery/class-spectra-image-gallery.php
-
message: "#^Method Spectra_Image_Gallery\\:\\:render_frontend_tiled_layout\\(\\) has no return type specified\\.$#"
count: 1
path: blocks-config/image-gallery/class-spectra-image-gallery.php
-
message: "#^Method Spectra_Image_Gallery\\:\\:render_grid_pagination\\(\\) has no return type specified\\.$#"
count: 1
path: blocks-config/image-gallery/class-spectra-image-gallery.php
-
message: "#^Method Spectra_Image_Gallery\\:\\:render_grid_pagination_controls\\(\\) has no return type specified\\.$#"
count: 1
path: blocks-config/image-gallery/class-spectra-image-gallery.php
-
message: "#^Method Spectra_Image_Gallery\\:\\:render_grid_pagination_controls\\(\\) has parameter \\$attributes with no value type specified in iterable type array\\.$#"
count: 1
path: blocks-config/image-gallery/class-spectra-image-gallery.php
-
message: "#^Method Spectra_Image_Gallery\\:\\:render_image_click\\(\\) has parameter \\$media_gallery with no value type specified in iterable type array\\.$#"
count: 1
path: blocks-config/image-gallery/class-spectra-image-gallery.php
-
message: "#^Method Spectra_Image_Gallery\\:\\:render_image_click\\(\\) should return string but returns string\\|false\\.$#"
count: 1
path: blocks-config/image-gallery/class-spectra-image-gallery.php
-
message: "#^Method Spectra_Image_Gallery\\:\\:render_initial_grid\\(\\) has no return type specified\\.$#"
count: 1
path: blocks-config/image-gallery/class-spectra-image-gallery.php
-
message: "#^Method Spectra_Image_Gallery\\:\\:render_initial_grid\\(\\) has parameter \\$attributes with no value type specified in iterable type array\\.$#"
count: 1
path: blocks-config/image-gallery/class-spectra-image-gallery.php
-
message: "#^Method Spectra_Image_Gallery\\:\\:render_lightbox\\(\\) has parameter \\$attributes with no value type specified in iterable type array\\.$#"
count: 1
path: blocks-config/image-gallery/class-spectra-image-gallery.php
-
message: "#^Method Spectra_Image_Gallery\\:\\:render_masonry_hover_handler\\(\\) has no return type specified\\.$#"
count: 1
path: blocks-config/image-gallery/class-spectra-image-gallery.php
-
message: "#^Method Spectra_Image_Gallery\\:\\:render_masonry_hover_handler\\(\\) has parameter \\$atts with no value type specified in iterable type array\\.$#"
count: 1
path: blocks-config/image-gallery/class-spectra-image-gallery.php
-
message: "#^Method Spectra_Image_Gallery\\:\\:render_masonry_hover_handler\\(\\) has parameter \\$mediaArray with no value type specified in iterable type array\\.$#"
count: 1
path: blocks-config/image-gallery/class-spectra-image-gallery.php
-
message: "#^Method Spectra_Image_Gallery\\:\\:render_masonry_pagination\\(\\) has no return type specified\\.$#"
count: 1
path: blocks-config/image-gallery/class-spectra-image-gallery.php
-
message: "#^Method Spectra_Image_Gallery\\:\\:render_masonry_pagination_controls\\(\\) has no return type specified\\.$#"
count: 1
path: blocks-config/image-gallery/class-spectra-image-gallery.php
-
message: "#^Method Spectra_Image_Gallery\\:\\:render_masonry_pagination_controls\\(\\) has parameter \\$attributes with no value type specified in iterable type array\\.$#"
count: 1
path: blocks-config/image-gallery/class-spectra-image-gallery.php
-
message: "#^Method Spectra_Image_Gallery\\:\\:render_media_caption\\(\\) has no return type specified\\.$#"
count: 1
path: blocks-config/image-gallery/class-spectra-image-gallery.php
-
message: "#^Method Spectra_Image_Gallery\\:\\:render_media_caption\\(\\) has parameter \\$atts with no value type specified in iterable type array\\.$#"
count: 1
path: blocks-config/image-gallery/class-spectra-image-gallery.php
-
message: "#^Method Spectra_Image_Gallery\\:\\:render_media_caption\\(\\) has parameter \\$mediaArray with no value type specified in iterable type array\\.$#"
count: 1
path: blocks-config/image-gallery/class-spectra-image-gallery.php
-