-
-
Notifications
You must be signed in to change notification settings - Fork 8
/
.phpstan.baseline.neon
6901 lines (5522 loc) · 262 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: "#^Call to an undefined method Mage_Core_Model_Abstract\\:\\:addError\\(\\)\\.$#"
count: 1
path: app/Mage.php
-
message: "#^Right side of && is always false\\.$#"
count: 1
path: app/Mage.php
-
message: "#^Comparison operation \"\\=\\=\" between \\(Varien_Simplexml_Element\\|null\\) and 1 results in an error\\.$#"
count: 1
path: app/code/core/Mage/Admin/Model/Config.php
-
message: "#^Cannot call method getClassName\\(\\) on SimpleXMLElement\\|false\\.$#"
count: 1
path: app/code/core/Mage/Admin/Model/Resource/Acl.php
-
message: "#^Method Mage_Admin_Model_Resource_User\\:\\:_encryptPassword\\(\\) is unused\\.$#"
count: 1
path: app/code/core/Mage/Admin/Model/Resource/User.php
-
message: "#^Call to an undefined method Mage_Admin_Model_Resource_Roles\\:\\:update\\(\\)\\.$#"
count: 1
path: app/code/core/Mage/Admin/Model/Roles.php
-
message: "#^Comparison operation \"\\=\\=\" between \\(Varien_Simplexml_Element\\|null\\) and 1 results in an error\\.$#"
count: 1
path: app/code/core/Mage/Admin/Model/Roles.php
-
message: "#^Call to an undefined method Mage_Admin_Model_Resource_Rules\\:\\:update\\(\\)\\.$#"
count: 1
path: app/code/core/Mage/Admin/Model/Rules.php
-
message: "#^If condition is always true\\.$#"
count: 1
path: app/code/core/Mage/Adminhtml/Block/Api/Tab/Rolesedit.php
-
message: "#^Call to an undefined method Mage_Api_Model_Resource_Roles_User_Collection\\:\\:setUserFilter\\(\\)\\.$#"
count: 1
path: app/code/core/Mage/Adminhtml/Block/Api/Tab/Userroles.php
-
message: "#^Cannot call method addAttributeToSelect\\(\\) on Mage_Core_Model_Resource_Db_Collection_Abstract\\|false\\.$#"
count: 1
path: app/code/core/Mage/Adminhtml/Block/Catalog/Category/Widget/Chooser.php
-
message: "#^Method Mage_Eav_Model_Entity_Attribute_Source_Interface\\:\\:getAllOptions\\(\\) invoked with 2 parameters, 0 required\\.$#"
count: 1
path: app/code/core/Mage/Adminhtml/Block/Catalog/Product/Edit/Tab/Super/Config/Simple.php
-
message: "#^Method Mage_Catalog_Model_Product_Type_Configurable\\:\\:canUseAttribute\\(\\) invoked with 2 parameters, 1 required\\.$#"
count: 1
path: app/code/core/Mage/Adminhtml/Block/Catalog/Product/Edit/Tab/Super/Settings.php
-
message: "#^Property Mage_Adminhtml_Block_Customer_Edit_Tab_View_Sales\\:\\:\\$_collection \\(Mage_Sales_Model_Entity_Sale_Collection\\) does not accept Varien_Data_Collection_Db\\.$#"
count: 1
path: app/code/core/Mage/Adminhtml/Block/Customer/Edit/Tab/View/Sales.php
-
message: "#^Method Mage_Wishlist_Model_Resource_Item_Collection\\:\\:addDaysInWishlist\\(\\) invoked with 1 parameter, 0 required\\.$#"
count: 1
path: app/code/core/Mage/Adminhtml/Block/Customer/Edit/Tab/View/Wishlist.php
-
message: "#^Method Mage_Adminhtml_Block_Customer_Sales_Order_Address_Form_Renderer_Vat\\:\\:getValidateButton\\(\\) should return Mage_Adminhtml_Block_Widget_Button but returns Mage_Core_Block_Abstract\\.$#"
count: 1
path: app/code/core/Mage/Adminhtml/Block/Customer/Sales/Order/Address/Form/Renderer/Vat.php
-
message: "#^Property Mage_Adminhtml_Block_Customer_Sales_Order_Address_Form_Renderer_Vat\\:\\:\\$_validateButton \\(Mage_Adminhtml_Block_Widget_Button\\|null\\) does not accept Mage_Core_Block_Abstract\\.$#"
count: 1
path: app/code/core/Mage/Adminhtml/Block/Customer/Sales/Order/Address/Form/Renderer/Vat.php
-
message: "#^Access to an undefined property Mage_Adminhtml_Block_Notification_Window\\:\\:\\$_aclResourcePath\\.$#"
count: 1
path: app/code/core/Mage/Adminhtml/Block/Notification/Window.php
-
message: "#^Comparison operation \"\\=\\=\" between \\(Varien_Simplexml_Element\\|null\\) and 1 results in an error\\.$#"
count: 1
path: app/code/core/Mage/Adminhtml/Block/Page/Menu.php
-
message: "#^Call to method getCollection\\(\\) on an unknown class Mage_Permissions_Model_Users\\.$#"
count: 1
path: app/code/core/Mage/Adminhtml/Block/Permissions/Grid/User.php
-
message: "#^If condition is always true\\.$#"
count: 1
path: app/code/core/Mage/Adminhtml/Block/Permissions/Tab/Rolesedit.php
-
message: "#^Call to an undefined method Mage_Admin_Model_Resource_Roles_User_Collection\\:\\:setUserFilter\\(\\)\\.$#"
count: 1
path: app/code/core/Mage/Adminhtml/Block/Permissions/Tab/Userroles.php
-
message: "#^Call to method getCollection\\(\\) on an unknown class Mage_Permissions_Model_Roles\\.$#"
count: 1
path: app/code/core/Mage/Adminhtml/Block/Permissions/Usernroles.php
-
message: "#^Call to method getCollection\\(\\) on an unknown class Mage_Permissions_Model_Users\\.$#"
count: 1
path: app/code/core/Mage/Adminhtml/Block/Permissions/Usernroles.php
-
message: "#^Method Mage_Adminhtml_Block_Report_Grid_Abstract\\:\\:getCollection\\(\\) should return Mage_Core_Model_Resource_Db_Collection_Abstract\\|Mage_Reports_Model_Grouped_Collection but returns Varien_Data_Collection_Db\\|null\\.$#"
count: 1
path: app/code/core/Mage/Adminhtml/Block/Report/Grid/Abstract.php
-
message: "#^Property Mage_Adminhtml_Block_Report_Grid_Abstract\\:\\:\\$_columnGroupBy \\(string\\) in isset\\(\\) is not nullable\\.$#"
count: 1
path: app/code/core/Mage/Adminhtml/Block/Report/Grid/Abstract.php
-
message: "#^Call to an undefined method Mage_Eav_Model_Entity_Abstract\\:\\:setStore\\(\\)\\.$#"
count: 1
path: app/code/core/Mage/Adminhtml/Block/Report/Product/Grid.php
-
message: "#^Method Mage_Reports_Model_Totals\\:\\:countTotals\\(\\) invoked with 1 parameter, 3 required\\.$#"
count: 1
path: app/code/core/Mage/Adminhtml/Block/Report/Product/Grid.php
-
message: "#^Return type \\(int\\) of method Mage_Adminhtml_Block_Review_Grid_Filter_Type\\:\\:getCondition\\(\\) should be compatible with return type \\(array\\|null\\) of method Mage_Adminhtml_Block_Widget_Grid_Column_Filter_Select\\:\\:getCondition\\(\\)$#"
count: 1
path: app/code/core/Mage/Adminhtml/Block/Review/Grid/Filter/Type.php
-
message: "#^Method Mage_Adminhtml_Block_Sales_Order_Create_Billing_Address\\:\\:getAddress\\(\\) should return Mage_Customer_Model_Address but returns Mage_Sales_Model_Quote_Address\\.$#"
count: 1
path: app/code/core/Mage/Adminhtml/Block/Sales/Order/Create/Billing/Address.php
-
message: "#^Method Mage_Adminhtml_Block_Sales_Order_Create_Giftmessage_Form\\:\\:getEntity\\(\\) should return Varien_Object but returns Mage_Eav_Model_Entity_Abstract\\.$#"
count: 1
path: app/code/core/Mage/Adminhtml/Block/Sales/Order/Create/Giftmessage/Form.php
-
message: "#^Property Mage_Adminhtml_Block_Sales_Order_Create_Giftmessage_Form\\:\\:\\$_entity \\(Mage_Eav_Model_Entity_Abstract\\) does not accept Varien_Object\\.$#"
count: 1
path: app/code/core/Mage/Adminhtml/Block/Sales/Order/Create/Giftmessage/Form.php
-
message: "#^Call to method getIsOldCustomer\\(\\) on an unknown class Mage_Adminhtml_Model_Quote\\.$#"
count: 1
path: app/code/core/Mage/Adminhtml/Block/Sales/Order/Create/Newsletter.php
-
message: "#^Method Mage_Adminhtml_Block_Sales_Order_Create_Shipping_Address\\:\\:getAddress\\(\\) should return Mage_Customer_Model_Address but returns Mage_Sales_Model_Quote_Address\\.$#"
count: 1
path: app/code/core/Mage/Adminhtml/Block/Sales/Order/Create/Shipping/Address.php
-
message: "#^Method Mage_Catalog_Model_Resource_Product_Compare_Item_Collection\\:\\:useProductItem\\(\\) invoked with 1 parameter, 0 required\\.$#"
count: 1
path: app/code/core/Mage/Adminhtml/Block/Sales/Order/Create/Sidebar/Compared.php
-
message: "#^Method Mage_Catalog_Model_Resource_Product_Compare_Item_Collection\\:\\:useProductItem\\(\\) invoked with 1 parameter, 0 required\\.$#"
count: 1
path: app/code/core/Mage/Adminhtml/Block/Sales/Order/Create/Sidebar/Pcompared.php
-
message: "#^Call to an undefined method Mage_Adminhtml_Block_Sales_Order_Creditmemo_Create_Adjustments\\:\\:addTotal\\(\\)\\.$#"
count: 1
path: app/code/core/Mage/Adminhtml/Block/Sales/Order/Creditmemo/Create/Adjustments.php
-
message: "#^Call to an undefined method Mage_Adminhtml_Block_Sales_Order_Creditmemo_Create_Adjustments\\:\\:removeTotal\\(\\)\\.$#"
count: 3
path: app/code/core/Mage/Adminhtml/Block/Sales/Order/Creditmemo/Create/Adjustments.php
-
message: "#^Return type \\(Mage_Sales_Model_Order_Creditmemo\\) of method Mage_Adminhtml_Block_Sales_Order_Creditmemo_Create_Items\\:\\:getSource\\(\\) should be compatible with return type \\(Mage_Sales_Model_Order_Invoice\\) of method Mage_Adminhtml_Block_Sales_Items_Abstract\\:\\:getSource\\(\\)$#"
count: 1
path: app/code/core/Mage/Adminhtml/Block/Sales/Order/Creditmemo/Create/Items.php
-
message: "#^Return type \\(Mage_Sales_Model_Order_Creditmemo\\) of method Mage_Adminhtml_Block_Sales_Order_Creditmemo_View_Items\\:\\:getSource\\(\\) should be compatible with return type \\(Mage_Sales_Model_Order_Invoice\\) of method Mage_Adminhtml_Block_Sales_Items_Abstract\\:\\:getSource\\(\\)$#"
count: 1
path: app/code/core/Mage/Adminhtml/Block/Sales/Order/Creditmemo/View/Items.php
-
message: "#^Return type \\(Mage_Sales_Model_Order_Shipment\\) of method Mage_Adminhtml_Block_Sales_Order_Shipment_Create_Items\\:\\:getSource\\(\\) should be compatible with return type \\(Mage_Sales_Model_Order_Invoice\\) of method Mage_Adminhtml_Block_Sales_Items_Abstract\\:\\:getSource\\(\\)$#"
count: 1
path: app/code/core/Mage/Adminhtml/Block/Sales/Order/Shipment/Create/Items.php
-
message: "#^Call to an undefined method Mage_Shipping_Model_Carrier_Abstract\\:\\:isGirthAllowed\\(\\)\\.$#"
count: 1
path: app/code/core/Mage/Adminhtml/Block/Sales/Order/Shipment/Packaging.php
-
message: "#^Method Mage_Adminhtml_Block_Sales_Order_Shipment_Packaging\\:\\:getQtyOrderedItem\\(\\) should return int\\|null but empty return statement found\\.$#"
count: 1
path: app/code/core/Mage/Adminhtml/Block/Sales/Order/Shipment/Packaging.php
-
message: "#^Return type \\(Mage_Sales_Model_Order_Shipment\\) of method Mage_Adminhtml_Block_Sales_Order_Shipment_View_Items\\:\\:getSource\\(\\) should be compatible with return type \\(Mage_Sales_Model_Order_Invoice\\) of method Mage_Adminhtml_Block_Sales_Items_Abstract\\:\\:getSource\\(\\)$#"
count: 1
path: app/code/core/Mage/Adminhtml/Block/Sales/Order/Shipment/View/Items.php
-
message: "#^Property Mage_Adminhtml_Block_Sales_Order_View_Items_Renderer_Default\\:\\:\\$_giftMessage \\(Mage_GiftMessage_Model_Message\\) does not accept default value of type array\\.$#"
count: 1
path: app/code/core/Mage/Adminhtml/Block/Sales/Order/View/Items/Renderer/Default.php
-
message: "#^Call to an undefined method Mage_Core_Model_Resource_Db_Collection_Abstract\\:\\:setOrderFilter\\(\\)\\.$#"
count: 1
path: app/code/core/Mage/Adminhtml/Block/Sales/Order/View/Tab/Creditmemos.php
-
message: "#^Call to an undefined method Mage_Core_Model_Resource_Db_Collection_Abstract\\:\\:setOrderFilter\\(\\)\\.$#"
count: 1
path: app/code/core/Mage/Adminhtml/Block/Sales/Order/View/Tab/Invoices.php
-
message: "#^Call to an undefined method Mage_Core_Model_Resource_Db_Collection_Abstract\\:\\:setOrderFilter\\(\\)\\.$#"
count: 1
path: app/code/core/Mage/Adminhtml/Block/Sales/Order/View/Tab/Shipments.php
-
message: "#^Property Mage_Adminhtml_Block_Shipping_Carrier_Tablerate_Grid\\:\\:\\$_conditionName \\(string\\) does not accept int\\.$#"
count: 1
path: app/code/core/Mage/Adminhtml/Block/Shipping/Carrier/Tablerate/Grid.php
-
message: "#^Property Mage_Adminhtml_Block_Store_Switcher_Form_Renderer_Fieldset\\:\\:\\$_element \\(Varien_Data_Form_Element_Fieldset\\) does not accept Varien_Data_Form_Element_Abstract\\.$#"
count: 1
path: app/code/core/Mage/Adminhtml/Block/Store/Switcher/Form/Renderer/Fieldset.php
-
message: "#^Property Mage_Adminhtml_Block_Store_Switcher_Form_Renderer_Fieldset_Element\\:\\:\\$_element \\(Varien_Data_Form_Element_Fieldset\\) does not accept Varien_Data_Form_Element_Abstract\\.$#"
count: 1
path: app/code/core/Mage/Adminhtml/Block/Store/Switcher/Form/Renderer/Fieldset/Element.php
-
message: "#^Cannot call method initForm\\(\\) on Mage_Core_Block_Abstract\\|false\\.$#"
count: 1
path: app/code/core/Mage/Adminhtml/Block/System/Config/Edit.php
-
message: "#^Variable \\$attributes might not be defined\\.$#"
count: 1
path: app/code/core/Mage/Adminhtml/Block/System/Convert/Gui/Edit/Tab/Wizard.php
-
message: "#^Variable \\$img might not be defined\\.$#"
count: 1
path: app/code/core/Mage/Adminhtml/Block/System/Convert/Profile/Run.php
-
message: "#^Variable \\$liStyle might not be defined\\.$#"
count: 1
path: app/code/core/Mage/Adminhtml/Block/System/Convert/Profile/Run.php
-
message: "#^Method Mage_Core_Model_Email_Template\\:\\:getProcessedTemplate\\(\\) invoked with 2 parameters, 0\\-1 required\\.$#"
count: 1
path: app/code/core/Mage/Adminhtml/Block/System/Email/Template/Preview.php
-
message: "#^Call to an undefined method Mage_Tag_Model_Resource_Tag_Collection\\:\\:addAttributeToFilter\\(\\)\\.$#"
count: 1
path: app/code/core/Mage/Adminhtml/Block/Tag/Grid/All.php
-
message: "#^Binary operation \"\\*\" between string and 1 results in an error\\.$#"
count: 1
path: app/code/core/Mage/Adminhtml/Block/Tax/Rate/Grid/Renderer/Data.php
-
message: "#^Method Mage_Adminhtml_Block_Widget_Container\\:\\:_addButtonChildBlock\\(\\) should return Mage_Adminhtml_Block_Widget_Button but returns Mage_Core_Block_Abstract\\|false\\.$#"
count: 1
path: app/code/core/Mage/Adminhtml/Block/Widget/Container.php
-
message: "#^Method Mage_Eav_Model_Entity_Attribute_Source_Interface\\:\\:getAllOptions\\(\\) invoked with 2 parameters, 0 required\\.$#"
count: 2
path: app/code/core/Mage/Adminhtml/Block/Widget/Form.php
-
message: "#^Binary operation \"\\*\" between string and 1 results in an error\\.$#"
count: 1
path: app/code/core/Mage/Adminhtml/Block/Widget/Grid/Column/Renderer/Number.php
-
message: "#^Call to an undefined method Mage_Adminhtml_Block_Widget_Tab_Interface\\:\\:getSkipGenerateContent\\(\\)\\.$#"
count: 1
path: app/code/core/Mage/Adminhtml/Block/Widget/Tabs.php
-
message: "#^Call to an undefined method Mage_Adminhtml_Block_Widget_Tab_Interface\\:\\:getTabId\\(\\)\\.$#"
count: 1
path: app/code/core/Mage/Adminhtml/Block/Widget/Tabs.php
-
message: "#^Call to an undefined method Mage_Adminhtml_Block_Widget_Tab_Interface\\:\\:toHtml\\(\\)\\.$#"
count: 1
path: app/code/core/Mage/Adminhtml/Block/Widget/Tabs.php
-
message: "#^PHPDoc tag @param references unknown parameter\\: \\$tabNId$#"
count: 1
path: app/code/core/Mage/Adminhtml/Block/Widget/Tabs.php
-
message: "#^Return type \\(Mage_Admin_Model_Session\\) of method Mage_Adminhtml_Controller_Report_Abstract\\:\\:_getSession\\(\\) should be compatible with return type \\(Mage_Adminhtml_Model_Session\\) of method Mage_Adminhtml_Controller_Action\\:\\:_getSession\\(\\)$#"
count: 1
path: app/code/core/Mage/Adminhtml/Controller/Report/Abstract.php
-
message: "#^Property Mage_Adminhtml_Model_Config\\:\\:\\$_config \\(Mage_Core_Model_Config_Base\\) does not accept Varien_Simplexml_Config\\.$#"
count: 1
path: app/code/core/Mage/Adminhtml/Model/Config.php
-
message: "#^Call to an undefined method Mage_Adminhtml_Model_Config_Data\\:\\:__\\(\\)\\.$#"
count: 1
path: app/code/core/Mage/Adminhtml/Model/Config/Data.php
-
message: "#^Method Mage_Eav_Model_Entity_Abstract\\:\\:load\\(\\) invoked with 1 parameter, 2\\-3 required\\.$#"
count: 1
path: app/code/core/Mage/Adminhtml/Model/Giftmessage/Save.php
-
message: "#^Variable \\$billingAddress might not be defined\\.$#"
count: 2
path: app/code/core/Mage/Adminhtml/Model/Sales/Order/Create.php
-
message: "#^Variable \\$shippingAddress might not be defined\\.$#"
count: 1
path: app/code/core/Mage/Adminhtml/Model/Sales/Order/Create.php
-
message: "#^Call to an undefined method Mage_Sales_Model_Order\\:\\:createFromQuoteAddress\\(\\)\\.$#"
count: 1
path: app/code/core/Mage/Adminhtml/Model/Sales/Order/Random.php
-
message: "#^Call to an undefined method Mage_Sales_Model_Order\\:\\:validate\\(\\)\\.$#"
count: 1
path: app/code/core/Mage/Adminhtml/Model/Sales/Order/Random.php
-
message: "#^Call to an undefined method Mage_Sales_Model_Quote\\:\\:addCatalogProduct\\(\\)\\.$#"
count: 1
path: app/code/core/Mage/Adminhtml/Model/Sales/Order/Random.php
-
message: "#^Comparison operation \"\\=\\=\" between \\(Varien_Simplexml_Element\\|null\\) and 1 results in an error\\.$#"
count: 1
path: app/code/core/Mage/Adminhtml/Model/System/Config/Source/Admin/Page.php
-
message: "#^Method Varien_Data_Collection\\:\\:toOptionArray\\(\\) invoked with 1 parameter, 0 required\\.$#"
count: 1
path: app/code/core/Mage/Adminhtml/Model/System/Config/Source/Country.php
-
message: "#^Variable \\$values might not be defined\\.$#"
count: 1
path: app/code/core/Mage/Adminhtml/Model/System/Store.php
-
message: "#^Return type \\(Mage_Adminhtml_Helper_Catalog_Product_Edit_Action_Attribute\\) of method Mage_Adminhtml_Catalog_Product_Action_AttributeController\\:\\:_getHelper\\(\\) should be compatible with return type \\(Mage_Adminhtml_Helper_Data\\) of method Mage_Adminhtml_Controller_Action\\:\\:_getHelper\\(\\)$#"
count: 1
path: app/code/core/Mage/Adminhtml/controllers/Catalog/Product/Action/AttributeController.php
-
message: "#^Ternary operator condition is always true\\.$#"
count: 1
path: app/code/core/Mage/Adminhtml/controllers/Catalog/Product/SetController.php
-
message: "#^Method Mage_Adminhtml_Controller_Action\\:\\:_setForcedFormKeyActions\\(\\) invoked with 2 parameters, 1 required\\.$#"
count: 1
path: app/code/core/Mage/Adminhtml/controllers/Catalog/SearchController.php
-
message: "#^Property Mage_Adminhtml_Customer_Wishlist_Product_Composite_WishlistController\\:\\:\\$_wishlistItem \\(Mage_Wishlist_Model_Wishlist\\) does not accept Mage_Wishlist_Model_Item\\.$#"
count: 1
path: app/code/core/Mage/Adminhtml/controllers/Customer/Wishlist/Product/Composite/WishlistController.php
-
message: "#^Variable \\$id in isset\\(\\) always exists and is not nullable\\.$#"
count: 1
path: app/code/core/Mage/Adminhtml/controllers/Permissions/BlockController.php
-
message: "#^Variable \\$id in isset\\(\\) always exists and is not nullable\\.$#"
count: 1
path: app/code/core/Mage/Adminhtml/controllers/Permissions/VariableController.php
-
message: "#^Cannot call method aggregate\\(\\) on Mage_Core_Model_Resource_Db_Collection_Abstract\\|false\\.$#"
count: 2
path: app/code/core/Mage/Adminhtml/controllers/Report/StatisticsController.php
-
message: "#^Return type \\(Mage_Admin_Model_Session\\) of method Mage_Adminhtml_Report_StatisticsController\\:\\:_getSession\\(\\) should be compatible with return type \\(Mage_Adminhtml_Model_Session\\) of method Mage_Adminhtml_Controller_Action\\:\\:_getSession\\(\\)$#"
count: 1
path: app/code/core/Mage/Adminhtml/controllers/Report/StatisticsController.php
-
message: "#^Method Mage_Adminhtml_Model_Sales_Order_Create\\:\\:moveQuoteItem\\(\\) invoked with 2 parameters, 3 required\\.$#"
count: 1
path: app/code/core/Mage/Adminhtml/controllers/Sales/Order/CreateController.php
-
message: "#^Method Mage_Adminhtml_Model_Sales_Order_Create\\:\\:resetShippingMethod\\(\\) invoked with 1 parameter, 0 required\\.$#"
count: 1
path: app/code/core/Mage/Adminhtml/controllers/Sales/Order/CreateController.php
-
message: "#^Return type \\(Mage_Adminhtml_Model_Session_Quote\\) of method Mage_Adminhtml_Sales_Order_CreateController\\:\\:_getSession\\(\\) should be compatible with return type \\(Mage_Adminhtml_Model_Session\\) of method Mage_Adminhtml_Controller_Action\\:\\:_getSession\\(\\)$#"
count: 1
path: app/code/core/Mage/Adminhtml/controllers/Sales/Order/CreateController.php
-
message: "#^Call to an undefined method Mage_Sales_Model_Order_Creditmemo\\:\\:void\\(\\)\\.$#"
count: 1
path: app/code/core/Mage/Adminhtml/controllers/Sales/Order/CreditmemoController.php
-
message: "#^Right side of && is always true\\.$#"
count: 1
path: app/code/core/Mage/Adminhtml/controllers/Sales/Order/CreditmemoController.php
-
message: "#^Result of && is always false\\.$#"
count: 1
path: app/code/core/Mage/Adminhtml/controllers/Sales/Order/InvoiceController.php
-
message: "#^Undefined variable\\: \\$shippingResponse$#"
count: 1
path: app/code/core/Mage/Adminhtml/controllers/Sales/Order/InvoiceController.php
-
message: "#^Variable \\$shippingResponse in isset\\(\\) is never defined\\.$#"
count: 1
path: app/code/core/Mage/Adminhtml/controllers/Sales/Order/InvoiceController.php
-
message: "#^Negated boolean expression is always false\\.$#"
count: 1
path: app/code/core/Mage/Adminhtml/controllers/Sales/Order/ShipmentController.php
-
message: "#^Method Mage_Adminhtml_Controller_Action\\:\\:_setForcedFormKeyActions\\(\\) invoked with 2 parameters, 1 required\\.$#"
count: 1
path: app/code/core/Mage/Adminhtml/controllers/Sales/OrderController.php
-
message: "#^Variable \\$pdf might not be defined\\.$#"
count: 4
path: app/code/core/Mage/Adminhtml/controllers/Sales/OrderController.php
-
message: "#^Variable \\$data in isset\\(\\) always exists and is not nullable\\.$#"
count: 1
path: app/code/core/Mage/Adminhtml/controllers/System/Convert/ProfileController.php
-
message: "#^Cannot call method fetchRates\\(\\) on Mage_Core_Model_Abstract\\|false\\.$#"
count: 1
path: app/code/core/Mage/Adminhtml/controllers/System/CurrencyController.php
-
message: "#^Variable \\$codeBase might not be defined\\.$#"
count: 1
path: app/code/core/Mage/Adminhtml/controllers/System/StoreController.php
-
message: "#^Variable \\$itemId might not be defined\\.$#"
count: 1
path: app/code/core/Mage/Adminhtml/controllers/System/StoreController.php
-
message: "#^Variable \\$model might not be defined\\.$#"
count: 5
path: app/code/core/Mage/Adminhtml/controllers/System/StoreController.php
-
message: "#^Variable \\$notExists might not be defined\\.$#"
count: 1
path: app/code/core/Mage/Adminhtml/controllers/System/StoreController.php
-
message: "#^Variable \\$title might not be defined\\.$#"
count: 1
path: app/code/core/Mage/Adminhtml/controllers/System/StoreController.php
-
message: "#^Method Mage_Directory_Model_Country\\:\\:loadByCode\\(\\) invoked with 2 parameters, 1 required\\.$#"
count: 1
path: app/code/core/Mage/Adminhtml/controllers/Tax/RateController.php
-
message: "#^Method Mage_Api_Model_Acl\\:\\:_getRoleRegistry\\(\\) should return Mage_Api_Model_Acl_Role_Registry but returns Zend_Acl_Role_Registry\\.$#"
count: 1
path: app/code/core/Mage/Api/Model/Acl.php
-
message: "#^Return type \\(Zend_Cache_Core\\) of method Mage_Api_Model_Config\\:\\:getCache\\(\\) should be compatible with return type \\(Varien_Simplexml_Config_Cache_Abstract\\) of method Varien_Simplexml_Config\\:\\:getCache\\(\\)$#"
count: 1
path: app/code/core/Mage/Api/Model/Config.php
-
message: "#^Cannot call method getClassName\\(\\) on bool\\|SimpleXMLElement\\.$#"
count: 1
path: app/code/core/Mage/Api/Model/Resource/Acl.php
-
message: "#^Method Mage_Core_Model_Resource_Db_Abstract\\:\\:load\\(\\) invoked with 1 parameter, 2\\-3 required\\.$#"
count: 1
path: app/code/core/Mage/Api/Model/Resource/Roles.php
-
message: "#^Call to an undefined method Mage_Api_Model_Resource_Roles\\:\\:update\\(\\)\\.$#"
count: 1
path: app/code/core/Mage/Api/Model/Roles.php
-
message: "#^Call to an undefined method Mage_Api_Model_Resource_Rules\\:\\:update\\(\\)\\.$#"
count: 1
path: app/code/core/Mage/Api/Model/Rules.php
-
message: "#^Call to an undefined method SoapServer\\:\\:setReturnResponse\\(\\)\\.$#"
count: 1
path: app/code/core/Mage/Api/Model/Server/Adapter/Soap.php
-
message: "#^Property Mage_Api_Model_Server_Adapter_Soap\\:\\:\\$_soap \\(SoapServer\\) does not accept Zend_Soap_Server\\.$#"
count: 1
path: app/code/core/Mage/Api/Model/Server/Adapter/Soap.php
-
message: "#^Result of method SoapServer\\:\\:handle\\(\\) \\(void\\) is used\\.$#"
count: 1
path: app/code/core/Mage/Api/Model/Server/Adapter/Soap.php
-
message: "#^Return type \\(Varien_Object\\) of method Mage_Api_Model_Server_Adapter_Soap\\:\\:getController\\(\\) should be compatible with return type \\(Mage_Api_Controller_Action\\) of method Mage_Api_Model_Server_Adapter_Interface\\:\\:getController\\(\\)$#"
count: 1
path: app/code/core/Mage/Api/Model/Server/Adapter/Soap.php
-
message: "#^Result of method SoapServer\\:\\:handle\\(\\) \\(void\\) is used\\.$#"
count: 1
path: app/code/core/Mage/Api/Model/Server/V2/Adapter/Soap.php
-
message: "#^Return type \\(Mage_Api_Model_Wsdl_Config\\) of method Mage_Api_Model_Server_V2_Adapter_Soap\\:\\:_getWsdlConfig\\(\\) should be compatible with return type \\(Varien_Object\\) of method Mage_Api_Model_Server_Adapter_Soap\\:\\:_getWsdlConfig\\(\\)$#"
count: 1
path: app/code/core/Mage/Api/Model/Server/V2/Adapter/Soap.php
-
message: "#^Result of method SoapServer\\:\\:handle\\(\\) \\(void\\) is used\\.$#"
count: 1
path: app/code/core/Mage/Api/Model/Server/Wsi/Adapter/Soap.php
-
message: "#^Return type \\(Mage_Api_Model_Wsdl_Config\\) of method Mage_Api_Model_Server_Wsi_Adapter_Soap\\:\\:_getWsdlConfig\\(\\) should be compatible with return type \\(Varien_Object\\) of method Mage_Api_Model_Server_Adapter_Soap\\:\\:_getWsdlConfig\\(\\)$#"
count: 1
path: app/code/core/Mage/Api/Model/Server/Wsi/Adapter/Soap.php
-
message: "#^Parameter \\#1 \\$request \\(stdClass\\) of method Mage_Api_Model_Server_Wsi_Handler\\:\\:endSession\\(\\) should be compatible with parameter \\$sessionId \\(string\\) of method Mage_Api_Model_Server_Handler_Abstract\\:\\:endSession\\(\\)$#"
count: 1
path: app/code/core/Mage/Api/Model/Server/Wsi/Handler.php
-
message: "#^Return type \\(stdClass\\) of method Mage_Api_Model_Server_Wsi_Handler\\:\\:endSession\\(\\) should be compatible with return type \\(true\\) of method Mage_Api_Model_Server_Handler_Abstract\\:\\:endSession\\(\\)$#"
count: 1
path: app/code/core/Mage/Api/Model/Server/Wsi/Handler.php
-
message: "#^Return type \\(stdClass\\) of method Mage_Api_Model_Server_Wsi_Handler\\:\\:login\\(\\) should be compatible with return type \\(string\\) of method Mage_Api_Model_Server_Handler_Abstract\\:\\:login\\(\\)$#"
count: 1
path: app/code/core/Mage/Api/Model/Server/Wsi/Handler.php
-
message: "#^Return type \\(bool\\) of method Mage_Api_Model_Session\\:\\:clear\\(\\) should be compatible with return type \\(\\$this\\(Mage_Core_Model_Session_Abstract_Varien\\)\\) of method Mage_Core_Model_Session_Abstract_Varien\\:\\:clear\\(\\)$#"
count: 1
path: app/code/core/Mage/Api/Model/Session.php
-
message: "#^Return type \\(void\\) of method Mage_Api_Model_Session\\:\\:revalidateCookie\\(\\) should be compatible with return type \\(\\$this\\(Mage_Core_Model_Session_Abstract_Varien\\)\\) of method Mage_Core_Model_Session_Abstract_Varien\\:\\:revalidateCookie\\(\\)$#"
count: 1
path: app/code/core/Mage/Api/Model/Session.php
-
message: "#^Invalid array key type array\\.$#"
count: 1
path: app/code/core/Mage/Api/Model/Wsdl/Config.php
-
message: "#^Call to an undefined method SimpleXMLElement\\:\\:extendChild\\(\\)\\.$#"
count: 1
path: app/code/core/Mage/Api/Model/Wsdl/Config/Element.php
-
message: "#^Property Mage_Api2_Block_Adminhtml_Attribute_Tab_Resource\\:\\:\\$_treeModel \\(Mage_Api2_Model_Acl_Global_Rule_Tree\\) does not accept default value of type false\\.$#"
count: 1
path: app/code/core/Mage/Api2/Block/Adminhtml/Attribute/Tab/Resource.php
-
message: "#^Property Mage_Api2_Block_Adminhtml_Roles_Tab_Resources\\:\\:\\$_treeModel \\(Mage_Api2_Model_Acl_Global_Rule_Tree\\) does not accept default value of type false\\.$#"
count: 1
path: app/code/core/Mage/Api2/Block/Adminhtml/Roles/Tab/Resources.php
-
message: "#^Cannot access offset 'order' on int\\.$#"
count: 4
path: app/code/core/Mage/Api2/Helper/Data.php
-
message: "#^Variable \\$adapters might not be defined\\.$#"
count: 1
path: app/code/core/Mage/Api2/Helper/Data.php
-
message: "#^Parameter \\#1 \\$roleId \\(int\\) of method Mage_Api2_Model_Acl\\:\\:addRole\\(\\) should be compatible with parameter \\$role \\(string\\|Zend_Acl_Role_Interface\\) of method Zend_Acl\\:\\:addRole\\(\\)$#"
count: 1
path: app/code/core/Mage/Api2/Model/Acl.php
-
message: "#^Variable \\$operationName might not be defined\\.$#"
count: 2
path: app/code/core/Mage/Api2/Model/Acl/Global/Rule/Tree.php
-
message: "#^Method Mage_Api2_Model_Config\\:\\:getResourceGroup\\(\\) should return bool\\|Mage_Core_Model_Config_Element but returns Varien_Simplexml_Element\\.$#"
count: 1
path: app/code/core/Mage/Api2/Model/Config.php
-
message: "#^Call to an undefined method Mage_Api2_Model_Config\\:\\:getMainRoute\\(\\)\\.$#"
count: 1
path: app/code/core/Mage/Api2/Model/Multicall.php
-
message: "#^Property Mage_Api2_Model_Request\\:\\:\\$_interpreter \\(Mage_Api2_Model_Request_Interpreter_Interface\\) does not accept Mage_Core_Model_Abstract\\|false\\.$#"
count: 1
path: app/code/core/Mage/Api2/Model/Request.php
-
message: "#^Call to an undefined method Mage_Api2_Model_Resource\\:\\:_multiDelete\\(\\)\\.$#"
count: 1
path: app/code/core/Mage/Api2/Model/Resource.php
-
message: "#^Method Mage_Api2_Model_Resource\\:\\:_create\\(\\) invoked with 1 parameter, 0 required\\.$#"
count: 1
path: app/code/core/Mage/Api2/Model/Resource.php
-
message: "#^Method Mage_Api2_Model_Resource\\:\\:_multiCreate\\(\\) invoked with 1 parameter, 0 required\\.$#"
count: 1
path: app/code/core/Mage/Api2/Model/Resource.php
-
message: "#^Method Mage_Api2_Model_Resource\\:\\:_multiUpdate\\(\\) invoked with 1 parameter, 0 required\\.$#"
count: 1
path: app/code/core/Mage/Api2/Model/Resource.php
-
message: "#^Method Mage_Api2_Model_Resource\\:\\:_update\\(\\) invoked with 1 parameter, 0 required\\.$#"
count: 1
path: app/code/core/Mage/Api2/Model/Resource.php
-
message: "#^Method Mage_Eav_Model_Entity_Attribute_Source_Interface\\:\\:getAllOptions\\(\\) invoked with 1 parameter, 0 required\\.$#"
count: 1
path: app/code/core/Mage/Api2/Model/Resource/Validator/Eav.php
-
message: "#^Property Mage_Api2_Model_Resource_Validator_Eav\\:\\:\\$_eavForm \\(Mage_Eav_Model_Form\\) does not accept Mage_Core_Model_Abstract\\|false\\.$#"
count: 1
path: app/code/core/Mage/Api2/Model/Resource/Validator/Eav.php
-
message: "#^Property Mage_Api2_Model_Resource_Validator_Eav\\:\\:\\$_eavForm \\(Mage_Eav_Model_Form\\) in empty\\(\\) is not falsy\\.$#"
count: 1
path: app/code/core/Mage/Api2/Model/Resource/Validator/Eav.php
-
message: "#^Property Mage_Api2_Model_Resource_Validator_Eav\\:\\:\\$_entity \\(Mage_Core_Model_Abstract\\) in empty\\(\\) is not falsy\\.$#"
count: 1
path: app/code/core/Mage/Api2/Model/Resource/Validator/Eav.php
-
message: "#^Call to an undefined method Zend_Validate_Interface\\:\\:setMessage\\(\\)\\.$#"
count: 1
path: app/code/core/Mage/Api2/Model/Resource/Validator/Fields.php
-
message: "#^Parameter \\#1 \\$request \\(Mage_Api2_Model_Request\\) of method Mage_Api2_Model_Route_Abstract\\:\\:match\\(\\) should be compatible with parameter \\$path \\(string\\) of method Zend_Controller_Router_Route\\:\\:match\\(\\)$#"
count: 1
path: app/code/core/Mage/Api2/Model/Route/Abstract.php
-
message: "#^Constructor of class Mage_Api2_Model_Route_ApiType has an unused parameter \\$defaults\\.$#"
count: 1
path: app/code/core/Mage/Api2/Model/Route/ApiType.php
-
message: "#^Constructor of class Mage_Api2_Model_Route_ApiType has an unused parameter \\$locale\\.$#"
count: 1
path: app/code/core/Mage/Api2/Model/Route/ApiType.php
-
message: "#^Constructor of class Mage_Api2_Model_Route_ApiType has an unused parameter \\$reqs\\.$#"
count: 1
path: app/code/core/Mage/Api2/Model/Route/ApiType.php
-
message: "#^Constructor of class Mage_Api2_Model_Route_ApiType has an unused parameter \\$route\\.$#"
count: 1
path: app/code/core/Mage/Api2/Model/Route/ApiType.php
-
message: "#^Constructor of class Mage_Api2_Model_Route_ApiType has an unused parameter \\$translator\\.$#"
count: 1
path: app/code/core/Mage/Api2/Model/Route/ApiType.php
-
message: "#^Method Mage_Bundle_Block_Adminhtml_Catalog_Product_Edit_Tab_Bundle_Option_Selection\\:\\:isUsedWebsitePrice\\(\\) should return string but returns bool\\.$#"
count: 1
path: app/code/core/Mage/Bundle/Block/Adminhtml/Catalog/Product/Edit/Tab/Bundle/Option/Selection.php
-
message: "#^Call to an undefined method Mage_Catalog_Model_Product_Configuration_Item_Interface\\:\\:getQty\\(\\)\\.$#"
count: 1
path: app/code/core/Mage/Bundle/Helper/Catalog/Product/Configuration.php
-
message: "#^Call to an undefined method Mage_Bundle_Model_CatalogIndex_Data_Bundle\\:\\:_addAttributeFilter\\(\\)\\.$#"
count: 1
path: app/code/core/Mage/Bundle/Model/CatalogIndex/Data/Bundle.php
-
message: "#^Call to an undefined method Mage_Bundle_Model_CatalogIndex_Data_Bundle\\:\\:_getLinkSelect\\(\\)\\.$#"
count: 1
path: app/code/core/Mage/Bundle/Model/CatalogIndex/Data/Bundle.php
-
message: "#^PHPDoc type bool of property Mage_Bundle_Model_CatalogIndex_Data_Bundle\\:\\:\\$_haveChildren is not covariant with PHPDoc type array\\<bool\\|int\\> of overridden property Mage_CatalogIndex_Model_Data_Simple\\:\\:\\$_haveChildren\\.$#"
count: 1
path: app/code/core/Mage/Bundle/Model/CatalogIndex/Data/Bundle.php
-
message: "#^Property Mage_Bundle_Model_CatalogIndex_Data_Bundle\\:\\:\\$_haveChildren \\(bool\\) does not accept default value of type array\\<int, bool\\>\\.$#"
count: 1
path: app/code/core/Mage/Bundle/Model/CatalogIndex/Data/Bundle.php
-
message: "#^Call to an undefined method Mage_Bundle_Model_Resource_Price_Index\\:\\:reindexProduct\\(\\)\\.$#"
count: 1
path: app/code/core/Mage/Bundle/Model/Price/Index.php
-
message: "#^Call to an undefined method Mage_Bundle_Model_Product_Price\\:\\:getPricesTierPrice\\(\\)\\.$#"
count: 2
path: app/code/core/Mage/Bundle/Model/Product/Price.php
-
message: "#^Method Mage_Bundle_Model_Product_Price\\:\\:getOptions\\(\\) should return Mage_Bundle_Model_Resource_Option_Collection but returns array\\.$#"
count: 1
path: app/code/core/Mage/Bundle/Model/Product/Price.php
-
message: "#^Offset 'option_id' does not exist on array\\{final_price\\: mixed\\}\\.$#"
count: 2
path: app/code/core/Mage/Bundle/Model/Product/Price.php
-
message: "#^Call to function is_array\\(\\) with string will always evaluate to false\\.$#"
count: 1
path: app/code/core/Mage/Bundle/Model/Product/Type.php
-
message: "#^Left side of && is always true\\.$#"
count: 1
path: app/code/core/Mage/Bundle/Model/Product/Type.php
-
message: "#^Return type \\(int\\) of method Mage_Bundle_Model_Product_Type\\:\\:prepareQuoteItemQty\\(\\) should be compatible with return type \\(float\\) of method Mage_Catalog_Model_Product_Type_Abstract\\:\\:prepareQuoteItemQty\\(\\)$#"
count: 1
path: app/code/core/Mage/Bundle/Model/Product/Type.php
-
message: "#^Variable \\$selections in empty\\(\\) always exists and is not falsy\\.$#"
count: 1
path: app/code/core/Mage/Bundle/Model/Product/Type.php
-
message: "#^Variable \\$basePrice might not be defined\\.$#"
count: 2
path: app/code/core/Mage/Bundle/Model/Resource/Price/Index.php
-
message: "#^Variable \\$customOptions might not be defined\\.$#"
count: 1
path: app/code/core/Mage/Bundle/Model/Resource/Price/Index.php
-
message: "#^Argument of an invalid type string supplied for foreach, only iterables are supported\\.$#"
count: 1
path: app/code/core/Mage/Catalog/Block/Breadcrumbs.php
-
message: "#^Argument of an invalid type string supplied for foreach, only iterables are supported\\.$#"
count: 1
path: app/code/core/Mage/Catalog/Block/Navigation.php
-
message: "#^Cannot call method count\\(\\) on string\\.$#"
count: 2
path: app/code/core/Mage/Catalog/Block/Navigation.php
-
message: "#^Property Mage_Catalog_Block_Navigation\\:\\:\\$_currentCategoryKey \\(string\\) does not accept int\\.$#"
count: 1
path: app/code/core/Mage/Catalog/Block/Navigation.php
-
message: "#^If condition is always true\\.$#"
count: 1
path: app/code/core/Mage/Catalog/Block/Product.php
-
message: "#^Variable \\$productId might not be defined\\.$#"
count: 1
path: app/code/core/Mage/Catalog/Block/Product.php
-
message: "#^Property Mage_Catalog_Block_Product_Abstract\\:\\:\\$_reviewsHelperBlock \\(Mage_Review_Block_Helper\\|null\\) does not accept Mage_Core_Block_Abstract\\|false\\.$#"
count: 1
path: app/code/core/Mage/Catalog/Block/Product/Abstract.php
-
message: "#^Method Mage_Catalog_Model_Resource_Product_Compare_Item_Collection\\:\\:useProductItem\\(\\) invoked with 1 parameter, 0 required\\.$#"
count: 1
path: app/code/core/Mage/Catalog/Block/Product/Compare/List.php
-
message: "#^Method Mage_Catalog_Block_Product_List_Toolbar\\:\\:getDefaultPerPageValue\\(\\) should return string but returns int\\.$#"
count: 1
path: app/code/core/Mage/Catalog/Block/Product/List/Toolbar.php
-
message: "#^Property Mage_Catalog_Block_Product_List_Toolbar\\:\\:\\$_availableMode \\(string\\) does not accept array\\.$#"
count: 1
path: app/code/core/Mage/Catalog/Block/Product/List/Toolbar.php
-
message: "#^Property Mage_Catalog_Block_Product_List_Toolbar\\:\\:\\$_availableMode \\(string\\) does not accept array\\<string, string\\>\\.$#"
count: 4
path: app/code/core/Mage/Catalog/Block/Product/List/Toolbar.php
-
message: "#^Property Mage_Catalog_Block_Product_List_Toolbar\\:\\:\\$_availableMode \\(string\\) does not accept default value of type array\\.$#"
count: 1
path: app/code/core/Mage/Catalog/Block/Product/List/Toolbar.php
-
message: "#^Property Mage_Catalog_Block_Product_List_Toolbar\\:\\:\\$_availableMode \\(string\\) in isset\\(\\) is not nullable\\.$#"
count: 1
path: app/code/core/Mage/Catalog/Block/Product/List/Toolbar.php
-
message: "#^Property Mage_Catalog_Block_Product_List_Toolbar\\:\\:\\$_collection \\(Mage_Core_Model_Resource_Db_Collection_Abstract\\) does not accept Varien_Data_Collection\\.$#"
count: 1
path: app/code/core/Mage/Catalog/Block/Product/List/Toolbar.php
-
message: "#^Method Mage_Catalog_Block_Product_View_Options_Type_Date\\:\\:_getValueWithLeadingZeros\\(\\) should return string but returns int\\.$#"
count: 1
path: app/code/core/Mage/Catalog/Block/Product/View/Options/Type/Date.php
-
message: "#^Invalid array key type array\\.$#"
count: 1
path: app/code/core/Mage/Catalog/Block/Product/View/Type/Configurable.php
-
message: "#^Property Mage_Catalog_Block_Product_Widget_Html_Pager\\:\\:\\$_lastPage \\(int\\) does not accept float\\.$#"
count: 1
path: app/code/core/Mage/Catalog/Block/Product/Widget/Html/Pager.php
-
message: "#^Variable \\$finish might not be defined\\.$#"
count: 1
path: app/code/core/Mage/Catalog/Block/Product/Widget/Html/Pager.php
-
message: "#^Variable \\$start might not be defined\\.$#"
count: 1
path: app/code/core/Mage/Catalog/Block/Product/Widget/Html/Pager.php
-
message: "#^Property Mage_Catalog_Block_Product_Widget_New\\:\\:\\$_pager \\(Mage_Catalog_Block_Product_Widget_Html_Pager\\) does not accept Mage_Core_Block_Abstract\\|false\\.$#"
count: 1
path: app/code/core/Mage/Catalog/Block/Product/Widget/New.php
-
message: "#^Parameter \\#1 \\$category \\(Mage_Catalog_Model_Category\\) of method Mage_Catalog_Block_Seo_Sitemap_Category\\:\\:getItemUrl\\(\\) should be compatible with parameter \\$item \\(Mage_Catalog_Block_Seo_Sitemap_Abstract\\) of method Mage_Catalog_Block_Seo_Sitemap_Abstract\\:\\:getItemUrl\\(\\)$#"
count: 1
path: app/code/core/Mage/Catalog/Block/Seo/Sitemap/Category.php
-
message: "#^Parameter \\#1 \\$product \\(Mage_Catalog_Model_Product\\) of method Mage_Catalog_Block_Seo_Sitemap_Product\\:\\:getItemUrl\\(\\) should be compatible with parameter \\$item \\(Mage_Catalog_Block_Seo_Sitemap_Abstract\\) of method Mage_Catalog_Block_Seo_Sitemap_Abstract\\:\\:getItemUrl\\(\\)$#"
count: 1
path: app/code/core/Mage/Catalog/Block/Seo/Sitemap/Product.php
-
message: "#^Variable \\$finish might not be defined\\.$#"
count: 1
path: app/code/core/Mage/Catalog/Block/Seo/Sitemap/Tree/Pager.php
-
message: "#^Variable \\$start might not be defined\\.$#"
count: 1
path: app/code/core/Mage/Catalog/Block/Seo/Sitemap/Tree/Pager.php
-
message: "#^Variable \\$store might not be defined\\.$#"
count: 1
path: app/code/core/Mage/Catalog/Block/Widget/Link.php
-
message: "#^Property Mage_Catalog_Helper_Output\\:\\:\\$_templateProcessor \\(Varien_Filter_Template\\) does not accept Mage_Core_Model_Abstract\\|false\\.$#"
count: 1
path: app/code/core/Mage/Catalog/Helper/Output.php
-
message: "#^Call to an undefined method Mage_Eav_Model_Entity_Attribute_Frontend_Abstract\\:\\:getUrl\\(\\)\\.$#"
count: 3
path: app/code/core/Mage/Catalog/Helper/Product.php
-
message: "#^Method Mage_Catalog_Helper_Product\\:\\:getMinimalQty\\(\\) should return int\\|null but returns float\\.$#"
count: 1
path: app/code/core/Mage/Catalog/Helper/Product.php
-
message: "#^Ternary operator condition is always true\\.$#"
count: 1
path: app/code/core/Mage/Catalog/Helper/Product.php
-
message: "#^Call to an undefined method Mage_Core_Model_Resource_Db_Collection_Abstract\\:\\:setStoreId\\(\\)\\.$#"
count: 1
path: app/code/core/Mage/Catalog/Model/Abstract.php
-
message: "#^Method Mage_Core_Model_Website\\:\\:getStoreIds\\(\\) invoked with 1 parameter, 0 required\\.$#"
count: 1
path: app/code/core/Mage/Catalog/Model/Abstract.php
-
message: "#^Return type \\(Mage_Catalog_Model_Resource_Collection_Abstract\\) of method Mage_Catalog_Model_Abstract\\:\\:getResourceCollection\\(\\) should be compatible with return type \\(Mage_Core_Model_Resource_Db_Collection_Abstract\\) of method Mage_Core_Model_Abstract\\:\\:getResourceCollection\\(\\)$#"
count: 1
path: app/code/core/Mage/Catalog/Model/Abstract.php
-
message: "#^Call to an undefined method Mage_Catalog_Model_Api_Resource\\:\\:_checkAttributeAcl\\(\\)\\.$#"
count: 1
path: app/code/core/Mage/Catalog/Model/Api/Resource.php
-
message: "#^If condition is always false\\.$#"
count: 2