我收到以下错误:
2016-05-24T15:56:27+00:00 ERR (3): Warning: Declaration of EbayEnterprise_MultipleCoupons_Model_Validator::_canProcessRule(Mage_SalesRule_Model_Rule $rule, Mage_Sales_Model_Quote_Address $address) should be compatible with Mage_SalesRule_Model_Validator::_canProcessRule($rule, $address) in /home/public_html/app/code/community/EbayEnterprise/MultipleCoupons/Model/Validator.php on line 15
我希望在不停止任何其他错误的情况下停止显示此错误。
第15行有这个:
class EbayEnterprise_MultipleCoupons_Model_Validator extends Mage_SalesRule_Model_Validator
{
我试过......
class EbayEnterprise_MultipleCoupons_Model_Validator extends Mage_SalesRule_Model_Validator
{
ini_set( "display_errors", 0);
这不起作用。
我尝试在各个地方添加@符号但仍然出现错误,大多数都阻止我的页面显示。
有没有办法阻止这一个错误?
谢谢