Skip to content

Commit 47408e5

Browse files
committed
baseline
- see OpenMage#5097
1 parent 733d14c commit 47408e5

File tree

2 files changed

+7
-1
lines changed

2 files changed

+7
-1
lines changed

.phpstan.dist.baseline.neon

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2766,6 +2766,12 @@ parameters:
27662766
count: 1
27672767
path: app/code/core/Mage/Tax/Helper/Data.php
27682768

2769+
-
2770+
rawMessage: 'Call to an undefined static method Mage_Core_Model_Config_Data::afterSave().'
2771+
identifier: staticMethod.notFound
2772+
count: 1
2773+
path: app/code/core/Mage/Tax/Model/Config/Price/Include.php
2774+
27692775
-
27702776
rawMessage: 'Strict comparison using === between non-empty-list and array{} will always evaluate to false.'
27712777
identifier: identical.alwaysFalse

app/code/core/Mage/Tax/Model/Config/Price/Include.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ class Mage_Tax_Model_Config_Price_Include extends Mage_Core_Model_Config_Data
1414
{
1515
public function afterSave()
1616
{
17-
parent::_afterSave();
17+
parent::afterSave();
1818
Mage::app()->cleanCache('checkout_quote');
1919
}
2020
}

0 commit comments

Comments
 (0)