From f506d1808f7348f9959cbceba22c89755a53d177 Mon Sep 17 00:00:00 2001
From: Sven Reichel
Date: Wed, 30 Nov 2022 02:19:46 +0100
Subject: [PATCH 1/4] Use default paths for config files
---
.github/workflows/check-files.yml | 12 +-
.../labeler-labels.yml} | 10 +-
.github/workflows/labeler.yml | 2 +
.github/workflows/php-cs-fixer.yml | 2 +-
.github/workflows/phpcs.yml | 6 +-
.github/workflows/phpstan.yml | 2 +-
.gitignore | 12 +-
...ixer-ruleset.php => .php-cs-fixer.dist.php | 0
...pcs-ruleset-ecg.xml => .phpcs.ecg.xml.dist | 20 +-
...pcs-ruleset-php.xml => .phpcs.php.xml.dist | 20 +-
.github/phpcs-ruleset.xml => .phpcs.xml.dist | 20 +-
...aseline.neon => phpstan.dist.baseline.neon | 6116 ++++++++---------
.github/phpstan.neon => phpstan.dist.neon | 4 +-
13 files changed, 3121 insertions(+), 3105 deletions(-)
rename .github/{labeler.yml => workflows/labeler-labels.yml} (99%)
rename .github/php-cs-fixer-ruleset.php => .php-cs-fixer.dist.php (100%)
rename .github/phpcs-ruleset-ecg.xml => .phpcs.ecg.xml.dist (97%)
rename .github/phpcs-ruleset-php.xml => .phpcs.php.xml.dist (61%)
rename .github/phpcs-ruleset.xml => .phpcs.xml.dist (90%)
rename .github/phpstan-baseline.neon => phpstan.dist.baseline.neon (68%)
rename .github/phpstan.neon => phpstan.dist.neon (97%)
diff --git a/.github/workflows/check-files.yml b/.github/workflows/check-files.yml
index 7b54b25e4c7..5a651738204 100644
--- a/.github/workflows/check-files.yml
+++ b/.github/workflows/check-files.yml
@@ -67,9 +67,9 @@ jobs:
**/*.php
**/*.xml
.github/workflows/**
- .github/**phpcs**
- .github/**php-cs-fixer**
- .github/**phpstan**
+ **phpcs**
+ **php-cs-fixer**
+ **phpstan**
- name: Run step if any file(s) changed
id: all
@@ -93,14 +93,14 @@ jobs:
echo "$count Workflow file(s) changed"
echo "ci_count=$count" >> $GITHUB_OUTPUT
- count="$(grep -oE ".github/**phpcs**" <<< "${{ steps.changed-files-specific.outputs.all_changed_files }}" | wc -l)"
+ count="$(grep -oE "**phpcs**" <<< "${{ steps.changed-files-specific.outputs.all_changed_files }}" | wc -l)"
echo "$count PHPCS file(s) changed"
echo "ci_phpcs_count=$count" >> $GITHUB_OUTPUT
- count="$(grep -oE ".github/**php-cs-fixer**" <<< "${{ steps.changed-files-specific.outputs.all_changed_files }}" | wc -l)"
+ count="$(grep -oE "**php-cs-fixer**" <<< "${{ steps.changed-files-specific.outputs.all_changed_files }}" | wc -l)"
echo "$count PHP-CS-Fixer file(s) changed"
echo "ci_php_cs_fixer_count=$count" >> $GITHUB_OUTPUT
- count="$(grep -oE ".github/**phpstan**" <<< "${{ steps.changed-files-specific.outputs.all_changed_files }}" | wc -l)"
+ count="$(grep -oE "**phpstan**" <<< "${{ steps.changed-files-specific.outputs.all_changed_files }}" | wc -l)"
echo "$count PHPStan file(s) changed"
echo "ci_phpstan_count=$count" >> $GITHUB_OUTPUT
diff --git a/.github/labeler.yml b/.github/workflows/labeler-labels.yml
similarity index 99%
rename from .github/labeler.yml
rename to .github/workflows/labeler-labels.yml
index 2dd6d2f60c2..6393118664f 100644
--- a/.github/labeler.yml
+++ b/.github/workflows/labeler-labels.yml
@@ -26,6 +26,10 @@
- lib/Mage/*
- lib/Mage/**/*
+'Component: lib/Magento':
+ - lib/Magento/*
+ - lib/Magento/**/*
+
'Component: lib/Varien':
- lib/Varien/*
- lib/Varien/**/*
@@ -602,13 +606,13 @@
- .phpstorm.meta.php/*
'phpcs':
- - .github/phpcs*.xml
+ - phpcs*
- .github/workflows/phpcs.yml
'php-cs-fixer':
- - .github/php-cs-fixer*.php
+ - .php-cs-fixer*
- .github/workflows/php-cs-fixer.yml
'phpstan':
- - .github/phpstan*.neon
+ - phpstan*
- .github/workflows/phpstan.yml
diff --git a/.github/workflows/labeler.yml b/.github/workflows/labeler.yml
index c6d6044d250..6314369f0af 100644
--- a/.github/workflows/labeler.yml
+++ b/.github/workflows/labeler.yml
@@ -16,5 +16,7 @@ jobs:
steps:
- uses: actions/labeler@main
with:
+ configuration-path: .github/workflows/labeler-labels.yml
repo-token: "${{ secrets.GITHUB_TOKEN }}"
+ sync-labels: true
continue-on-error: true
diff --git a/.github/workflows/php-cs-fixer.yml b/.github/workflows/php-cs-fixer.yml
index a67e03c865a..4152b027db8 100644
--- a/.github/workflows/php-cs-fixer.yml
+++ b/.github/workflows/php-cs-fixer.yml
@@ -29,4 +29,4 @@ jobs:
run: composer install --prefer-dist --no-progress --ignore-platform-req=ext-*
- name: PHP-CS-Fixer
- run: php vendor/bin/php-cs-fixer fix --config=.github/php-cs-fixer-ruleset.php --diff --dry-run
+ run: php vendor/bin/php-cs-fixer fix --diff --dry-run
diff --git a/.github/workflows/phpcs.yml b/.github/workflows/phpcs.yml
index f41a2bca962..9411dde9f35 100644
--- a/.github/workflows/phpcs.yml
+++ b/.github/workflows/phpcs.yml
@@ -14,11 +14,11 @@ jobs:
matrix:
rules:
- label: Default
- path: .github/phpcs-ruleset.xml
+ path: .phpcs.xml.dist
- label: Ecg
- path: .github/phpcs-ruleset-ecg.xml
+ path: .phpcs.ecg.xml.dist
- label: PhpCompatibitliy
- path: .github/phpcs-ruleset-php.xml
+ path: .phpcs.php.xml.dist
steps:
- name: Checkout code
diff --git a/.github/workflows/phpstan.yml b/.github/workflows/phpstan.yml
index 0ea2a79da24..8b79b99d592 100644
--- a/.github/workflows/phpstan.yml
+++ b/.github/workflows/phpstan.yml
@@ -28,4 +28,4 @@ jobs:
run: composer install --prefer-dist --no-progress --ignore-platform-req=ext-*
- name: PHPStan Static Analysis
- run: XDEBUG_MODE=off php vendor/bin/phpstan.phar analyze -c .github/phpstan.neon
\ No newline at end of file
+ run: XDEBUG_MODE=off php vendor/bin/phpstan.phar analyze
diff --git a/.gitignore b/.gitignore
index e55153fdbd8..b592df2d5ef 100644
--- a/.gitignore
+++ b/.gitignore
@@ -60,4 +60,14 @@
*.phar
# PHP-CS-Fixer cache
-.php-cs-fixer.cache
\ No newline at end of file
+.php-cs-fixer.cache
+
+# Ignore custom config files
+.php-cs-fixer*
+!.php-cs-fixer.dist.*
+
+.phpcs*.xml
+!.phpcs*.xml.dist
+
+phpstan*.neon
+!phpstan.dist.*.neon
diff --git a/.github/php-cs-fixer-ruleset.php b/.php-cs-fixer.dist.php
similarity index 100%
rename from .github/php-cs-fixer-ruleset.php
rename to .php-cs-fixer.dist.php
diff --git a/.github/phpcs-ruleset-ecg.xml b/.phpcs.ecg.xml.dist
similarity index 97%
rename from .github/phpcs-ruleset-ecg.xml
rename to .phpcs.ecg.xml.dist
index 5d05531ec64..e47bcabeef4 100644
--- a/.github/phpcs-ruleset-ecg.xml
+++ b/.phpcs.ecg.xml.dist
@@ -1,15 +1,15 @@
- ./../api.php
- ./../cron.php
- ./../get.php
- ./../index.php
- ./../install.php
- ./../app/Mage.php
- ./../app/code/core/Mage/
- ./../lib/Mage/
- ./../lib/Magento/
- ./../lib/Varien/
+ api.php
+ cron.php
+ get.php
+ index.php
+ install.php
+ app/Mage.php
+ app/code/core/Mage/
+ lib/Mage/
+ lib/Magento/
+ lib/Varien/
diff --git a/.github/phpcs-ruleset-php.xml b/.phpcs.php.xml.dist
similarity index 61%
rename from .github/phpcs-ruleset-php.xml
rename to .phpcs.php.xml.dist
index 1ae92b385b8..834e429cc6e 100644
--- a/.github/phpcs-ruleset-php.xml
+++ b/.phpcs.php.xml.dist
@@ -1,15 +1,15 @@
- ./../api.php
- ./../cron.php
- ./../get.php
- ./../index.php
- ./../install.php
- ./../app/Mage.php
- ./../app/code/core/Mage/
- ./../lib/Mage/
- ./../lib/Magento/
- ./../lib/Varien/
+ api.php
+ cron.php
+ get.php
+ index.php
+ install.php
+ app/Mage.php
+ app/code/core/Mage/
+ lib/Mage/
+ lib/Magento/
+ lib/Varien/
*/Varien/Object.php*
diff --git a/.github/phpcs-ruleset.xml b/.phpcs.xml.dist
similarity index 90%
rename from .github/phpcs-ruleset.xml
rename to .phpcs.xml.dist
index eb255eaba00..3becc0355fc 100644
--- a/.github/phpcs-ruleset.xml
+++ b/.phpcs.xml.dist
@@ -1,15 +1,15 @@
- ./../api.php
- ./../cron.php
- ./../get.php
- ./../index.php
- ./../install.php
- ./../app/Mage.php
- ./../app/code/core/Mage/
- ./../lib/Mage/
- ./../lib/Magento/
- ./../lib/Varien/
+ api.php
+ cron.php
+ get.php
+ index.php
+ install.php
+ app/Mage.php
+ app/code/core/Mage/
+ lib/Mage/
+ lib/Magento/
+ lib/Varien/
diff --git a/.github/phpstan-baseline.neon b/phpstan.dist.baseline.neon
similarity index 68%
rename from .github/phpstan-baseline.neon
rename to phpstan.dist.baseline.neon
index 47854e1bb78..5a260b8650b 100644
--- a/.github/phpstan-baseline.neon
+++ b/phpstan.dist.baseline.neon
@@ -3,15289 +3,15289 @@ parameters:
-
message: "#^Call to an undefined method Mage_Core_Model_Abstract\\:\\:addError\\(\\)\\.$#"
count: 1
- path: ../app/Mage.php
+ path: app/Mage.php
-
message: "#^Negated boolean expression is always false\\.$#"
count: 2
- path: ../app/Mage.php
+ path: app/Mage.php
-
message: "#^Parameter \\#2 \\$value of function ini_set expects string, int given\\.$#"
count: 1
- path: ../app/Mage.php
+ path: app/Mage.php
-
message: "#^Right side of && is always false\\.$#"
count: 1
- path: ../app/Mage.php
+ path: app/Mage.php
-
message: "#^Right side of && is always true\\.$#"
count: 1
- path: ../app/Mage.php
+ path: app/Mage.php
-
message: "#^Strict comparison using \\=\\=\\= between 19 and 20 will always evaluate to false\\.$#"
count: 1
- path: ../app/Mage.php
+ 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
+ path: app/code/core/Mage/Admin/Model/Config.php
-
message: "#^Parameter \\#1 \\$sourceData of class Varien_Simplexml_Config constructor expects string\\|Varien_Simplexml_Element\\|null, Varien_Simplexml_Config given\\.$#"
count: 1
- path: ../app/code/core/Mage/Admin/Model/Config.php
+ path: app/code/core/Mage/Admin/Model/Config.php
-
message: "#^Parameter \\#2 \\$arguments of static method Mage\\:\\:getModel\\(\\) expects array\\|object, string given\\.$#"
count: 2
- path: ../app/code/core/Mage/Admin/Model/Config.php
+ path: app/code/core/Mage/Admin/Model/Config.php
-
message: "#^Parameter \\#2 \\$mergeToObject of method Mage_Core_Model_Config\\:\\:loadModulesConfiguration\\(\\) expects Mage_Core_Model_Config_Base\\|null, Varien_Simplexml_Config given\\.$#"
count: 1
- path: ../app/code/core/Mage/Admin/Model/Config.php
+ path: app/code/core/Mage/Admin/Model/Config.php
-
message: "#^Parameter \\#2 \\$resource of method Mage_Admin_Model_Config\\:\\:loadAclResources\\(\\) expects Mage_Core_Model_Config_Element\\|null, Varien_Simplexml_Element given\\.$#"
count: 1
- path: ../app/code/core/Mage/Admin/Model/Config.php
+ path: app/code/core/Mage/Admin/Model/Config.php
-
message: "#^Left side of && is always true\\.$#"
count: 1
- path: ../app/code/core/Mage/Admin/Model/Observer.php
+ path: app/code/core/Mage/Admin/Model/Observer.php
-
message: "#^Cannot call method getClassName\\(\\) on SimpleXMLElement\\|false\\.$#"
count: 1
- path: ../app/code/core/Mage/Admin/Model/Resource/Acl.php
+ path: app/code/core/Mage/Admin/Model/Resource/Acl.php
-
message: "#^Parameter \\#2 \\$arguments of static method Mage\\:\\:getModel\\(\\) expects array\\|object, string given\\.$#"
count: 2
- path: ../app/code/core/Mage/Admin/Model/Resource/Acl.php
+ path: app/code/core/Mage/Admin/Model/Resource/Acl.php
-
message: "#^Strict comparison using \\=\\=\\= between string and false will always evaluate to false\\.$#"
count: 1
- path: ../app/code/core/Mage/Admin/Model/Resource/Block.php
+ path: app/code/core/Mage/Admin/Model/Resource/Block.php
-
message: "#^Parameter \\#1 \\$role of method Mage_Admin_Model_Resource_Roles\\:\\:_updateRoleUsersAcl\\(\\) expects Mage_Admin_Model_Roles, Mage_Core_Model_Abstract given\\.$#"
count: 1
- path: ../app/code/core/Mage/Admin/Model/Resource/Roles.php
+ path: app/code/core/Mage/Admin/Model/Resource/Roles.php
-
message: "#^Return type \\(bool\\) of method Mage_Admin_Model_Resource_User\\:\\:delete\\(\\) should be compatible with return type \\(\\$this\\(Mage_Core_Model_Resource_Db_Abstract\\)\\) of method Mage_Core_Model_Resource_Db_Abstract\\:\\:delete\\(\\)$#"
count: 1
- path: ../app/code/core/Mage/Admin/Model/Resource/User.php
+ path: app/code/core/Mage/Admin/Model/Resource/User.php
-
message: "#^Strict comparison using \\=\\=\\= between string and false will always evaluate to false\\.$#"
count: 1
- path: ../app/code/core/Mage/Admin/Model/Resource/Variable.php
+ path: app/code/core/Mage/Admin/Model/Resource/Variable.php
-
message: "#^Call to an undefined method Mage_Admin_Model_Resource_Roles\\:\\:update\\(\\)\\.$#"
count: 1
- path: ../app/code/core/Mage/Admin/Model/Roles.php
+ 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
+ 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
+ path: app/code/core/Mage/Admin/Model/Rules.php
-
message: "#^Call to an undefined method Zend_Controller_Response_Abstract\\:\\:sendHeadersAndExit\\(\\)\\.$#"
count: 1
- path: ../app/code/core/Mage/Admin/Model/Session.php
+ path: app/code/core/Mage/Admin/Model/Session.php
-
message: "#^Call to function is_null\\(\\) with bool will always evaluate to false\\.$#"
count: 1
- path: ../app/code/core/Mage/Admin/Model/Session.php
+ path: app/code/core/Mage/Admin/Model/Session.php
-
message: "#^Parameter \\#1 \\$parent of method Mage_Admin_Model_User\\:\\:findFirstAvailableMenu\\(\\) expects Mage_Core_Model_Config_Element\\|null, Varien_Simplexml_Element given\\.$#"
count: 1
- path: ../app/code/core/Mage/Admin/Model/User.php
+ path: app/code/core/Mage/Admin/Model/User.php
-
message: "#^Call to function is_null\\(\\) with Mage_AdminNotification_Model_Inbox will always evaluate to false\\.$#"
count: 1
- path: ../app/code/core/Mage/AdminNotification/Helper/Data.php
+ path: app/code/core/Mage/AdminNotification/Helper/Data.php
-
message: "#^Call to function is_null\\(\\) with array will always evaluate to false\\.$#"
count: 1
- path: ../app/code/core/Mage/AdminNotification/Helper/Data.php
+ path: app/code/core/Mage/AdminNotification/Helper/Data.php
-
message: "#^Call to function is_null\\(\\) with string will always evaluate to false\\.$#"
count: 1
- path: ../app/code/core/Mage/AdminNotification/Model/Feed.php
+ path: app/code/core/Mage/AdminNotification/Model/Feed.php
-
message: "#^Strict comparison using \\=\\=\\= between string and false will always evaluate to false\\.$#"
count: 1
- path: ../app/code/core/Mage/AdminNotification/Model/Feed.php
+ path: app/code/core/Mage/AdminNotification/Model/Feed.php
-
message: "#^If condition is always true\\.$#"
count: 1
- path: ../app/code/core/Mage/Adminhtml/Block/Api/Tab/Rolesedit.php
+ 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
+ path: app/code/core/Mage/Adminhtml/Block/Api/Tab/Userroles.php
-
message: "#^Return type \\(false\\) of method Mage_Adminhtml_Block_Cache_Grid\\:\\:getRowUrl\\(\\) should be compatible with return type \\(string\\) of method Mage_Adminhtml_Block_Widget_Grid\\:\\:getRowUrl\\(\\)$#"
count: 1
- path: ../app/code/core/Mage/Adminhtml/Block/Cache/Grid.php
+ path: app/code/core/Mage/Adminhtml/Block/Cache/Grid.php
-
message: "#^If condition is always true\\.$#"
count: 3
- path: ../app/code/core/Mage/Adminhtml/Block/Catalog/Category/Abstract.php
+ path: app/code/core/Mage/Adminhtml/Block/Catalog/Category/Abstract.php
-
message: "#^Left side of && is always true\\.$#"
count: 2
- path: ../app/code/core/Mage/Adminhtml/Block/Catalog/Category/Abstract.php
+ path: app/code/core/Mage/Adminhtml/Block/Catalog/Category/Abstract.php
-
message: "#^Right side of && is always false\\.$#"
count: 1
- path: ../app/code/core/Mage/Adminhtml/Block/Catalog/Category/Abstract.php
+ path: app/code/core/Mage/Adminhtml/Block/Catalog/Category/Abstract.php
-
message: "#^Unreachable statement \\- code above always terminates\\.$#"
count: 2
- path: ../app/code/core/Mage/Adminhtml/Block/Catalog/Category/Abstract.php
+ path: app/code/core/Mage/Adminhtml/Block/Catalog/Category/Abstract.php
-
message: "#^Method Mage_Adminhtml_Block_Catalog_Category_Checkboxes_Tree\\:\\:_getNodeJson\\(\\) should return string but returns array\\\\.$#"
count: 1
- path: ../app/code/core/Mage/Adminhtml/Block/Catalog/Category/Checkboxes/Tree.php
+ path: app/code/core/Mage/Adminhtml/Block/Catalog/Category/Checkboxes/Tree.php
-
message: "#^Parameter \\#1 \\$renderer of method Varien_Data_Form_Element_Abstract\\:\\:setRenderer\\(\\) expects Varien_Data_Form_Element_Renderer_Interface, Mage_Core_Block_Abstract\\|false given\\.$#"
count: 1
- path: ../app/code/core/Mage/Adminhtml/Block/Catalog/Category/Tab/Attributes.php
+ path: app/code/core/Mage/Adminhtml/Block/Catalog/Category/Tab/Attributes.php
-
message: "#^Negated boolean expression is always false\\.$#"
count: 1
- path: ../app/code/core/Mage/Adminhtml/Block/Catalog/Category/Tab/Design.php
+ path: app/code/core/Mage/Adminhtml/Block/Catalog/Category/Tab/Design.php
-
message: "#^Method Mage_Adminhtml_Block_Catalog_Category_Tree\\:\\:_getNodeJson\\(\\) should return string but returns array\\\\.$#"
count: 1
- path: ../app/code/core/Mage/Adminhtml/Block/Catalog/Category/Tree.php
+ path: app/code/core/Mage/Adminhtml/Block/Catalog/Category/Tree.php
-
message: "#^Offset 'children' on string on left side of \\?\\? does not exist\\.$#"
count: 2
- path: ../app/code/core/Mage/Adminhtml/Block/Catalog/Category/Tree.php
+ path: app/code/core/Mage/Adminhtml/Block/Catalog/Category/Tree.php
-
message: "#^Right side of && is always true\\.$#"
count: 1
- path: ../app/code/core/Mage/Adminhtml/Block/Catalog/Category/Tree.php
+ path: app/code/core/Mage/Adminhtml/Block/Catalog/Category/Tree.php
-
message: "#^Cannot assign offset 'checked' to string\\.$#"
count: 1
- path: ../app/code/core/Mage/Adminhtml/Block/Catalog/Category/Widget/Chooser.php
+ path: app/code/core/Mage/Adminhtml/Block/Catalog/Category/Widget/Chooser.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
+ path: app/code/core/Mage/Adminhtml/Block/Catalog/Category/Widget/Chooser.php
-
message: "#^Method Mage_Adminhtml_Block_Catalog_Category_Widget_Chooser\\:\\:_getNodeJson\\(\\) should return string but returns array\\\\.$#"
count: 1
- path: ../app/code/core/Mage/Adminhtml/Block/Catalog/Category/Widget/Chooser.php
+ path: app/code/core/Mage/Adminhtml/Block/Catalog/Category/Widget/Chooser.php
-
message: "#^Parameter \\#1 \\$renderer of static method Varien_Data_Form\\:\\:setElementRenderer\\(\\) expects Varien_Data_Form_Element_Renderer_Interface, Mage_Core_Block_Abstract\\|false given\\.$#"
count: 1
- path: ../app/code/core/Mage/Adminhtml/Block/Catalog/Form.php
+ path: app/code/core/Mage/Adminhtml/Block/Catalog/Form.php
-
message: "#^Parameter \\#1 \\$renderer of static method Varien_Data_Form\\:\\:setFieldsetElementRenderer\\(\\) expects Varien_Data_Form_Element_Renderer_Interface, Mage_Core_Block_Abstract\\|false given\\.$#"
count: 1
- path: ../app/code/core/Mage/Adminhtml/Block/Catalog/Form.php
+ path: app/code/core/Mage/Adminhtml/Block/Catalog/Form.php
-
message: "#^Parameter \\#1 \\$renderer of static method Varien_Data_Form\\:\\:setFieldsetRenderer\\(\\) expects Varien_Data_Form_Element_Renderer_Interface, Mage_Core_Block_Abstract\\|false given\\.$#"
count: 1
- path: ../app/code/core/Mage/Adminhtml/Block/Catalog/Form.php
+ path: app/code/core/Mage/Adminhtml/Block/Catalog/Form.php
-
message: "#^If condition is always true\\.$#"
count: 1
- path: ../app/code/core/Mage/Adminhtml/Block/Catalog/Form/Renderer/Fieldset/Element.php
+ path: app/code/core/Mage/Adminhtml/Block/Catalog/Form/Renderer/Fieldset/Element.php
-
message: "#^Right side of && is always true\\.$#"
count: 1
- path: ../app/code/core/Mage/Adminhtml/Block/Catalog/Form/Renderer/Fieldset/Element.php
+ path: app/code/core/Mage/Adminhtml/Block/Catalog/Form/Renderer/Fieldset/Element.php
-
message: "#^Else branch is unreachable because ternary operator condition is always true\\.$#"
count: 1
- path: ../app/code/core/Mage/Adminhtml/Block/Catalog/Product/Attribute/Edit/Tab/Main.php
+ path: app/code/core/Mage/Adminhtml/Block/Catalog/Product/Attribute/Edit/Tab/Main.php
-
message: "#^Parameter \\#4 \\$after of method Varien_Data_Form_Element_Fieldset\\:\\:addField\\(\\) expects bool, string given\\.$#"
count: 3
- path: ../app/code/core/Mage/Adminhtml/Block/Catalog/Product/Attribute/Edit/Tab/Main.php
+ path: app/code/core/Mage/Adminhtml/Block/Catalog/Product/Attribute/Edit/Tab/Main.php
-
message: "#^Method Mage_Adminhtml_Block_Widget_Grid\\:\\:addColumn\\(\\) invoked with 3 parameters, 2 required\\.$#"
count: 1
- path: ../app/code/core/Mage/Adminhtml/Block/Catalog/Product/Attribute/Grid.php
+ path: app/code/core/Mage/Adminhtml/Block/Catalog/Product/Attribute/Grid.php
-
message: "#^Return type \\(void\\) of method Mage_Adminhtml_Block_Catalog_Product_Attribute_Set_Grid\\:\\:_prepareColumns\\(\\) should be compatible with return type \\(\\$this\\(Mage_Adminhtml_Block_Widget_Grid\\)\\) of method Mage_Adminhtml_Block_Widget_Grid\\:\\:_prepareColumns\\(\\)$#"
count: 1
- path: ../app/code/core/Mage/Adminhtml/Block/Catalog/Product/Attribute/Set/Grid.php
+ path: app/code/core/Mage/Adminhtml/Block/Catalog/Product/Attribute/Set/Grid.php
-
message: "#^Negated boolean expression is always false\\.$#"
count: 1
- path: ../app/code/core/Mage/Adminhtml/Block/Catalog/Product/Composite/Fieldset/Grouped.php
+ path: app/code/core/Mage/Adminhtml/Block/Catalog/Product/Composite/Fieldset/Grouped.php
-
message: "#^Negated boolean expression is always false\\.$#"
count: 1
- path: ../app/code/core/Mage/Adminhtml/Block/Catalog/Product/Created.php
+ path: app/code/core/Mage/Adminhtml/Block/Catalog/Product/Created.php
-
message: "#^Parameter \\#1 \\$attributeId of method Mage_Catalog_Model_Product_Type_Abstract\\:\\:getAttributeById\\(\\) expects int, string given\\.$#"
count: 1
- path: ../app/code/core/Mage/Adminhtml/Block/Catalog/Product/Created.php
+ path: app/code/core/Mage/Adminhtml/Block/Catalog/Product/Created.php
-
message: "#^Parameter \\#2 \\$product of method Mage_Catalog_Model_Product_Type_Abstract\\:\\:getAttributeById\\(\\) expects null, Mage_Catalog_Model_Product given\\.$#"
count: 1
- path: ../app/code/core/Mage/Adminhtml/Block/Catalog/Product/Created.php
+ path: app/code/core/Mage/Adminhtml/Block/Catalog/Product/Created.php
-
message: "#^Right side of && is always true\\.$#"
count: 1
- path: ../app/code/core/Mage/Adminhtml/Block/Catalog/Product/Edit.php
+ path: app/code/core/Mage/Adminhtml/Block/Catalog/Product/Edit.php
-
message: "#^Method Mage_Adminhtml_Block_Catalog_Product_Edit_Action_Attribute\\:\\:_getHelper\\(\\) should return Mage_Adminhtml_Helper_Catalog_Product_Edit_Action_Attribute but returns Mage_Core_Helper_Abstract\\.$#"
count: 1
- path: ../app/code/core/Mage/Adminhtml/Block/Catalog/Product/Edit/Action/Attribute.php
+ path: app/code/core/Mage/Adminhtml/Block/Catalog/Product/Edit/Action/Attribute.php
-
message: "#^If condition is always true\\.$#"
count: 1
- path: ../app/code/core/Mage/Adminhtml/Block/Catalog/Product/Edit/Js.php
+ path: app/code/core/Mage/Adminhtml/Block/Catalog/Product/Edit/Js.php
-
message: "#^Unreachable statement \\- code above always terminates\\.$#"
count: 1
- path: ../app/code/core/Mage/Adminhtml/Block/Catalog/Product/Edit/Js.php
+ path: app/code/core/Mage/Adminhtml/Block/Catalog/Product/Edit/Js.php
-
message: "#^Parameter \\#1 \\$renderer of method Varien_Data_Form_Element_Abstract\\:\\:setRenderer\\(\\) expects Varien_Data_Form_Element_Renderer_Interface, Mage_Core_Block_Abstract\\|false given\\.$#"
count: 4
- path: ../app/code/core/Mage/Adminhtml/Block/Catalog/Product/Edit/Tab/Attributes.php
+ path: app/code/core/Mage/Adminhtml/Block/Catalog/Product/Edit/Tab/Attributes.php
-
message: "#^Return type \\(void\\) of method Mage_Adminhtml_Block_Catalog_Product_Edit_Tab_Attributes\\:\\:_prepareForm\\(\\) should be compatible with return type \\(\\$this\\(Mage_Adminhtml_Block_Widget_Form\\)\\) of method Mage_Adminhtml_Block_Widget_Form\\:\\:_prepareForm\\(\\)$#"
count: 1
- path: ../app/code/core/Mage/Adminhtml/Block/Catalog/Product/Edit/Tab/Attributes.php
+ path: app/code/core/Mage/Adminhtml/Block/Catalog/Product/Edit/Tab/Attributes.php
-
message: "#^Call to function is_null\\(\\) with Varien_Object will always evaluate to false\\.$#"
count: 1
- path: ../app/code/core/Mage/Adminhtml/Block/Catalog/Product/Edit/Tab/Attributes/Create.php
+ path: app/code/core/Mage/Adminhtml/Block/Catalog/Product/Edit/Tab/Attributes/Create.php
-
message: "#^Cannot assign offset 'expanded' to string\\.$#"
count: 1
- path: ../app/code/core/Mage/Adminhtml/Block/Catalog/Product/Edit/Tab/Categories.php
+ path: app/code/core/Mage/Adminhtml/Block/Catalog/Product/Edit/Tab/Categories.php
-
message: "#^If condition is always true\\.$#"
count: 2
- path: ../app/code/core/Mage/Adminhtml/Block/Catalog/Product/Edit/Tab/Categories.php
+ path: app/code/core/Mage/Adminhtml/Block/Catalog/Product/Edit/Tab/Categories.php
-
message: "#^Left side of && is always true\\.$#"
count: 1
- path: ../app/code/core/Mage/Adminhtml/Block/Catalog/Product/Edit/Tab/Categories.php
+ path: app/code/core/Mage/Adminhtml/Block/Catalog/Product/Edit/Tab/Categories.php
-
message: "#^Negated boolean expression is always false\\.$#"
count: 1
- path: ../app/code/core/Mage/Adminhtml/Block/Catalog/Product/Edit/Tab/Categories.php
+ path: app/code/core/Mage/Adminhtml/Block/Catalog/Product/Edit/Tab/Categories.php
-
message: "#^Return type \\(array\\) of method Mage_Adminhtml_Block_Catalog_Product_Edit_Tab_Categories\\:\\:_getNodeJson\\(\\) should be compatible with return type \\(string\\) of method Mage_Adminhtml_Block_Catalog_Category_Tree\\:\\:_getNodeJson\\(\\)$#"
count: 1
- path: ../app/code/core/Mage/Adminhtml/Block/Catalog/Product/Edit/Tab/Categories.php
+ path: app/code/core/Mage/Adminhtml/Block/Catalog/Product/Edit/Tab/Categories.php
-
message: "#^If condition is always true\\.$#"
count: 2
- path: ../app/code/core/Mage/Adminhtml/Block/Catalog/Product/Edit/Tab/Inventory.php
+ path: app/code/core/Mage/Adminhtml/Block/Catalog/Product/Edit/Tab/Inventory.php
-
message: "#^Unreachable statement \\- code above always terminates\\.$#"
count: 1
- path: ../app/code/core/Mage/Adminhtml/Block/Catalog/Product/Edit/Tab/Inventory.php
+ path: app/code/core/Mage/Adminhtml/Block/Catalog/Product/Edit/Tab/Inventory.php
-
message: "#^Parameter \\#1 \\$renderer of method Varien_Data_Form_Element_Abstract\\:\\:setRenderer\\(\\) expects Varien_Data_Form_Element_Renderer_Interface, Mage_Core_Block_Abstract\\|false given\\.$#"
count: 1
- path: ../app/code/core/Mage/Adminhtml/Block/Catalog/Product/Edit/Tab/Price.php
+ path: app/code/core/Mage/Adminhtml/Block/Catalog/Product/Edit/Tab/Price.php
-
message: "#^Call to function is_null\\(\\) with array will always evaluate to false\\.$#"
count: 1
- path: ../app/code/core/Mage/Adminhtml/Block/Catalog/Product/Edit/Tab/Price/Group/Abstract.php
+ path: app/code/core/Mage/Adminhtml/Block/Catalog/Product/Edit/Tab/Price/Group/Abstract.php
-
message: "#^Unreachable statement \\- code above always terminates\\.$#"
count: 1
- path: ../app/code/core/Mage/Adminhtml/Block/Catalog/Product/Edit/Tab/Price/Group/Abstract.php
+ path: app/code/core/Mage/Adminhtml/Block/Catalog/Product/Edit/Tab/Price/Group/Abstract.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
+ path: app/code/core/Mage/Adminhtml/Block/Catalog/Product/Edit/Tab/Super/Config/Simple.php
-
message: "#^Negated boolean expression is always false\\.$#"
count: 1
- path: ../app/code/core/Mage/Adminhtml/Block/Catalog/Product/Edit/Tab/Super/Config/Simple.php
+ 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
+ path: app/code/core/Mage/Adminhtml/Block/Catalog/Product/Edit/Tab/Super/Settings.php
-
message: "#^Parameter \\#2 \\$replace of function str_replace expects array\\|string, int given\\.$#"
count: 1
- path: ../app/code/core/Mage/Adminhtml/Block/Catalog/Product/Edit/Tab/Websites.php
+ path: app/code/core/Mage/Adminhtml/Block/Catalog/Product/Edit/Tab/Websites.php
-
message: "#^Call to function is_null\\(\\) with string will always evaluate to false\\.$#"
count: 1
- path: ../app/code/core/Mage/Adminhtml/Block/Catalog/Product/Edit/Tabs.php
+ path: app/code/core/Mage/Adminhtml/Block/Catalog/Product/Edit/Tabs.php
-
message: "#^If condition is always true\\.$#"
count: 1
- path: ../app/code/core/Mage/Adminhtml/Block/Catalog/Product/Grid.php
+ path: app/code/core/Mage/Adminhtml/Block/Catalog/Product/Grid.php
-
message: "#^Call to an undefined method Mage_Eav_Model_Entity_Attribute\\:\\:isScopeGlobal\\(\\)\\.$#"
count: 2
- path: ../app/code/core/Mage/Adminhtml/Block/Catalog/Product/Helper/Form/Gallery.php
+ path: app/code/core/Mage/Adminhtml/Block/Catalog/Product/Helper/Form/Gallery.php
-
message: "#^Call to an undefined method Mage_Eav_Model_Entity_Attribute\\:\\:isScopeStore\\(\\)\\.$#"
count: 1
- path: ../app/code/core/Mage/Adminhtml/Block/Catalog/Product/Helper/Form/Gallery.php
+ path: app/code/core/Mage/Adminhtml/Block/Catalog/Product/Helper/Form/Gallery.php
-
message: "#^Call to an undefined method Mage_Eav_Model_Entity_Attribute\\:\\:isScopeWebsite\\(\\)\\.$#"
count: 1
- path: ../app/code/core/Mage/Adminhtml/Block/Catalog/Product/Helper/Form/Gallery.php
+ path: app/code/core/Mage/Adminhtml/Block/Catalog/Product/Helper/Form/Gallery.php
-
message: "#^Parameter \\#1 \\$renderer of method Varien_Data_Form_Element_Abstract\\:\\:setRenderer\\(\\) expects Varien_Data_Form_Element_Renderer_Interface, Mage_Core_Block_Abstract\\|false given\\.$#"
count: 1
- path: ../app/code/core/Mage/Adminhtml/Block/Catalog/Search/Edit/Form.php
+ path: app/code/core/Mage/Adminhtml/Block/Catalog/Search/Edit/Form.php
-
message: "#^Parameter \\#1 \\$renderer of method Varien_Data_Form_Element_Abstract\\:\\:setRenderer\\(\\) expects Varien_Data_Form_Element_Renderer_Interface, Mage_Core_Block_Abstract\\|false given\\.$#"
count: 1
- path: ../app/code/core/Mage/Adminhtml/Block/Checkout/Agreement/Edit/Form.php
+ path: app/code/core/Mage/Adminhtml/Block/Checkout/Agreement/Edit/Form.php
-
message: "#^Parameter \\#1 \\$callback of method Varien_Data_Collection\\:\\:walk\\(\\) expects callable\\(\\)\\: mixed, 'afterLoad' given\\.$#"
count: 1
- path: ../app/code/core/Mage/Adminhtml/Block/Checkout/Agreement/Grid.php
+ path: app/code/core/Mage/Adminhtml/Block/Checkout/Agreement/Grid.php
-
message: "#^Parameter \\#1 \\$renderer of method Varien_Data_Form_Element_Abstract\\:\\:setRenderer\\(\\) expects Varien_Data_Form_Element_Renderer_Interface, Mage_Core_Block_Abstract\\|false given\\.$#"
count: 1
- path: ../app/code/core/Mage/Adminhtml/Block/Cms/Block/Edit/Form.php
+ path: app/code/core/Mage/Adminhtml/Block/Cms/Block/Edit/Form.php
-
message: "#^Parameter \\#1 \\$callback of method Varien_Data_Collection\\:\\:walk\\(\\) expects callable\\(\\)\\: mixed, 'afterLoad' given\\.$#"
count: 1
- path: ../app/code/core/Mage/Adminhtml/Block/Cms/Block/Grid.php
+ path: app/code/core/Mage/Adminhtml/Block/Cms/Block/Grid.php
-
message: "#^Parameter \\#1 \\$renderer of method Varien_Data_Form_Element_Abstract\\:\\:setRenderer\\(\\) expects Varien_Data_Form_Element_Renderer_Interface, Mage_Core_Block_Abstract\\|false given\\.$#"
count: 1
- path: ../app/code/core/Mage/Adminhtml/Block/Cms/Page/Edit/Tab/Main.php
+ path: app/code/core/Mage/Adminhtml/Block/Cms/Page/Edit/Tab/Main.php
-
message: "#^Parameter \\#1 \\$callback of method Varien_Data_Collection\\:\\:walk\\(\\) expects callable\\(\\)\\: mixed, 'afterLoad' given\\.$#"
count: 1
- path: ../app/code/core/Mage/Adminhtml/Block/Cms/Page/Grid.php
+ path: app/code/core/Mage/Adminhtml/Block/Cms/Page/Grid.php
-
message: "#^Negated boolean expression is always false\\.$#"
count: 1
- path: ../app/code/core/Mage/Adminhtml/Block/Cms/Wysiwyg/Images/Content/Files.php
+ path: app/code/core/Mage/Adminhtml/Block/Cms/Wysiwyg/Images/Content/Files.php
-
message: "#^PHPDoc type Mage_Core_Model_Abstract of property Mage_Adminhtml_Block_Customer_Edit_Renderer_Region\\:\\:\\$_factory is not covariant with PHPDoc type Mage_Core_Model_Factory of overridden property Mage_Core_Block_Abstract\\:\\:\\$_factory\\.$#"
count: 1
- path: ../app/code/core/Mage/Adminhtml/Block/Customer/Edit/Renderer/Region.php
+ path: app/code/core/Mage/Adminhtml/Block/Customer/Edit/Renderer/Region.php
-
message: "#^Call to function is_null\\(\\) with Mage_Core_Model_Store will always evaluate to false\\.$#"
count: 1
- path: ../app/code/core/Mage/Adminhtml/Block/Customer/Edit/Tab/Account.php
+ path: app/code/core/Mage/Adminhtml/Block/Customer/Edit/Tab/Account.php
-
message: "#^Parameter \\#1 \\$renderer of method Varien_Data_Form_Element_Abstract\\:\\:setRenderer\\(\\) expects Varien_Data_Form_Element_Renderer_Interface, Mage_Core_Block_Abstract\\|false given\\.$#"
count: 4
- path: ../app/code/core/Mage/Adminhtml/Block/Customer/Edit/Tab/Account.php
+ path: app/code/core/Mage/Adminhtml/Block/Customer/Edit/Tab/Account.php
-
message: "#^Parameter \\#4 \\$after of method Varien_Data_Form_Element_Fieldset\\:\\:addField\\(\\) expects bool, string given\\.$#"
count: 2
- path: ../app/code/core/Mage/Adminhtml/Block/Customer/Edit/Tab/Account.php
+ path: app/code/core/Mage/Adminhtml/Block/Customer/Edit/Tab/Account.php
-
message: "#^Left side of && is always true\\.$#"
count: 2
- path: ../app/code/core/Mage/Adminhtml/Block/Customer/Edit/Tab/Addresses.php
+ path: app/code/core/Mage/Adminhtml/Block/Customer/Edit/Tab/Addresses.php
-
message: "#^Parameter \\#4 \\$after of method Varien_Data_Form_Element_Fieldset\\:\\:addField\\(\\) expects bool, string given\\.$#"
count: 2
- path: ../app/code/core/Mage/Adminhtml/Block/Customer/Edit/Tab/Addresses.php
+ path: app/code/core/Mage/Adminhtml/Block/Customer/Edit/Tab/Addresses.php
-
message: "#^If condition is always true\\.$#"
count: 1
- path: ../app/code/core/Mage/Adminhtml/Block/Customer/Edit/Tab/View.php
+ path: app/code/core/Mage/Adminhtml/Block/Customer/Edit/Tab/View.php
-
message: "#^Negated boolean expression is always false\\.$#"
count: 1
- path: ../app/code/core/Mage/Adminhtml/Block/Customer/Edit/Tab/View.php
+ path: app/code/core/Mage/Adminhtml/Block/Customer/Edit/Tab/View.php
-
message: "#^Parameter \\#1 \\$date of method Mage_Core_Helper_Data\\:\\:formatDate\\(\\) expects string\\|Zend_Date\\|null, int\\\\|int\\<1, max\\> given\\.$#"
count: 1
- path: ../app/code/core/Mage/Adminhtml/Block/Customer/Edit/Tab/View.php
+ path: app/code/core/Mage/Adminhtml/Block/Customer/Edit/Tab/View.php
-
message: "#^If condition is always true\\.$#"
count: 1
- path: ../app/code/core/Mage/Adminhtml/Block/Customer/Edit/Tab/View/Grid/Renderer/Item.php
+ path: app/code/core/Mage/Adminhtml/Block/Customer/Edit/Tab/View/Grid/Renderer/Item.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
+ 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
+ path: app/code/core/Mage/Adminhtml/Block/Customer/Edit/Tab/View/Wishlist.php
-
message: "#^If condition is always true\\.$#"
count: 1
- path: ../app/code/core/Mage/Adminhtml/Block/Customer/Edit/Tab/Wishlist.php
+ path: app/code/core/Mage/Adminhtml/Block/Customer/Edit/Tab/Wishlist.php
-
message: "#^Left side of && is always true\\.$#"
count: 1
- path: ../app/code/core/Mage/Adminhtml/Block/Customer/Edit/Tab/Wishlist.php
+ path: app/code/core/Mage/Adminhtml/Block/Customer/Edit/Tab/Wishlist.php
-
message: "#^Call to function is_array\\(\\) with mixed will always evaluate to false\\.$#"
count: 1
- path: ../app/code/core/Mage/Adminhtml/Block/Customer/Form/Element/File.php
+ path: app/code/core/Mage/Adminhtml/Block/Customer/Form/Element/File.php
-
message: "#^Result of && is always false\\.$#"
count: 1
- path: ../app/code/core/Mage/Adminhtml/Block/Customer/Form/Element/File.php
+ path: app/code/core/Mage/Adminhtml/Block/Customer/Form/Element/File.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
+ 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
+ path: app/code/core/Mage/Adminhtml/Block/Customer/Sales/Order/Address/Form/Renderer/Vat.php
-
message: "#^If condition is always true\\.$#"
count: 1
- path: ../app/code/core/Mage/Adminhtml/Block/Dashboard/Graph.php
+ path: app/code/core/Mage/Adminhtml/Block/Dashboard/Graph.php
-
message: "#^Variable \\$d might not be defined\\.$#"
count: 2
- path: ../app/code/core/Mage/Adminhtml/Block/Dashboard/Graph.php
+ path: app/code/core/Mage/Adminhtml/Block/Dashboard/Graph.php
-
message: "#^Variable \\$localmaxlength might not be defined\\.$#"
count: 1
- path: ../app/code/core/Mage/Adminhtml/Block/Dashboard/Graph.php
+ path: app/code/core/Mage/Adminhtml/Block/Dashboard/Graph.php
-
message: "#^Variable \\$localmaxvalue might not be defined\\.$#"
count: 1
- path: ../app/code/core/Mage/Adminhtml/Block/Dashboard/Graph.php
+ path: app/code/core/Mage/Adminhtml/Block/Dashboard/Graph.php
-
message: "#^Variable \\$localminvalue might not be defined\\.$#"
count: 1
- path: ../app/code/core/Mage/Adminhtml/Block/Dashboard/Graph.php
+ path: app/code/core/Mage/Adminhtml/Block/Dashboard/Graph.php
-
message: "#^Call to function is_null\\(\\) with Varien_Object will always evaluate to false\\.$#"
count: 1
- path: ../app/code/core/Mage/Adminhtml/Block/Media/Editor.php
+ path: app/code/core/Mage/Adminhtml/Block/Media/Editor.php
-
message: "#^Call to function is_null\\(\\) with Mage_Newsletter_Model_Resource_Queue_Collection will always evaluate to false\\.$#"
count: 1
- path: ../app/code/core/Mage/Adminhtml/Block/Newsletter/Subscriber.php
+ path: app/code/core/Mage/Adminhtml/Block/Newsletter/Subscriber.php
-
message: "#^Call to function is_null\\(\\) with Mage_Core_Model_Resource_Website_Collection will always evaluate to false\\.$#"
count: 1
- path: ../app/code/core/Mage/Adminhtml/Block/Newsletter/Subscriber/Grid/Filter/Website.php
+ path: app/code/core/Mage/Adminhtml/Block/Newsletter/Subscriber/Grid/Filter/Website.php
-
message: "#^Else branch is unreachable because ternary operator condition is always true\\.$#"
count: 2
- path: ../app/code/core/Mage/Adminhtml/Block/Newsletter/Template/Edit/Form.php
+ path: app/code/core/Mage/Adminhtml/Block/Newsletter/Template/Edit/Form.php
-
message: "#^Variable \\$class might not be defined\\.$#"
count: 1
- path: ../app/code/core/Mage/Adminhtml/Block/Notification/Grid/Renderer/Severity.php
+ path: app/code/core/Mage/Adminhtml/Block/Notification/Grid/Renderer/Severity.php
-
message: "#^Variable \\$value might not be defined\\.$#"
count: 1
- path: ../app/code/core/Mage/Adminhtml/Block/Notification/Grid/Renderer/Severity.php
+ path: app/code/core/Mage/Adminhtml/Block/Notification/Grid/Renderer/Severity.php
-
message: "#^Unreachable statement \\- code above always terminates\\.$#"
count: 1
- path: ../app/code/core/Mage/Adminhtml/Block/Notification/Toolbar.php
+ path: app/code/core/Mage/Adminhtml/Block/Notification/Toolbar.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
+ path: app/code/core/Mage/Adminhtml/Block/Notification/Window.php
-
message: "#^Call to function is_null\\(\\) with bool will always evaluate to false\\.$#"
count: 1
- path: ../app/code/core/Mage/Adminhtml/Block/Notification/Window.php
+ path: app/code/core/Mage/Adminhtml/Block/Notification/Window.php
-
message: "#^Call to function is_null\\(\\) with string will always evaluate to false\\.$#"
count: 1
- path: ../app/code/core/Mage/Adminhtml/Block/Notification/Window.php
+ path: app/code/core/Mage/Adminhtml/Block/Notification/Window.php
-
message: "#^Unreachable statement \\- code above always terminates\\.$#"
count: 1
- path: ../app/code/core/Mage/Adminhtml/Block/Notification/Window.php
+ 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
+ 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
+ path: app/code/core/Mage/Adminhtml/Block/Permissions/Grid/User.php
-
message: "#^Call to an undefined method Varien_Data_Collection\\:\\:addFieldToFilter\\(\\)\\.$#"
count: 2
- path: ../app/code/core/Mage/Adminhtml/Block/Permissions/Role/Grid/User.php
+ path: app/code/core/Mage/Adminhtml/Block/Permissions/Role/Grid/User.php
-
message: "#^If condition is always true\\.$#"
count: 1
- path: ../app/code/core/Mage/Adminhtml/Block/Permissions/Tab/Rolesedit.php
+ 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
+ path: app/code/core/Mage/Adminhtml/Block/Permissions/Tab/Userroles.php
-
message: "#^Call to an undefined method Varien_Data_Collection\\:\\:addFieldToFilter\\(\\)\\.$#"
count: 2
- path: ../app/code/core/Mage/Adminhtml/Block/Permissions/User/Edit/Tab/Roles.php
+ path: app/code/core/Mage/Adminhtml/Block/Permissions/User/Edit/Tab/Roles.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
+ 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
+ path: app/code/core/Mage/Adminhtml/Block/Permissions/Usernroles.php
-
message: "#^Variable \\$answerData might not be defined\\.$#"
count: 1
- path: ../app/code/core/Mage/Adminhtml/Block/Poll/Answer/Edit.php
+ path: app/code/core/Mage/Adminhtml/Block/Poll/Answer/Edit.php
-
message: "#^Parameter \\#1 \\$renderer of method Varien_Data_Form_Element_Abstract\\:\\:setRenderer\\(\\) expects Varien_Data_Form_Element_Renderer_Interface, Mage_Core_Block_Abstract\\|false given\\.$#"
count: 1
- path: ../app/code/core/Mage/Adminhtml/Block/Promo/Catalog/Edit/Tab/Main.php
+ path: app/code/core/Mage/Adminhtml/Block/Promo/Catalog/Edit/Tab/Main.php
-
message: "#^Parameter \\#1 \\$renderer of method Varien_Data_Form_Element_Abstract\\:\\:setRenderer\\(\\) expects Varien_Data_Form_Element_Renderer_Interface, Mage_Core_Block_Abstract\\|false given\\.$#"
count: 1
- path: ../app/code/core/Mage/Adminhtml/Block/Promo/Quote/Edit/Tab/Labels.php
+ path: app/code/core/Mage/Adminhtml/Block/Promo/Quote/Edit/Tab/Labels.php
-
message: "#^Parameter \\#1 \\$renderer of method Varien_Data_Form_Element_Abstract\\:\\:setRenderer\\(\\) expects Varien_Data_Form_Element_Renderer_Interface, Mage_Core_Block_Abstract\\|false given\\.$#"
count: 2
- path: ../app/code/core/Mage/Adminhtml/Block/Promo/Quote/Edit/Tab/Main.php
+ path: app/code/core/Mage/Adminhtml/Block/Promo/Quote/Edit/Tab/Main.php
-
message: "#^Parameter \\#3 \\$refValues of method Mage_Adminhtml_Block_Widget_Form_Element_Dependence\\:\\:addFieldDependence\\(\\) expects array\\|string, int given\\.$#"
count: 3
- path: ../app/code/core/Mage/Adminhtml/Block/Promo/Quote/Edit/Tab/Main.php
+ path: app/code/core/Mage/Adminhtml/Block/Promo/Quote/Edit/Tab/Main.php
-
message: "#^Parameter \\#1 \\$separator of function explode expects non\\-empty\\-string, string given\\.$#"
count: 1
- path: ../app/code/core/Mage/Adminhtml/Block/Promo/Widget/Chooser/Daterange.php
+ path: app/code/core/Mage/Adminhtml/Block/Promo/Widget/Chooser/Daterange.php
-
message: "#^Parameter \\#1 \\$renderer of method Varien_Data_Form_Element_Abstract\\:\\:setRenderer\\(\\) expects Varien_Data_Form_Element_Renderer_Interface, Mage_Core_Block_Abstract\\|false given\\.$#"
count: 1
- path: ../app/code/core/Mage/Adminhtml/Block/Rating/Edit/Tab/Form.php
+ path: app/code/core/Mage/Adminhtml/Block/Rating/Edit/Tab/Form.php
-
message: "#^Parameter \\#1 \\$hour of function mktime expects int, null given\\.$#"
count: 1
- path: ../app/code/core/Mage/Adminhtml/Block/Report/Config/Form/Field/YtdStart.php
+ path: app/code/core/Mage/Adminhtml/Block/Report/Config/Form/Field/YtdStart.php
-
message: "#^Negated boolean expression is always false\\.$#"
count: 1
- path: ../app/code/core/Mage/Adminhtml/Block/Report/Grid.php
+ path: app/code/core/Mage/Adminhtml/Block/Report/Grid.php
-
message: "#^Parameter \\#1 \\$collection of method Mage_Adminhtml_Block_Widget_Grid\\:\\:setCollection\\(\\) expects Varien_Data_Collection, Mage_Reports_Model_Resource_Report_Collection given\\.$#"
count: 1
- path: ../app/code/core/Mage/Adminhtml/Block/Report/Grid.php
+ path: app/code/core/Mage/Adminhtml/Block/Report/Grid.php
-
message: "#^Parameter \\#1 \\$from of method Mage_Reports_Model_Resource_Report_Collection\\:\\:setInterval\\(\\) expects int, Zend_Date given\\.$#"
count: 1
- path: ../app/code/core/Mage/Adminhtml/Block/Report/Grid.php
+ path: app/code/core/Mage/Adminhtml/Block/Report/Grid.php
-
message: "#^Parameter \\#2 \\$to of method Mage_Reports_Model_Resource_Report_Collection\\:\\:setInterval\\(\\) expects int, Zend_Date given\\.$#"
count: 1
- path: ../app/code/core/Mage/Adminhtml/Block/Report/Grid.php
+ path: app/code/core/Mage/Adminhtml/Block/Report/Grid.php
-
message: "#^Return type \\(void\\) of method Mage_Adminhtml_Block_Report_Grid\\:\\:_prepareCollection\\(\\) should be compatible with return type \\(\\$this\\(Mage_Adminhtml_Block_Widget_Grid\\)\\) of method Mage_Adminhtml_Block_Widget_Grid\\:\\:_prepareCollection\\(\\)$#"
count: 1
- path: ../app/code/core/Mage/Adminhtml/Block/Report/Grid.php
+ path: app/code/core/Mage/Adminhtml/Block/Report/Grid.php
-
message: "#^Call to an undefined method Mage_Reports_Model_Resource_Report_Collection_Abstract\\:\\:addOrderStatusFilter\\(\\)\\.$#"
count: 1
- path: ../app/code/core/Mage/Adminhtml/Block/Report/Grid/Abstract.php
+ path: app/code/core/Mage/Adminhtml/Block/Report/Grid/Abstract.php
-
message: "#^Call to function is_null\\(\\) with Varien_Data_Collection will always evaluate to false\\.$#"
count: 1
- path: ../app/code/core/Mage/Adminhtml/Block/Report/Grid/Abstract.php
+ path: app/code/core/Mage/Adminhtml/Block/Report/Grid/Abstract.php
-
message: "#^Cannot call method setPeriod\\(\\) on Mage_Core_Model_Resource_Db_Collection_Abstract\\|false\\.$#"
count: 4
- path: ../app/code/core/Mage/Adminhtml/Block/Report/Grid/Abstract.php
+ path: app/code/core/Mage/Adminhtml/Block/Report/Grid/Abstract.php
-
message: "#^Method Mage_Adminhtml_Block_Report_Grid_Abstract\\:\\:addColumn\\(\\) should return Mage_Adminhtml_Block_Report_Grid_Abstract but returns Mage_Adminhtml_Block_Widget_Grid\\.$#"
count: 1
- path: ../app/code/core/Mage/Adminhtml/Block/Report/Grid/Abstract.php
+ path: app/code/core/Mage/Adminhtml/Block/Report/Grid/Abstract.php
-
message: "#^Method Mage_Adminhtml_Block_Report_Grid_Abstract\\:\\:getCollection\\(\\) should return Mage_Reports_Model_Grouped_Collection but returns Varien_Data_Collection\\.$#"
count: 1
- path: ../app/code/core/Mage/Adminhtml/Block/Report/Grid/Abstract.php
+ path: app/code/core/Mage/Adminhtml/Block/Report/Grid/Abstract.php
-
message: "#^Negated boolean expression is always false\\.$#"
count: 1
- path: ../app/code/core/Mage/Adminhtml/Block/Report/Grid/Abstract.php
+ path: app/code/core/Mage/Adminhtml/Block/Report/Grid/Abstract.php
-
message: "#^Parameter \\#2 \\$value of method Mage_Adminhtml_Block_Widget_Grid\\:\\:isColumnGrouped\\(\\) expects string\\|null, true given\\.$#"
count: 1
- path: ../app/code/core/Mage/Adminhtml/Block/Report/Grid/Abstract.php
+ 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
+ path: app/code/core/Mage/Adminhtml/Block/Report/Grid/Abstract.php
-
message: "#^Parameter \\#1 \\$value of method Zend_Currency\\:\\:toCurrency\\(\\) expects float\\|int\\|null, string given\\.$#"
count: 1
- path: ../app/code/core/Mage/Adminhtml/Block/Report/Grid/Column/Renderer/Currency.php
+ path: app/code/core/Mage/Adminhtml/Block/Report/Grid/Column/Renderer/Currency.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
+ 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
+ path: app/code/core/Mage/Adminhtml/Block/Report/Product/Grid.php
-
message: "#^Parameter \\#1 \\$grid of method Mage_Reports_Model_Totals\\:\\:countTotals\\(\\) expects Mage_Adminhtml_Block_Report_Grid, \\$this\\(Mage_Adminhtml_Block_Report_Product_Grid\\) given\\.$#"
count: 1
- path: ../app/code/core/Mage/Adminhtml/Block/Report/Product/Grid.php
+ path: app/code/core/Mage/Adminhtml/Block/Report/Product/Grid.php
-
message: "#^Return type \\(void\\) of method Mage_Adminhtml_Block_Report_Product_Grid\\:\\:_afterLoadCollection\\(\\) should be compatible with return type \\(\\$this\\(Mage_Adminhtml_Block_Widget_Grid\\)\\) of method Mage_Adminhtml_Block_Widget_Grid\\:\\:_afterLoadCollection\\(\\)$#"
count: 1
- path: ../app/code/core/Mage/Adminhtml/Block/Report/Product/Grid.php
+ path: app/code/core/Mage/Adminhtml/Block/Report/Product/Grid.php
-
message: "#^Parameter \\#1 \\$fields of method Mage_Reports_Model_Resource_Product_Lowstock_Collection\\:\\:joinInventoryItem\\(\\) expects array, string given\\.$#"
count: 1
- path: ../app/code/core/Mage/Adminhtml/Block/Report/Product/Lowstock/Grid.php
+ path: app/code/core/Mage/Adminhtml/Block/Report/Product/Lowstock/Grid.php
-
message: "#^Call to an undefined method Mage_Reports_Model_Resource_Report_Collection_Abstract\\:\\:addRuleFilter\\(\\)\\.$#"
count: 1
- path: ../app/code/core/Mage/Adminhtml/Block/Report/Sales/Coupons/Grid.php
+ path: app/code/core/Mage/Adminhtml/Block/Report/Sales/Coupons/Grid.php
-
message: "#^Parameter \\#1 \\$collection of method Mage_Adminhtml_Block_Report_Grid_Abstract\\:\\:_addCustomFilter\\(\\) expects Mage_Reports_Model_Resource_Report_Collection_Abstract, Varien_Object given\\.$#"
count: 1
- path: ../app/code/core/Mage/Adminhtml/Block/Report/Sales/Coupons/Grid.php
+ path: app/code/core/Mage/Adminhtml/Block/Report/Sales/Coupons/Grid.php
-
message: "#^Parameter \\#2 \\$filterData of method Mage_Adminhtml_Block_Report_Grid_Abstract\\:\\:_addCustomFilter\\(\\) expects Varien_Object, Mage_Reports_Model_Resource_Report_Collection_Abstract given\\.$#"
count: 1
- path: ../app/code/core/Mage/Adminhtml/Block/Report/Sales/Coupons/Grid.php
+ path: app/code/core/Mage/Adminhtml/Block/Report/Sales/Coupons/Grid.php
-
message: "#^Parameter \\#2 \\$filter of method Mage_Reports_Model_Resource_Quote_Collection\\:\\:prepareForAbandonedReport\\(\\) expects string\\|null, array\\\\|string\\> given\\.$#"
count: 1
- path: ../app/code/core/Mage/Adminhtml/Block/Report/Shopcart/Abandoned/Grid.php
+ path: app/code/core/Mage/Adminhtml/Block/Report/Shopcart/Abandoned/Grid.php
-
message: "#^Return type \\(void\\) of method Mage_Adminhtml_Block_Report_Shopcart_Customer_Grid\\:\\:_afterLoadCollection\\(\\) should be compatible with return type \\(\\$this\\(Mage_Adminhtml_Block_Widget_Grid\\)\\) of method Mage_Adminhtml_Block_Widget_Grid\\:\\:_afterLoadCollection\\(\\)$#"
count: 1
- path: ../app/code/core/Mage/Adminhtml/Block/Report/Shopcart/Customer/Grid.php
+ path: app/code/core/Mage/Adminhtml/Block/Report/Shopcart/Customer/Grid.php
-
message: "#^Parameter \\#1 \\$statusCode of method Mage_Tag_Model_Resource_Popular_Collection\\:\\:addStatusFilter\\(\\) expects string, int given\\.$#"
count: 1
- path: ../app/code/core/Mage/Adminhtml/Block/Report/Tag/Popular/Grid.php
+ path: app/code/core/Mage/Adminhtml/Block/Report/Tag/Popular/Grid.php
-
message: "#^Parameter \\#1 \\$renderer of method Varien_Data_Form_Element_Abstract\\:\\:setRenderer\\(\\) expects Varien_Data_Form_Element_Renderer_Interface, Mage_Core_Block_Abstract\\|false given\\.$#"
count: 1
- path: ../app/code/core/Mage/Adminhtml/Block/Review/Add/Form.php
+ path: app/code/core/Mage/Adminhtml/Block/Review/Add/Form.php
-
message: "#^Parameter \\#1 \\$renderer of method Varien_Data_Form_Element_Abstract\\:\\:setRenderer\\(\\) expects Varien_Data_Form_Element_Renderer_Interface, Mage_Core_Block_Abstract\\|false given\\.$#"
count: 1
- path: ../app/code/core/Mage/Adminhtml/Block/Review/Edit/Form.php
+ path: app/code/core/Mage/Adminhtml/Block/Review/Edit/Form.php
-
message: "#^Return type \\(void\\) of method Mage_Adminhtml_Block_Review_Grid\\:\\:_prepareMassaction\\(\\) should be compatible with return type \\(\\$this\\(Mage_Adminhtml_Block_Widget_Grid\\)\\) of method Mage_Adminhtml_Block_Widget_Grid\\:\\:_prepareMassaction\\(\\)$#"
count: 1
- path: ../app/code/core/Mage/Adminhtml/Block/Review/Grid.php
+ path: app/code/core/Mage/Adminhtml/Block/Review/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
+ path: app/code/core/Mage/Adminhtml/Block/Review/Grid/Filter/Type.php
-
message: "#^Return type \\(void\\) of method Mage_Adminhtml_Block_Review_Product_Grid\\:\\:_prepareColumns\\(\\) should be compatible with return type \\(\\$this\\(Mage_Adminhtml_Block_Widget_Grid\\)\\) of method Mage_Adminhtml_Block_Catalog_Product_Grid\\:\\:_prepareColumns\\(\\)$#"
count: 1
- path: ../app/code/core/Mage/Adminhtml/Block/Review/Product/Grid.php
+ path: app/code/core/Mage/Adminhtml/Block/Review/Product/Grid.php
-
message: "#^Parameter \\#1 \\$storeId of method Mage_Rating_Model_Resource_Rating_Collection\\:\\:setStoreFilter\\(\\) expects int, array given\\.$#"
count: 1
- path: ../app/code/core/Mage/Adminhtml/Block/Review/Rating/Detailed.php
+ path: app/code/core/Mage/Adminhtml/Block/Review/Rating/Detailed.php
-
message: "#^If condition is always true\\.$#"
count: 1
- path: ../app/code/core/Mage/Adminhtml/Block/Sales/Items/Abstract.php
+ path: app/code/core/Mage/Adminhtml/Block/Sales/Items/Abstract.php
-
message: "#^Unreachable statement \\- code above always terminates\\.$#"
count: 1
- path: ../app/code/core/Mage/Adminhtml/Block/Sales/Items/Abstract.php
+ path: app/code/core/Mage/Adminhtml/Block/Sales/Items/Abstract.php
-
message: "#^Negated boolean expression is always false\\.$#"
count: 1
- path: ../app/code/core/Mage/Adminhtml/Block/Sales/Order/Comments/View.php
+ path: app/code/core/Mage/Adminhtml/Block/Sales/Order/Comments/View.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
+ path: app/code/core/Mage/Adminhtml/Block/Sales/Order/Create/Billing/Address.php
-
message: "#^Left side of && is always true\\.$#"
count: 1
- path: ../app/code/core/Mage/Adminhtml/Block/Sales/Order/Create/Billing/Method/Form.php
+ path: app/code/core/Mage/Adminhtml/Block/Sales/Order/Create/Billing/Method/Form.php
-
message: "#^Parameter \\#1 \\$currency of method Mage_Directory_Model_Currency\\:\\:getCurrencyRates\\(\\) expects string, Mage_Directory_Model_Currency given\\.$#"
count: 1
- path: ../app/code/core/Mage/Adminhtml/Block/Sales/Order/Create/Data.php
+ path: app/code/core/Mage/Adminhtml/Block/Sales/Order/Create/Data.php
-
message: "#^Call to function is_null\\(\\) with int will always evaluate to false\\.$#"
count: 5
- path: ../app/code/core/Mage/Adminhtml/Block/Sales/Order/Create/Form.php
+ path: app/code/core/Mage/Adminhtml/Block/Sales/Order/Create/Form.php
-
message: "#^Call to function is_null\\(\\) with Varien_Data_Form will always evaluate to false\\.$#"
count: 1
- path: ../app/code/core/Mage/Adminhtml/Block/Sales/Order/Create/Form/Abstract.php
+ path: app/code/core/Mage/Adminhtml/Block/Sales/Order/Create/Form/Abstract.php
-
message: "#^Parameter \\#1 \\$renderer of static method Varien_Data_Form\\:\\:setElementRenderer\\(\\) expects Varien_Data_Form_Element_Renderer_Interface, Mage_Core_Block_Abstract\\|false given\\.$#"
count: 1
- path: ../app/code/core/Mage/Adminhtml/Block/Sales/Order/Create/Form/Abstract.php
+ path: app/code/core/Mage/Adminhtml/Block/Sales/Order/Create/Form/Abstract.php
-
message: "#^Parameter \\#1 \\$renderer of static method Varien_Data_Form\\:\\:setFieldsetElementRenderer\\(\\) expects Varien_Data_Form_Element_Renderer_Interface, Mage_Core_Block_Abstract\\|false given\\.$#"
count: 1
- path: ../app/code/core/Mage/Adminhtml/Block/Sales/Order/Create/Form/Abstract.php
+ path: app/code/core/Mage/Adminhtml/Block/Sales/Order/Create/Form/Abstract.php
-
message: "#^Parameter \\#1 \\$renderer of static method Varien_Data_Form\\:\\:setFieldsetRenderer\\(\\) expects Varien_Data_Form_Element_Renderer_Interface, Mage_Core_Block_Abstract\\|false given\\.$#"
count: 1
- path: ../app/code/core/Mage/Adminhtml/Block/Sales/Order/Create/Form/Abstract.php
+ path: app/code/core/Mage/Adminhtml/Block/Sales/Order/Create/Form/Abstract.php
-
message: "#^Call to function is_null\\(\\) with Mage_Customer_Model_Form will always evaluate to false\\.$#"
count: 1
- path: ../app/code/core/Mage/Adminhtml/Block/Sales/Order/Create/Form/Address.php
+ path: app/code/core/Mage/Adminhtml/Block/Sales/Order/Create/Form/Address.php
-
message: "#^If condition is always false\\.$#"
count: 2
- path: ../app/code/core/Mage/Adminhtml/Block/Sales/Order/Create/Form/Address.php
+ path: app/code/core/Mage/Adminhtml/Block/Sales/Order/Create/Form/Address.php
-
message: "#^Parameter \\#1 \\$addressId of method Mage_Customer_Model_Customer\\:\\:getAddressById\\(\\) expects int, null given\\.$#"
count: 1
- path: ../app/code/core/Mage/Adminhtml/Block/Sales/Order/Create/Form/Address.php
+ path: app/code/core/Mage/Adminhtml/Block/Sales/Order/Create/Form/Address.php
-
message: "#^Parameter \\#4 \\$after of method Varien_Data_Form_Element_Fieldset\\:\\:addField\\(\\) expects bool, string given\\.$#"
count: 2
- path: ../app/code/core/Mage/Adminhtml/Block/Sales/Order/Create/Form/Address.php
+ path: app/code/core/Mage/Adminhtml/Block/Sales/Order/Create/Form/Address.php
-
message: "#^Property Mage_Adminhtml_Block_Sales_Order_Create_Form_Address\\:\\:\\$_addressForm \\(Mage_Customer_Model_Form\\) does not accept Mage_Eav_Model_Form\\.$#"
count: 1
- path: ../app/code/core/Mage/Adminhtml/Block/Sales/Order/Create/Form/Address.php
+ path: app/code/core/Mage/Adminhtml/Block/Sales/Order/Create/Form/Address.php
-
message: "#^Call to function is_null\\(\\) with Mage_GiftMessage_Model_Message will always evaluate to false\\.$#"
count: 1
- path: ../app/code/core/Mage/Adminhtml/Block/Sales/Order/Create/Giftmessage/Form.php
+ path: app/code/core/Mage/Adminhtml/Block/Sales/Order/Create/Giftmessage/Form.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
+ path: app/code/core/Mage/Adminhtml/Block/Sales/Order/Create/Giftmessage/Form.php
-
message: "#^Negated boolean expression is always false\\.$#"
count: 2
- path: ../app/code/core/Mage/Adminhtml/Block/Sales/Order/Create/Giftmessage/Form.php
+ 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
+ path: app/code/core/Mage/Adminhtml/Block/Sales/Order/Create/Giftmessage/Form.php
-
message: "#^Call to function is_null\\(\\) with 0 will always evaluate to false\\.$#"
count: 1
- path: ../app/code/core/Mage/Adminhtml/Block/Sales/Order/Create/Header.php
+ path: app/code/core/Mage/Adminhtml/Block/Sales/Order/Create/Header.php
-
message: "#^Call to function is_null\\(\\) with int will always evaluate to false\\.$#"
count: 1
- path: ../app/code/core/Mage/Adminhtml/Block/Sales/Order/Create/Header.php
+ path: app/code/core/Mage/Adminhtml/Block/Sales/Order/Create/Header.php
-
message: "#^Argument of an invalid type float supplied for foreach, only iterables are supported\\.$#"
count: 2
- path: ../app/code/core/Mage/Adminhtml/Block/Sales/Order/Create/Items/Grid.php
+ path: app/code/core/Mage/Adminhtml/Block/Sales/Order/Create/Items/Grid.php
-
message: "#^Parameter \\#1 \\$optionId of method Mage_Catalog_Model_Product\\:\\:getOptionById\\(\\) expects int, string given\\.$#"
count: 1
- path: ../app/code/core/Mage/Adminhtml/Block/Sales/Order/Create/Items/Grid.php
+ path: app/code/core/Mage/Adminhtml/Block/Sales/Order/Create/Items/Grid.php
-
message: "#^Undefined variable\\: \\$info$#"
count: 1
- path: ../app/code/core/Mage/Adminhtml/Block/Sales/Order/Create/Items/Grid.php
+ path: app/code/core/Mage/Adminhtml/Block/Sales/Order/Create/Items/Grid.php
-
message: "#^Unreachable statement \\- code above always terminates\\.$#"
count: 1
- path: ../app/code/core/Mage/Adminhtml/Block/Sales/Order/Create/Items/Grid.php
+ path: app/code/core/Mage/Adminhtml/Block/Sales/Order/Create/Items/Grid.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
+ 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
+ path: app/code/core/Mage/Adminhtml/Block/Sales/Order/Create/Shipping/Address.php
-
message: "#^Variable \\$button might not be defined\\.$#"
count: 1
- path: ../app/code/core/Mage/Adminhtml/Block/Sales/Order/Create/Sidebar.php
+ path: app/code/core/Mage/Adminhtml/Block/Sales/Order/Create/Sidebar.php
-
message: "#^If condition is always true\\.$#"
count: 1
- path: ../app/code/core/Mage/Adminhtml/Block/Sales/Order/Create/Sidebar/Compared.php
+ 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/Compared.php
+ path: app/code/core/Mage/Adminhtml/Block/Sales/Order/Create/Sidebar/Compared.php
-
message: "#^If condition is always true\\.$#"
count: 1
- path: ../app/code/core/Mage/Adminhtml/Block/Sales/Order/Create/Sidebar/Pcompared.php
+ path: app/code/core/Mage/Adminhtml/Block/Sales/Order/Create/Sidebar/Pcompared.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
+ path: app/code/core/Mage/Adminhtml/Block/Sales/Order/Create/Sidebar/Pcompared.php
-
message: "#^If condition is always true\\.$#"
count: 1
- path: ../app/code/core/Mage/Adminhtml/Block/Sales/Order/Create/Sidebar/Wishlist.php
+ path: app/code/core/Mage/Adminhtml/Block/Sales/Order/Create/Sidebar/Wishlist.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
+ 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
+ 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
+ path: app/code/core/Mage/Adminhtml/Block/Sales/Order/Creditmemo/Create/Items.php
-
message: "#^Left side of && is always true\\.$#"
count: 1
- path: ../app/code/core/Mage/Adminhtml/Block/Sales/Order/Creditmemo/Totals.php
+ path: app/code/core/Mage/Adminhtml/Block/Sales/Order/Creditmemo/Totals.php
-
message: "#^If condition is always false\\.$#"
count: 1
- path: ../app/code/core/Mage/Adminhtml/Block/Sales/Order/Creditmemo/View.php
+ path: app/code/core/Mage/Adminhtml/Block/Sales/Order/Creditmemo/View.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
+ path: app/code/core/Mage/Adminhtml/Block/Sales/Order/Creditmemo/View/Items.php
-
message: "#^Negated boolean expression is always false\\.$#"
count: 1
- path: ../app/code/core/Mage/Adminhtml/Block/Sales/Order/Payment.php
+ path: app/code/core/Mage/Adminhtml/Block/Sales/Order/Payment.php
-
message: "#^Left side of && is always true\\.$#"
count: 1
- path: ../app/code/core/Mage/Adminhtml/Block/Sales/Order/Shipment/Create/Items.php
+ path: app/code/core/Mage/Adminhtml/Block/Sales/Order/Shipment/Create/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
+ 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
+ path: app/code/core/Mage/Adminhtml/Block/Sales/Order/Shipment/Packaging.php
-
message: "#^If condition is always true\\.$#"
count: 5
- path: ../app/code/core/Mage/Adminhtml/Block/Sales/Order/Shipment/Packaging.php
+ path: app/code/core/Mage/Adminhtml/Block/Sales/Order/Shipment/Packaging.php
-
message: "#^Left side of && is always true\\.$#"
count: 1
- path: ../app/code/core/Mage/Adminhtml/Block/Sales/Order/Shipment/Packaging.php
+ 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
+ path: app/code/core/Mage/Adminhtml/Block/Sales/Order/Shipment/Packaging.php
-
message: "#^Unreachable statement \\- code above always terminates\\.$#"
count: 6
- path: ../app/code/core/Mage/Adminhtml/Block/Sales/Order/Shipment/Packaging.php
+ path: app/code/core/Mage/Adminhtml/Block/Sales/Order/Shipment/Packaging.php
-
message: "#^Variable \\$createLabelUrl might not be defined\\.$#"
count: 1
- path: ../app/code/core/Mage/Adminhtml/Block/Sales/Order/Shipment/Packaging.php
+ path: app/code/core/Mage/Adminhtml/Block/Sales/Order/Shipment/Packaging.php
-
message: "#^Variable \\$itemsGridUrl might not be defined\\.$#"
count: 1
- path: ../app/code/core/Mage/Adminhtml/Block/Sales/Order/Shipment/Packaging.php
+ path: app/code/core/Mage/Adminhtml/Block/Sales/Order/Shipment/Packaging.php
-
message: "#^Variable \\$itemsOrderItemId might not be defined\\.$#"
count: 1
- path: ../app/code/core/Mage/Adminhtml/Block/Sales/Order/Shipment/Packaging.php
+ path: app/code/core/Mage/Adminhtml/Block/Sales/Order/Shipment/Packaging.php
-
message: "#^Left side of && is always true\\.$#"
count: 1
- path: ../app/code/core/Mage/Adminhtml/Block/Sales/Order/Shipment/View/Form.php
+ path: app/code/core/Mage/Adminhtml/Block/Sales/Order/Shipment/View/Form.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
+ path: app/code/core/Mage/Adminhtml/Block/Sales/Order/Shipment/View/Items.php
-
message: "#^Unreachable statement \\- code above always terminates\\.$#"
count: 1
- path: ../app/code/core/Mage/Adminhtml/Block/Sales/Order/Shipment/View/Tracking.php
+ path: app/code/core/Mage/Adminhtml/Block/Sales/Order/Shipment/View/Tracking.php
-
message: "#^Parameter \\#1 \\$renderer of method Varien_Data_Form_Element_Abstract\\:\\:setRenderer\\(\\) expects Varien_Data_Form_Element_Renderer_Interface, Mage_Core_Block_Abstract\\|false given\\.$#"
count: 1
- path: ../app/code/core/Mage/Adminhtml/Block/Sales/Order/Status/New/Form.php
+ path: app/code/core/Mage/Adminhtml/Block/Sales/Order/Status/New/Form.php
-
message: "#^Negated boolean expression is always false\\.$#"
count: 1
- path: ../app/code/core/Mage/Adminhtml/Block/Sales/Order/Totalbar.php
+ path: app/code/core/Mage/Adminhtml/Block/Sales/Order/Totalbar.php
-
message: "#^Call to function is_null\\(\\) with Mage_GiftMessage_Model_Message will always evaluate to false\\.$#"
count: 1
- path: ../app/code/core/Mage/Adminhtml/Block/Sales/Order/View/Giftmessage.php
+ path: app/code/core/Mage/Adminhtml/Block/Sales/Order/View/Giftmessage.php
-
message: "#^Call to function is_null\\(\\) with Mage_Sales_Model_Order will always evaluate to false\\.$#"
count: 1
- path: ../app/code/core/Mage/Adminhtml/Block/Sales/Order/View/Giftmessage.php
+ path: app/code/core/Mage/Adminhtml/Block/Sales/Order/View/Giftmessage.php
-
message: "#^Left side of && is always true\\.$#"
count: 1
- path: ../app/code/core/Mage/Adminhtml/Block/Sales/Order/View/Giftmessage.php
+ path: app/code/core/Mage/Adminhtml/Block/Sales/Order/View/Giftmessage.php
-
message: "#^Negated boolean expression is always false\\.$#"
count: 2
- path: ../app/code/core/Mage/Adminhtml/Block/Sales/Order/View/Giftmessage.php
+ path: app/code/core/Mage/Adminhtml/Block/Sales/Order/View/Giftmessage.php
-
message: "#^Parameter \\#1 \\$entity of method Mage_Adminhtml_Block_Sales_Order_View_Giftmessage\\:\\:setEntity\\(\\) expects Mage_Sales_Model_Order, Mage_Eav_Model_Entity_Abstract given\\.$#"
count: 1
- path: ../app/code/core/Mage/Adminhtml/Block/Sales/Order/View/Giftmessage.php
+ path: app/code/core/Mage/Adminhtml/Block/Sales/Order/View/Giftmessage.php
-
message: "#^Right side of && is always true\\.$#"
count: 1
- path: ../app/code/core/Mage/Adminhtml/Block/Sales/Order/View/Giftmessage.php
+ path: app/code/core/Mage/Adminhtml/Block/Sales/Order/View/Giftmessage.php
-
message: "#^If condition is always true\\.$#"
count: 2
- path: ../app/code/core/Mage/Adminhtml/Block/Sales/Order/View/Info.php
+ path: app/code/core/Mage/Adminhtml/Block/Sales/Order/View/Info.php
-
message: "#^Negated boolean expression is always false\\.$#"
count: 1
- path: ../app/code/core/Mage/Adminhtml/Block/Sales/Order/View/Info.php
+ path: app/code/core/Mage/Adminhtml/Block/Sales/Order/View/Info.php
-
message: "#^Parameter \\#1 \\$entityType of method Mage_Eav_Model_Config\\:\\:getEntityAttributeCodes\\(\\) expects Mage_Eav_Model_Entity_Type, string given\\.$#"
count: 1
- path: ../app/code/core/Mage/Adminhtml/Block/Sales/Order/View/Info.php
+ path: app/code/core/Mage/Adminhtml/Block/Sales/Order/View/Info.php
-
message: "#^Unreachable statement \\- code above always terminates\\.$#"
count: 2
- path: ../app/code/core/Mage/Adminhtml/Block/Sales/Order/View/Info.php
+ path: app/code/core/Mage/Adminhtml/Block/Sales/Order/View/Info.php
-
message: "#^Negated boolean expression is always false\\.$#"
count: 1
- path: ../app/code/core/Mage/Adminhtml/Block/Sales/Order/View/Items.php
+ path: app/code/core/Mage/Adminhtml/Block/Sales/Order/View/Items.php
-
message: "#^Parameter \\#1 \\$item of method Mage_Checkout_Helper_Data\\:\\:getBasePriceInclTax\\(\\) expects Mage_Core_Model_Abstract, Varien_Object given\\.$#"
count: 1
- path: ../app/code/core/Mage/Adminhtml/Block/Sales/Order/View/Items/Renderer/Default.php
+ path: app/code/core/Mage/Adminhtml/Block/Sales/Order/View/Items/Renderer/Default.php
-
message: "#^Parameter \\#1 \\$item of method Mage_Checkout_Helper_Data\\:\\:getPriceInclTax\\(\\) expects Mage_Core_Model_Abstract, Varien_Object given\\.$#"
count: 1
- path: ../app/code/core/Mage/Adminhtml/Block/Sales/Order/View/Items/Renderer/Default.php
+ path: app/code/core/Mage/Adminhtml/Block/Sales/Order/View/Items/Renderer/Default.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
+ 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
+ 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
+ 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
+ path: app/code/core/Mage/Adminhtml/Block/Sales/Order/View/Tab/Shipments.php
-
message: "#^Parameter \\#1 \\$order of method Mage_Sales_Helper_Reorder\\:\\:canReorder\\(\\) expects Mage_Sales_Model_Order, Varien_Object given\\.$#"
count: 1
- path: ../app/code/core/Mage/Adminhtml/Block/Sales/Reorder/Renderer/Action.php
+ path: app/code/core/Mage/Adminhtml/Block/Sales/Reorder/Renderer/Action.php
-
message: "#^Ternary operator condition is always true\\.$#"
count: 1
- path: ../app/code/core/Mage/Adminhtml/Block/Sales/Transactions/Grid.php
+ path: app/code/core/Mage/Adminhtml/Block/Sales/Transactions/Grid.php
-
message: "#^Call to function is_null\\(\\) with int will always evaluate to false\\.$#"
count: 1
- path: ../app/code/core/Mage/Adminhtml/Block/Shipping/Carrier/Tablerate/Grid.php
+ path: app/code/core/Mage/Adminhtml/Block/Shipping/Carrier/Tablerate/Grid.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
+ path: app/code/core/Mage/Adminhtml/Block/Shipping/Carrier/Tablerate/Grid.php
-
message: "#^Parameter \\#1 \\$renderer of method Varien_Data_Form_Element_Abstract\\:\\:setRenderer\\(\\) expects Varien_Data_Form_Element_Renderer_Interface, Mage_Core_Block_Abstract\\|false given\\.$#"
count: 1
- path: ../app/code/core/Mage/Adminhtml/Block/Sitemap/Edit/Form.php
+ path: app/code/core/Mage/Adminhtml/Block/Sitemap/Edit/Form.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
+ 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
+ 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
+ path: app/code/core/Mage/Adminhtml/Block/System/Config/Edit.php
-
message: "#^Call to an undefined method Mage_Core_Model_Abstract\\:\\:toOptionArray\\(\\)\\.$#"
count: 1
- path: ../app/code/core/Mage/Adminhtml/Block/System/Config/Form.php
+ path: app/code/core/Mage/Adminhtml/Block/System/Config/Form.php
-
message: "#^Comparison operation \"\\=\\=\" between \\(Mage_Core_Model_Config_Element\\|null\\) and 1 results in an error\\.$#"
count: 2
- path: ../app/code/core/Mage/Adminhtml/Block/System/Config/Form.php
+ path: app/code/core/Mage/Adminhtml/Block/System/Config/Form.php
-
message: "#^Else branch is unreachable because previous condition is always true\\.$#"
count: 1
- path: ../app/code/core/Mage/Adminhtml/Block/System/Config/Form.php
+ path: app/code/core/Mage/Adminhtml/Block/System/Config/Form.php
-
message: "#^If condition is always true\\.$#"
count: 1
- path: ../app/code/core/Mage/Adminhtml/Block/System/Config/Form.php
+ path: app/code/core/Mage/Adminhtml/Block/System/Config/Form.php
-
message: "#^Negated boolean expression is always false\\.$#"
count: 1
- path: ../app/code/core/Mage/Adminhtml/Block/System/Config/Form.php
+ path: app/code/core/Mage/Adminhtml/Block/System/Config/Form.php
-
message: "#^Parameter \\#1 \\$element of method Mage_Adminhtml_Block_System_Config_Form\\:\\:_prepareFieldComment\\(\\) expects Mage_Core_Model_Config_Element, Varien_Simplexml_Element given\\.$#"
count: 1
- path: ../app/code/core/Mage/Adminhtml/Block/System/Config/Form.php
+ path: app/code/core/Mage/Adminhtml/Block/System/Config/Form.php
-
message: "#^Parameter \\#1 \\$element of method Mage_Adminhtml_Block_System_Config_Form\\:\\:_prepareFieldTooltip\\(\\) expects Mage_Core_Model_Config_Element, Varien_Simplexml_Element given\\.$#"
count: 1
- path: ../app/code/core/Mage/Adminhtml/Block/System/Config/Form.php
+ path: app/code/core/Mage/Adminhtml/Block/System/Config/Form.php
-
message: "#^Parameter \\#1 \\$element of method Mage_Adminhtml_Block_System_Config_Form\\:\\:_prepareGroupComment\\(\\) expects Mage_Core_Model_Config_Element, Varien_Simplexml_Element given\\.$#"
count: 1
- path: ../app/code/core/Mage/Adminhtml/Block/System/Config/Form.php
+ path: app/code/core/Mage/Adminhtml/Block/System/Config/Form.php
-
message: "#^Parameter \\#1 \\$element of method Mage_Adminhtml_Block_System_Config_Form\\:\\:getScopeLabel\\(\\) expects Mage_Core_Model_Config_Element, Varien_Simplexml_Element given\\.$#"
count: 1
- path: ../app/code/core/Mage/Adminhtml/Block/System/Config/Form.php
+ path: app/code/core/Mage/Adminhtml/Block/System/Config/Form.php
-
message: "#^Parameter \\#1 \\$field of method Mage_Adminhtml_Block_System_Config_Form\\:\\:canUseDefaultValue\\(\\) expects Varien_Simplexml_Element, int given\\.$#"
count: 1
- path: ../app/code/core/Mage/Adminhtml/Block/System/Config/Form.php
+ path: app/code/core/Mage/Adminhtml/Block/System/Config/Form.php
-
message: "#^Parameter \\#1 \\$field of method Mage_Adminhtml_Block_System_Config_Form\\:\\:canUseWebsiteValue\\(\\) expects Varien_Simplexml_Element, int given\\.$#"
count: 1
- path: ../app/code/core/Mage/Adminhtml/Block/System/Config/Form.php
+ path: app/code/core/Mage/Adminhtml/Block/System/Config/Form.php
-
message: "#^Parameter \\#1 \\$separator of function explode expects non\\-empty\\-string, string given\\.$#"
count: 1
- path: ../app/code/core/Mage/Adminhtml/Block/System/Config/Form.php
+ path: app/code/core/Mage/Adminhtml/Block/System/Config/Form.php
-
message: "#^If condition is always true\\.$#"
count: 1
- path: ../app/code/core/Mage/Adminhtml/Block/System/Config/Tabs.php
+ path: app/code/core/Mage/Adminhtml/Block/System/Config/Tabs.php
-
message: "#^Parameter \\#1 \\$emptyLabel of method Mage_Directory_Model_Resource_Country_Collection\\:\\:toOptionArray\\(\\) expects string, false given\\.$#"
count: 1
- path: ../app/code/core/Mage/Adminhtml/Block/System/Convert/Gui/Edit/Tab/Wizard.php
+ path: app/code/core/Mage/Adminhtml/Block/System/Convert/Gui/Edit/Tab/Wizard.php
-
message: "#^Variable \\$attributes might not be defined\\.$#"
count: 1
- path: ../app/code/core/Mage/Adminhtml/Block/System/Convert/Gui/Edit/Tab/Wizard.php
+ 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
+ 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
+ path: app/code/core/Mage/Adminhtml/Block/System/Convert/Profile/Run.php
-
message: "#^Parameter \\#1 \\$currency of method Mage_Directory_Model_Currency\\:\\:getCurrencyRates\\(\\) expects string, array given\\.$#"
count: 1
- path: ../app/code/core/Mage/Adminhtml/Block/System/Currency/Rate/Matrix.php
+ path: app/code/core/Mage/Adminhtml/Block/System/Currency/Rate/Matrix.php
-
message: "#^Parameter \\#2 \\$characters of function rtrim expects string, int given\\.$#"
count: 1
- path: ../app/code/core/Mage/Adminhtml/Block/System/Currency/Rate/Matrix.php
+ path: app/code/core/Mage/Adminhtml/Block/System/Currency/Rate/Matrix.php
-
message: "#^Parameter \\#1 \\$renderer of method Varien_Data_Form_Element_Abstract\\:\\:setRenderer\\(\\) expects Varien_Data_Form_Element_Renderer_Interface, Mage_Core_Block_Abstract\\|false given\\.$#"
count: 1
- path: ../app/code/core/Mage/Adminhtml/Block/System/Design/Edit/Tab/General.php
+ path: app/code/core/Mage/Adminhtml/Block/System/Design/Edit/Tab/General.php
-
message: "#^If condition is always true\\.$#"
count: 2
- path: ../app/code/core/Mage/Adminhtml/Block/System/Email/Template/Edit.php
+ path: app/code/core/Mage/Adminhtml/Block/System/Email/Template/Edit.php
-
message: "#^Method Mage_Adminhtml_Block_System_Email_Template_Edit\\:\\:getUsedCurrentlyForPaths\\(\\) should return string but returns array\\.$#"
count: 1
- path: ../app/code/core/Mage/Adminhtml/Block/System/Email/Template/Edit.php
+ path: app/code/core/Mage/Adminhtml/Block/System/Email/Template/Edit.php
-
message: "#^Method Mage_Adminhtml_Block_System_Email_Template_Edit\\:\\:getUsedDefaultForPaths\\(\\) should return string but returns array\\.$#"
count: 1
- path: ../app/code/core/Mage/Adminhtml/Block/System/Email/Template/Edit.php
+ path: app/code/core/Mage/Adminhtml/Block/System/Email/Template/Edit.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
+ path: app/code/core/Mage/Adminhtml/Block/System/Email/Template/Preview.php
-
message: "#^Variable \\$addLabel might not be defined\\.$#"
count: 1
- path: ../app/code/core/Mage/Adminhtml/Block/System/Store/Edit.php
+ path: app/code/core/Mage/Adminhtml/Block/System/Store/Edit.php
-
message: "#^Variable \\$deleteLabel might not be defined\\.$#"
count: 1
- path: ../app/code/core/Mage/Adminhtml/Block/System/Store/Edit.php
+ path: app/code/core/Mage/Adminhtml/Block/System/Store/Edit.php
-
message: "#^Variable \\$deleteUrl might not be defined\\.$#"
count: 1
- path: ../app/code/core/Mage/Adminhtml/Block/System/Store/Edit.php
+ path: app/code/core/Mage/Adminhtml/Block/System/Store/Edit.php
-
message: "#^Variable \\$editLabel might not be defined\\.$#"
count: 1
- path: ../app/code/core/Mage/Adminhtml/Block/System/Store/Edit.php
+ path: app/code/core/Mage/Adminhtml/Block/System/Store/Edit.php
-
message: "#^Variable \\$saveLabel might not be defined\\.$#"
count: 1
- path: ../app/code/core/Mage/Adminhtml/Block/System/Store/Edit.php
+ path: app/code/core/Mage/Adminhtml/Block/System/Store/Edit.php
-
message: "#^Variable \\$groupModel might not be defined\\.$#"
count: 18
- path: ../app/code/core/Mage/Adminhtml/Block/System/Store/Edit/Form.php
+ path: app/code/core/Mage/Adminhtml/Block/System/Store/Edit/Form.php
-
message: "#^Variable \\$showGroupFieldset might not be defined\\.$#"
count: 1
- path: ../app/code/core/Mage/Adminhtml/Block/System/Store/Edit/Form.php
+ path: app/code/core/Mage/Adminhtml/Block/System/Store/Edit/Form.php
-
message: "#^Variable \\$showStoreFieldset might not be defined\\.$#"
count: 1
- path: ../app/code/core/Mage/Adminhtml/Block/System/Store/Edit/Form.php
+ path: app/code/core/Mage/Adminhtml/Block/System/Store/Edit/Form.php
-
message: "#^Variable \\$showWebsiteFieldset might not be defined\\.$#"
count: 1
- path: ../app/code/core/Mage/Adminhtml/Block/System/Store/Edit/Form.php
+ path: app/code/core/Mage/Adminhtml/Block/System/Store/Edit/Form.php
-
message: "#^Variable \\$storeModel might not be defined\\.$#"
count: 21
- path: ../app/code/core/Mage/Adminhtml/Block/System/Store/Edit/Form.php
+ path: app/code/core/Mage/Adminhtml/Block/System/Store/Edit/Form.php
-
message: "#^Variable \\$websiteModel might not be defined\\.$#"
count: 15
- path: ../app/code/core/Mage/Adminhtml/Block/System/Store/Edit/Form.php
+ path: app/code/core/Mage/Adminhtml/Block/System/Store/Edit/Form.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
+ path: app/code/core/Mage/Adminhtml/Block/Tag/Grid/All.php
-
message: "#^Left side of && is always true\\.$#"
count: 1
- path: ../app/code/core/Mage/Adminhtml/Block/Tag/Grid/All.php
+ path: app/code/core/Mage/Adminhtml/Block/Tag/Grid/All.php
-
message: "#^Left side of && is always true\\.$#"
count: 1
- path: ../app/code/core/Mage/Adminhtml/Block/Tag/Grid/Customers.php
+ path: app/code/core/Mage/Adminhtml/Block/Tag/Grid/Customers.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
+ path: app/code/core/Mage/Adminhtml/Block/Tax/Rate/Grid/Renderer/Data.php
-
message: "#^Parameter \\#1 \\$num of function number_format expects float, string\\|null given\\.$#"
count: 1
- path: ../app/code/core/Mage/Adminhtml/Block/Tax/Rate/Grid/Renderer/Data.php
+ path: app/code/core/Mage/Adminhtml/Block/Tax/Rate/Grid/Renderer/Data.php
-
message: "#^Parameter \\#1 \\$classTypeId of method Mage_Tax_Model_Resource_Class_Collection\\:\\:setClassTypeFilter\\(\\) expects int, string given\\.$#"
count: 2
- path: ../app/code/core/Mage/Adminhtml/Block/Tax/Rule/Edit/Form.php
+ path: app/code/core/Mage/Adminhtml/Block/Tax/Rule/Edit/Form.php
-
message: "#^If condition is always true\\.$#"
count: 2
- path: ../app/code/core/Mage/Adminhtml/Block/Tax/Rule/Grid.php
+ path: app/code/core/Mage/Adminhtml/Block/Tax/Rule/Grid.php
-
message: "#^Parameter \\#1 \\$classTypeId of method Mage_Tax_Model_Resource_Class_Collection\\:\\:setClassTypeFilter\\(\\) expects int, string given\\.$#"
count: 2
- path: ../app/code/core/Mage/Adminhtml/Block/Tax/Rule/Grid.php
+ path: app/code/core/Mage/Adminhtml/Block/Tax/Rule/Grid.php
-
message: "#^Variable \\$category in empty\\(\\) always exists and is not falsy\\.$#"
count: 1
- path: ../app/code/core/Mage/Adminhtml/Block/Urlrewrite/Category/Tree.php
+ path: app/code/core/Mage/Adminhtml/Block/Urlrewrite/Category/Tree.php
-
message: "#^Parameter \\#1 \\$renderer of method Varien_Data_Form_Element_Abstract\\:\\:setRenderer\\(\\) expects Varien_Data_Form_Element_Renderer_Interface, Mage_Core_Block_Abstract\\|false given\\.$#"
count: 1
- path: ../app/code/core/Mage/Adminhtml/Block/Urlrewrite/Edit/Form.php
+ path: app/code/core/Mage/Adminhtml/Block/Urlrewrite/Edit/Form.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
+ 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
+ path: app/code/core/Mage/Adminhtml/Block/Widget/Form.php
-
message: "#^Parameter \\#1 \\$renderer of static method Varien_Data_Form\\:\\:setElementRenderer\\(\\) expects Varien_Data_Form_Element_Renderer_Interface, Mage_Core_Block_Abstract\\|false given\\.$#"
count: 1
- path: ../app/code/core/Mage/Adminhtml/Block/Widget/Form.php
+ path: app/code/core/Mage/Adminhtml/Block/Widget/Form.php
-
message: "#^Parameter \\#1 \\$renderer of static method Varien_Data_Form\\:\\:setFieldsetElementRenderer\\(\\) expects Varien_Data_Form_Element_Renderer_Interface, Mage_Core_Block_Abstract\\|false given\\.$#"
count: 1
- path: ../app/code/core/Mage/Adminhtml/Block/Widget/Form.php
+ path: app/code/core/Mage/Adminhtml/Block/Widget/Form.php
-
message: "#^Parameter \\#1 \\$renderer of static method Varien_Data_Form\\:\\:setFieldsetRenderer\\(\\) expects Varien_Data_Form_Element_Renderer_Interface, Mage_Core_Block_Abstract\\|false given\\.$#"
count: 1
- path: ../app/code/core/Mage/Adminhtml/Block/Widget/Form.php
+ path: app/code/core/Mage/Adminhtml/Block/Widget/Form.php
-
message: "#^Unreachable statement \\- code above always terminates\\.$#"
count: 1
- path: ../app/code/core/Mage/Adminhtml/Block/Widget/Form.php
+ path: app/code/core/Mage/Adminhtml/Block/Widget/Form.php
-
message: "#^Call to an undefined method Varien_Data_Collection\\:\\:addFieldToFilter\\(\\)\\.$#"
count: 2
- path: ../app/code/core/Mage/Adminhtml/Block/Widget/Grid.php
+ path: app/code/core/Mage/Adminhtml/Block/Widget/Grid.php
-
message: "#^Call to an undefined method Varien_Data_Collection\\:\\:getSelect\\(\\)\\.$#"
count: 3
- path: ../app/code/core/Mage/Adminhtml/Block/Widget/Grid.php
+ path: app/code/core/Mage/Adminhtml/Block/Widget/Grid.php
-
message: "#^Else branch is unreachable because ternary operator condition is always true\\.$#"
count: 1
- path: ../app/code/core/Mage/Adminhtml/Block/Widget/Grid.php
+ path: app/code/core/Mage/Adminhtml/Block/Widget/Grid.php
-
message: "#^If condition is always true\\.$#"
count: 3
- path: ../app/code/core/Mage/Adminhtml/Block/Widget/Grid.php
+ path: app/code/core/Mage/Adminhtml/Block/Widget/Grid.php
-
message: "#^Method Mage_Adminhtml_Block_Widget_Grid\\:\\:getSubTotalItem\\(\\) should return Varien_Object but returns string\\.$#"
count: 1
- path: ../app/code/core/Mage/Adminhtml/Block/Widget/Grid.php
+ path: app/code/core/Mage/Adminhtml/Block/Widget/Grid.php
-
message: "#^Property Mage_Adminhtml_Block_Widget_Grid\\:\\:\\$defaultColumnSettings \\(array\\\\>\\) does not accept default value of type array\\\\>\\.$#"
count: 1
- path: ../app/code/core/Mage/Adminhtml/Block/Widget/Grid.php
+ path: app/code/core/Mage/Adminhtml/Block/Widget/Grid.php
-
message: "#^Parameter \\#1 \\$emptyLabel of method Mage_Directory_Model_Resource_Country_Collection\\:\\:toOptionArray\\(\\) expects string, false given\\.$#"
count: 1
- path: ../app/code/core/Mage/Adminhtml/Block/Widget/Grid/Column/Filter/Country.php
+ path: app/code/core/Mage/Adminhtml/Block/Widget/Grid/Column/Filter/Country.php
-
message: "#^Method Mage_Adminhtml_Block_Widget_Grid_Column_Filter_Date\\:\\:_convertDate\\(\\) should return Zend_Date but returns null\\.$#"
count: 1
- path: ../app/code/core/Mage/Adminhtml/Block/Widget/Grid/Column/Filter/Date.php
+ path: app/code/core/Mage/Adminhtml/Block/Widget/Grid/Column/Filter/Date.php
-
message: "#^Method Mage_Adminhtml_Block_Widget_Grid_Column_Filter_Datetime\\:\\:_convertDate\\(\\) should return Zend_Date but returns null\\.$#"
count: 1
- path: ../app/code/core/Mage/Adminhtml/Block/Widget/Grid/Column/Filter/Datetime.php
+ path: app/code/core/Mage/Adminhtml/Block/Widget/Grid/Column/Filter/Datetime.php
-
message: "#^Call to function is_null\\(\\) with string will always evaluate to false\\.$#"
count: 1
- path: ../app/code/core/Mage/Adminhtml/Block/Widget/Grid/Column/Filter/Select.php
+ path: app/code/core/Mage/Adminhtml/Block/Widget/Grid/Column/Filter/Select.php
-
message: "#^Parameter \\#2 \\$checked of method Mage_Adminhtml_Block_Widget_Grid_Column_Renderer_Checkbox\\:\\:_getCheckboxHtml\\(\\) expects bool, string given\\.$#"
count: 1
- path: ../app/code/core/Mage/Adminhtml/Block/Widget/Grid/Column/Renderer/Checkbox.php
+ path: app/code/core/Mage/Adminhtml/Block/Widget/Grid/Column/Renderer/Checkbox.php
-
message: "#^Parameter \\#1 \\$value of method Zend_Currency\\:\\:toCurrency\\(\\) expects float\\|int\\|null, string given\\.$#"
count: 1
- path: ../app/code/core/Mage/Adminhtml/Block/Widget/Grid/Column/Renderer/Currency.php
+ path: app/code/core/Mage/Adminhtml/Block/Widget/Grid/Column/Renderer/Currency.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
+ path: app/code/core/Mage/Adminhtml/Block/Widget/Grid/Column/Renderer/Number.php
-
message: "#^Parameter \\#1 \\$value of method Zend_Currency\\:\\:toCurrency\\(\\) expects float\\|int\\|null, string given\\.$#"
count: 1
- path: ../app/code/core/Mage/Adminhtml/Block/Widget/Grid/Column/Renderer/Price.php
+ path: app/code/core/Mage/Adminhtml/Block/Widget/Grid/Column/Renderer/Price.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
+ 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
+ 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
+ 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
+ path: app/code/core/Mage/Adminhtml/Block/Widget/Tabs.php
-
message: "#^Parameter \\#1 \\$ids of method Mage_Adminhtml_Controller_Action\\:\\:loadLayout\\(\\) expects bool\\|string\\|null, array\\ given\\.$#"
count: 2
- path: ../app/code/core/Mage/Adminhtml/Controller/Action.php
+ path: app/code/core/Mage/Adminhtml/Controller/Action.php
-
message: "#^Parameter \\#3 \\$value of method Mage_Core_Controller_Varien_Action\\:\\:setFlag\\(\\) expects int\\|string, true given\\.$#"
count: 4
- path: ../app/code/core/Mage/Adminhtml/Controller/Action.php
+ path: app/code/core/Mage/Adminhtml/Controller/Action.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
+ path: app/code/core/Mage/Adminhtml/Controller/Report/Abstract.php
-
message: "#^If condition is always true\\.$#"
count: 2
- path: ../app/code/core/Mage/Adminhtml/Controller/Sales/Creditmemo.php
+ path: app/code/core/Mage/Adminhtml/Controller/Sales/Creditmemo.php
-
message: "#^Parameter \\#1 \\$creditmemos of method Mage_Sales_Model_Order_Pdf_Creditmemo\\:\\:getPdf\\(\\) expects array\\, Mage_Sales_Model_Resource_Order_Creditmemo_Collection given\\.$#"
count: 1
- path: ../app/code/core/Mage/Adminhtml/Controller/Sales/Creditmemo.php
+ path: app/code/core/Mage/Adminhtml/Controller/Sales/Creditmemo.php
-
message: "#^If condition is always true\\.$#"
count: 2
- path: ../app/code/core/Mage/Adminhtml/Controller/Sales/Invoice.php
+ path: app/code/core/Mage/Adminhtml/Controller/Sales/Invoice.php
-
message: "#^Parameter \\#1 \\$invoices of method Mage_Sales_Model_Order_Pdf_Invoice\\:\\:getPdf\\(\\) expects array\\, Mage_Sales_Model_Resource_Order_Invoice_Collection given\\.$#"
count: 1
- path: ../app/code/core/Mage/Adminhtml/Controller/Sales/Invoice.php
+ path: app/code/core/Mage/Adminhtml/Controller/Sales/Invoice.php
-
message: "#^If condition is always true\\.$#"
count: 1
- path: ../app/code/core/Mage/Adminhtml/Controller/Sales/Shipment.php
+ path: app/code/core/Mage/Adminhtml/Controller/Sales/Shipment.php
-
message: "#^Parameter \\#1 \\$shipments of method Mage_Sales_Model_Order_Pdf_Shipment\\:\\:getPdf\\(\\) expects array\\, Mage_Sales_Model_Resource_Order_Shipment_Collection given\\.$#"
count: 1
- path: ../app/code/core/Mage/Adminhtml/Controller/Sales/Shipment.php
+ path: app/code/core/Mage/Adminhtml/Controller/Sales/Shipment.php
-
message: "#^Call to function is_array\\(\\) with string\\|null will always evaluate to false\\.$#"
count: 1
- path: ../app/code/core/Mage/Adminhtml/Helper/Catalog/Product/Edit/Action/Attribute.php
+ path: app/code/core/Mage/Adminhtml/Helper/Catalog/Product/Edit/Action/Attribute.php
-
message: "#^Call to function is_null\\(\\) with Mage_Catalog_Model_Resource_Product_Collection will always evaluate to false\\.$#"
count: 1
- path: ../app/code/core/Mage/Adminhtml/Helper/Catalog/Product/Edit/Action/Attribute.php
+ path: app/code/core/Mage/Adminhtml/Helper/Catalog/Product/Edit/Action/Attribute.php
-
message: "#^Call to function is_null\\(\\) with Mage_Eav_Model_Resource_Entity_Attribute_Collection will always evaluate to false\\.$#"
count: 1
- path: ../app/code/core/Mage/Adminhtml/Helper/Catalog/Product/Edit/Action/Attribute.php
+ path: app/code/core/Mage/Adminhtml/Helper/Catalog/Product/Edit/Action/Attribute.php
-
message: "#^Call to function is_null\\(\\) with array\\|Mage_Core_Model_Resource_Db_Collection_Abstract\\|Mage_Eav_Model_Entity_Collection_Abstract will always evaluate to false\\.$#"
count: 1
- path: ../app/code/core/Mage/Adminhtml/Helper/Dashboard/Abstract.php
+ path: app/code/core/Mage/Adminhtml/Helper/Dashboard/Abstract.php
-
message: "#^Method Mage_Adminhtml_Model_Config\\:\\:getSection\\(\\) should return Varien_Simplexml_Element but return statement is missing\\.$#"
count: 1
- path: ../app/code/core/Mage/Adminhtml/Model/Config.php
+ path: app/code/core/Mage/Adminhtml/Model/Config.php
-
message: "#^Parameter \\#1 \\$cache of method Varien_Simplexml_Config\\:\\:setCache\\(\\) expects Varien_Simplexml_Config_Cache_Abstract, Zend_Cache_Core given\\.$#"
count: 1
- path: ../app/code/core/Mage/Adminhtml/Model/Config.php
+ path: app/code/core/Mage/Adminhtml/Model/Config.php
-
message: "#^Parameter \\#1 \\$sectionNode of method Mage_Adminhtml_Model_Config\\:\\:getAttributeModule\\(\\) expects Varien_Simplexml_Element\\|null, array\\\\|false\\|null given\\.$#"
count: 1
- path: ../app/code/core/Mage/Adminhtml/Model/Config.php
+ path: app/code/core/Mage/Adminhtml/Model/Config.php
-
message: "#^Parameter \\#2 \\$groupNode of method Mage_Adminhtml_Model_Config\\:\\:getAttributeModule\\(\\) expects Varien_Simplexml_Element\\|null, array\\\\|false\\|null given\\.$#"
count: 1
- path: ../app/code/core/Mage/Adminhtml/Model/Config.php
+ path: app/code/core/Mage/Adminhtml/Model/Config.php
-
message: "#^Parameter \\#3 \\$fieldNode of method Mage_Adminhtml_Model_Config\\:\\:getAttributeModule\\(\\) expects Varien_Simplexml_Element\\|null, array\\\\|false\\|null given\\.$#"
count: 1
- path: ../app/code/core/Mage/Adminhtml/Model/Config.php
+ path: app/code/core/Mage/Adminhtml/Model/Config.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
+ path: app/code/core/Mage/Adminhtml/Model/Config.php
-
message: "#^Property Varien_Simplexml_Config\\:\\:\\$_cacheChecksum \\(unknown_type\\) does not accept null\\.$#"
count: 1
- path: ../app/code/core/Mage/Adminhtml/Model/Config.php
+ 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
+ path: app/code/core/Mage/Adminhtml/Model/Config/Data.php
-
message: "#^Call to function is_null\\(\\) with Mage_Core_Model_Config_Element will always evaluate to false\\.$#"
count: 1
- path: ../app/code/core/Mage/Adminhtml/Model/Config/Data.php
+ path: app/code/core/Mage/Adminhtml/Model/Config/Data.php
-
message: "#^Call to function is_null\\(\\) with array will always evaluate to false\\.$#"
count: 1
- path: ../app/code/core/Mage/Adminhtml/Model/Config/Data.php
+ path: app/code/core/Mage/Adminhtml/Model/Config/Data.php
-
message: "#^Parameter \\#1 \\$field of method Mage_Adminhtml_Model_Config_Data\\:\\:_isValidField\\(\\) expects Mage_Core_Model_Config_Element, Varien_Simplexml_Element\\|false given\\.$#"
count: 1
- path: ../app/code/core/Mage/Adminhtml/Model/Config/Data.php
+ path: app/code/core/Mage/Adminhtml/Model/Config/Data.php
-
message: "#^Property Mage_Adminhtml_Model_Config_Data\\:\\:\\$_configRoot \\(Mage_Core_Model_Config_Element\\) does not accept Varien_Simplexml_Element\\|false\\.$#"
count: 1
- path: ../app/code/core/Mage/Adminhtml/Model/Config/Data.php
+ path: app/code/core/Mage/Adminhtml/Model/Config/Data.php
-
message: "#^Unreachable statement \\- code above always terminates\\.$#"
count: 3
- path: ../app/code/core/Mage/Adminhtml/Model/Config/Data.php
+ 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
+ path: app/code/core/Mage/Adminhtml/Model/Giftmessage/Save.php
-
message: "#^Negated boolean expression is always false\\.$#"
count: 3
- path: ../app/code/core/Mage/Adminhtml/Model/Giftmessage/Save.php
+ path: app/code/core/Mage/Adminhtml/Model/Giftmessage/Save.php
-
message: "#^Parameter \\#1 \\$object of method Mage_Eav_Model_Entity_Abstract\\:\\:load\\(\\) expects Mage_Core_Model_Abstract, int given\\.$#"
count: 1
- path: ../app/code/core/Mage/Adminhtml/Model/Giftmessage/Save.php
+ path: app/code/core/Mage/Adminhtml/Model/Giftmessage/Save.php
-
message: "#^If condition is always false\\.$#"
count: 1
- path: ../app/code/core/Mage/Adminhtml/Model/Sales/Order.php
+ path: app/code/core/Mage/Adminhtml/Model/Sales/Order.php
-
message: "#^Negated boolean expression is always false\\.$#"
count: 1
- path: ../app/code/core/Mage/Adminhtml/Model/Sales/Order.php
+ path: app/code/core/Mage/Adminhtml/Model/Sales/Order.php
-
message: "#^Call to function is_null\\(\\) with Mage_Catalog_Model_Product_Compare_List will always evaluate to false\\.$#"
count: 1
- path: ../app/code/core/Mage/Adminhtml/Model/Sales/Order/Create.php
+ path: app/code/core/Mage/Adminhtml/Model/Sales/Order/Create.php
-
message: "#^Call to function is_null\\(\\) with Mage_Customer_Model_Form will always evaluate to false\\.$#"
count: 2
- path: ../app/code/core/Mage/Adminhtml/Model/Sales/Order/Create.php
+ path: app/code/core/Mage/Adminhtml/Model/Sales/Order/Create.php
-
message: "#^Call to function is_null\\(\\) with Mage_Sales_Model_Quote will always evaluate to false\\.$#"
count: 1
- path: ../app/code/core/Mage/Adminhtml/Model/Sales/Order/Create.php
+ path: app/code/core/Mage/Adminhtml/Model/Sales/Order/Create.php
-
message: "#^Call to function is_null\\(\\) with Mage_Wishlist_Model_Wishlist will always evaluate to false\\.$#"
count: 1
- path: ../app/code/core/Mage/Adminhtml/Model/Sales/Order/Create.php
+ path: app/code/core/Mage/Adminhtml/Model/Sales/Order/Create.php
-
message: "#^If condition is always true\\.$#"
count: 6
- path: ../app/code/core/Mage/Adminhtml/Model/Sales/Order/Create.php
+ path: app/code/core/Mage/Adminhtml/Model/Sales/Order/Create.php
-
message: "#^Left side of && is always true\\.$#"
count: 2
- path: ../app/code/core/Mage/Adminhtml/Model/Sales/Order/Create.php
+ path: app/code/core/Mage/Adminhtml/Model/Sales/Order/Create.php
-
message: "#^Method Mage_Adminhtml_Model_Sales_Order_Create\\:\\:initFromOrderItem\\(\\) should return Mage_Sales_Model_Quote_Item\\|string but returns \\$this\\(Mage_Adminhtml_Model_Sales_Order_Create\\)\\.$#"
count: 2
- path: ../app/code/core/Mage/Adminhtml/Model/Sales/Order/Create.php
+ path: app/code/core/Mage/Adminhtml/Model/Sales/Order/Create.php
-
message: "#^Negated boolean expression is always false\\.$#"
count: 2
- path: ../app/code/core/Mage/Adminhtml/Model/Sales/Order/Create.php
+ path: app/code/core/Mage/Adminhtml/Model/Sales/Order/Create.php
-
message: "#^Parameter \\#1 \\$optionId of method Mage_Catalog_Model_Product\\:\\:getOptionById\\(\\) expects int, string given\\.$#"
count: 1
- path: ../app/code/core/Mage/Adminhtml/Model/Sales/Order/Create.php
+ path: app/code/core/Mage/Adminhtml/Model/Sales/Order/Create.php
-
message: "#^Parameter \\#2 \\$string of function explode expects string, array given\\.$#"
count: 1
- path: ../app/code/core/Mage/Adminhtml/Model/Sales/Order/Create.php
+ path: app/code/core/Mage/Adminhtml/Model/Sales/Order/Create.php
-
message: "#^Parameter \\#3 \\$storeId of method Mage_Customer_Model_Customer\\:\\:sendNewAccountEmail\\(\\) expects string, int given\\.$#"
count: 1
- path: ../app/code/core/Mage/Adminhtml/Model/Sales/Order/Create.php
+ path: app/code/core/Mage/Adminhtml/Model/Sales/Order/Create.php
-
message: "#^Property Mage_Adminhtml_Model_Sales_Order_Create\\:\\:\\$_customerAddressForm \\(Mage_Customer_Model_Form\\) does not accept bool\\|Mage_Eav_Model_Form\\.$#"
count: 1
- path: ../app/code/core/Mage/Adminhtml/Model/Sales/Order/Create.php
+ path: app/code/core/Mage/Adminhtml/Model/Sales/Order/Create.php
-
message: "#^Property Mage_Adminhtml_Model_Sales_Order_Create\\:\\:\\$_customerForm \\(Mage_Customer_Model_Form\\) does not accept bool\\|Mage_Eav_Model_Form\\.$#"
count: 1
- path: ../app/code/core/Mage/Adminhtml/Model/Sales/Order/Create.php
+ path: app/code/core/Mage/Adminhtml/Model/Sales/Order/Create.php
-
message: "#^Property Mage_Adminhtml_Model_Sales_Order_Create\\:\\:\\$_wishlist \\(Mage_Wishlist_Model_Wishlist\\) does not accept false\\.$#"
count: 1
- path: ../app/code/core/Mage/Adminhtml/Model/Sales/Order/Create.php
+ path: app/code/core/Mage/Adminhtml/Model/Sales/Order/Create.php
-
message: "#^Right side of && is always true\\.$#"
count: 2
- path: ../app/code/core/Mage/Adminhtml/Model/Sales/Order/Create.php
+ path: app/code/core/Mage/Adminhtml/Model/Sales/Order/Create.php
-
message: "#^Unreachable statement \\- code above always terminates\\.$#"
count: 2
- path: ../app/code/core/Mage/Adminhtml/Model/Sales/Order/Create.php
+ path: app/code/core/Mage/Adminhtml/Model/Sales/Order/Create.php
-
message: "#^Variable \\$billingAddress might not be defined\\.$#"
count: 2
- path: ../app/code/core/Mage/Adminhtml/Model/Sales/Order/Create.php
+ 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
+ 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
+ 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
+ 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
+ path: app/code/core/Mage/Adminhtml/Model/Sales/Order/Random.php
-
message: "#^Call to function is_null\\(\\) with Mage_Core_Model_Store will always evaluate to false\\.$#"
count: 1
- path: ../app/code/core/Mage/Adminhtml/Model/Session/Quote.php
+ path: app/code/core/Mage/Adminhtml/Model/Session/Quote.php
-
message: "#^Call to function is_null\\(\\) with Mage_Customer_Model_Customer will always evaluate to false\\.$#"
count: 1
- path: ../app/code/core/Mage/Adminhtml/Model/Session/Quote.php
+ path: app/code/core/Mage/Adminhtml/Model/Session/Quote.php
-
message: "#^Call to function is_null\\(\\) with Mage_Sales_Model_Order will always evaluate to false\\.$#"
count: 1
- path: ../app/code/core/Mage/Adminhtml/Model/Session/Quote.php
+ path: app/code/core/Mage/Adminhtml/Model/Session/Quote.php
-
message: "#^Call to function is_null\\(\\) with Mage_Sales_Model_Quote will always evaluate to false\\.$#"
count: 1
- path: ../app/code/core/Mage/Adminhtml/Model/Session/Quote.php
+ path: app/code/core/Mage/Adminhtml/Model/Session/Quote.php
-
message: "#^Cannot access offset 'file' on bool\\|void\\.$#"
count: 1
- path: ../app/code/core/Mage/Adminhtml/Model/System/Config/Backend/File.php
+ path: app/code/core/Mage/Adminhtml/Model/System/Config/Backend/File.php
-
message: "#^Unreachable statement \\- code above always terminates\\.$#"
count: 1
- path: ../app/code/core/Mage/Adminhtml/Model/System/Config/Backend/File.php
+ path: app/code/core/Mage/Adminhtml/Model/System/Config/Backend/File.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
+ path: app/code/core/Mage/Adminhtml/Model/System/Config/Source/Admin/Page.php
-
message: "#^Parameter \\#1 \\$emptyLabel of method Mage_Directory_Model_Resource_Country_Collection\\:\\:toOptionArray\\(\\) expects string, false given\\.$#"
count: 1
- path: ../app/code/core/Mage/Adminhtml/Model/System/Config/Source/Allregion.php
+ path: app/code/core/Mage/Adminhtml/Model/System/Config/Source/Allregion.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
+ path: app/code/core/Mage/Adminhtml/Model/System/Config/Source/Country.php
-
message: "#^Method Mage_Adminhtml_Model_System_Store\\:\\:__construct\\(\\) with return type void returns \\$this\\(Mage_Adminhtml_Model_System_Store\\) but should not return anything\\.$#"
count: 1
- path: ../app/code/core/Mage/Adminhtml/Model/System/Store.php
+ path: app/code/core/Mage/Adminhtml/Model/System/Store.php
-
message: "#^Variable \\$values might not be defined\\.$#"
count: 1
- path: ../app/code/core/Mage/Adminhtml/Model/System/Store.php
+ path: app/code/core/Mage/Adminhtml/Model/System/Store.php
-
message: "#^Unreachable statement \\- code above always terminates\\.$#"
count: 1
- path: ../app/code/core/Mage/Adminhtml/controllers/Api/RoleController.php
+ path: app/code/core/Mage/Adminhtml/controllers/Api/RoleController.php
-
message: "#^Argument of an invalid type string supplied for foreach, only iterables are supported\\.$#"
count: 1
- path: ../app/code/core/Mage/Adminhtml/controllers/Catalog/Product/Action/AttributeController.php
+ path: app/code/core/Mage/Adminhtml/controllers/Catalog/Product/Action/AttributeController.php
-
message: "#^Call to function is_array\\(\\) with string\\|null will always evaluate to false\\.$#"
count: 1
- path: ../app/code/core/Mage/Adminhtml/controllers/Catalog/Product/Action/AttributeController.php
+ path: app/code/core/Mage/Adminhtml/controllers/Catalog/Product/Action/AttributeController.php
-
message: "#^If condition is always false\\.$#"
count: 1
- path: ../app/code/core/Mage/Adminhtml/controllers/Catalog/Product/Action/AttributeController.php
+ path: app/code/core/Mage/Adminhtml/controllers/Catalog/Product/Action/AttributeController.php
-
message: "#^Parameter \\#1 \\$productIds of method Mage_Catalog_Model_Product_Action\\:\\:updateAttributes\\(\\) expects array, string\\|null given\\.$#"
count: 1
- path: ../app/code/core/Mage/Adminhtml/controllers/Catalog/Product/Action/AttributeController.php
+ path: app/code/core/Mage/Adminhtml/controllers/Catalog/Product/Action/AttributeController.php
-
message: "#^Parameter \\#1 \\$productIds of method Mage_Catalog_Model_Product_Action\\:\\:updateWebsites\\(\\) expects array, string\\|null given\\.$#"
count: 2
- path: ../app/code/core/Mage/Adminhtml/controllers/Catalog/Product/Action/AttributeController.php
+ path: app/code/core/Mage/Adminhtml/controllers/Catalog/Product/Action/AttributeController.php
-
message: "#^Parameter \\#1 \\$value of function count expects array\\|Countable, string\\|null given\\.$#"
count: 1
- path: ../app/code/core/Mage/Adminhtml/controllers/Catalog/Product/Action/AttributeController.php
+ path: app/code/core/Mage/Adminhtml/controllers/Catalog/Product/Action/AttributeController.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
+ path: app/code/core/Mage/Adminhtml/controllers/Catalog/Product/Action/AttributeController.php
-
message: "#^Parameter \\#1 \\$pattern of class Zend_Validate_Regex constructor expects string\\|Zend_Config, array\\ given\\.$#"
count: 1
- path: ../app/code/core/Mage/Adminhtml/controllers/Catalog/Product/AttributeController.php
+ path: app/code/core/Mage/Adminhtml/controllers/Catalog/Product/AttributeController.php
-
message: "#^Cannot access offset 'tmp_name' on bool\\|void\\.$#"
count: 2
- path: ../app/code/core/Mage/Adminhtml/controllers/Catalog/Product/GalleryController.php
+ path: app/code/core/Mage/Adminhtml/controllers/Catalog/Product/GalleryController.php
-
message: "#^Offset 'file' does not exist on array\\{path\\: \\(array\\\\|string\\), url\\: string\\}\\.$#"
count: 1
- path: ../app/code/core/Mage/Adminhtml/controllers/Catalog/Product/GalleryController.php
+ path: app/code/core/Mage/Adminhtml/controllers/Catalog/Product/GalleryController.php
-
message: "#^Offset 'file' does not exist on array\\{path\\: \\(array\\\\|string\\)\\}\\.$#"
count: 1
- path: ../app/code/core/Mage/Adminhtml/controllers/Catalog/Product/GalleryController.php
+ path: app/code/core/Mage/Adminhtml/controllers/Catalog/Product/GalleryController.php
-
message: "#^Ternary operator condition is always true\\.$#"
count: 1
- path: ../app/code/core/Mage/Adminhtml/controllers/Catalog/Product/SetController.php
+ path: app/code/core/Mage/Adminhtml/controllers/Catalog/Product/SetController.php
-
message: "#^Parameter \\#1 \\$ids of method Mage_Adminhtml_Controller_Action\\:\\:loadLayout\\(\\) expects bool\\|string\\|null, array\\ given\\.$#"
count: 2
- path: ../app/code/core/Mage/Adminhtml/controllers/Catalog/ProductController.php
+ path: app/code/core/Mage/Adminhtml/controllers/Catalog/ProductController.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
+ path: app/code/core/Mage/Adminhtml/controllers/Catalog/SearchController.php
-
message: "#^Parameter \\#1 \\$item of method Mage_Sales_Model_Resource_Quote_Item_Option_Collection\\:\\:addItemFilter\\(\\) expects array\\|int, Mage_Sales_Model_Quote_Item given\\.$#"
count: 1
- path: ../app/code/core/Mage/Adminhtml/controllers/Customer/Cart/Product/Composite/CartController.php
+ path: app/code/core/Mage/Adminhtml/controllers/Customer/Cart/Product/Composite/CartController.php
-
message: "#^Parameter \\#1 \\$content of method Zend_Controller_Response_Abstract\\:\\:setBody\\(\\) expects string, int given\\.$#"
count: 1
- path: ../app/code/core/Mage/Adminhtml/controllers/Customer/System/Config/ValidatevatController.php
+ path: app/code/core/Mage/Adminhtml/controllers/Customer/System/Config/ValidatevatController.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
+ path: app/code/core/Mage/Adminhtml/controllers/Customer/Wishlist/Product/Composite/WishlistController.php
-
message: "#^Negated boolean expression is always false\\.$#"
count: 3
- path: ../app/code/core/Mage/Adminhtml/controllers/CustomerController.php
+ path: app/code/core/Mage/Adminhtml/controllers/CustomerController.php
-
message: "#^Parameter \\#2 \\$timestamp of function date expects int\\|null, array\\|bool given\\.$#"
count: 1
- path: ../app/code/core/Mage/Adminhtml/controllers/CustomerController.php
+ path: app/code/core/Mage/Adminhtml/controllers/CustomerController.php
-
message: "#^Parameter \\#2 \\$value of method Zend_Controller_Response_Abstract\\:\\:setHeader\\(\\) expects string, array\\|bool given\\.$#"
count: 1
- path: ../app/code/core/Mage/Adminhtml/controllers/CustomerController.php
+ path: app/code/core/Mage/Adminhtml/controllers/CustomerController.php
-
message: "#^Call to an undefined method Varien_Simplexml_Element\\:\\:getClassName\\(\\)\\.$#"
count: 1
- path: ../app/code/core/Mage/Adminhtml/controllers/IndexController.php
+ path: app/code/core/Mage/Adminhtml/controllers/IndexController.php
-
message: "#^Parameter \\#1 \\$callback of method Varien_Data_Collection\\:\\:walk\\(\\) expects callable\\(\\)\\: mixed, 'delete' given\\.$#"
count: 1
- path: ../app/code/core/Mage/Adminhtml/controllers/Newsletter/ProblemController.php
+ path: app/code/core/Mage/Adminhtml/controllers/Newsletter/ProblemController.php
-
message: "#^Parameter \\#1 \\$callback of method Varien_Data_Collection\\:\\:walk\\(\\) expects callable\\(\\)\\: mixed, 'unsubscribe' given\\.$#"
count: 1
- path: ../app/code/core/Mage/Adminhtml/controllers/Newsletter/ProblemController.php
+ path: app/code/core/Mage/Adminhtml/controllers/Newsletter/ProblemController.php
-
message: "#^Parameter \\#1 \\$callback of method Varien_Data_Collection\\:\\:walk\\(\\) expects callable\\(\\)\\: mixed, 'sendPerSubscriber' given\\.$#"
count: 1
- path: ../app/code/core/Mage/Adminhtml/controllers/Newsletter/QueueController.php
+ path: app/code/core/Mage/Adminhtml/controllers/Newsletter/QueueController.php
-
message: "#^Variable \\$id in isset\\(\\) always exists and is not nullable\\.$#"
count: 1
- path: ../app/code/core/Mage/Adminhtml/controllers/Permissions/BlockController.php
+ path: app/code/core/Mage/Adminhtml/controllers/Permissions/BlockController.php
-
message: "#^Unreachable statement \\- code above always terminates\\.$#"
count: 1
- path: ../app/code/core/Mage/Adminhtml/controllers/Permissions/RoleController.php
+ path: app/code/core/Mage/Adminhtml/controllers/Permissions/RoleController.php
-
message: "#^Comparison operation \"\\>\\=\" between int\\<1, max\\> and 1 is always true\\.$#"
count: 1
- path: ../app/code/core/Mage/Adminhtml/controllers/Permissions/UserController.php
+ path: app/code/core/Mage/Adminhtml/controllers/Permissions/UserController.php
-
message: "#^Variable \\$id in isset\\(\\) always exists and is not nullable\\.$#"
count: 1
- path: ../app/code/core/Mage/Adminhtml/controllers/Permissions/VariableController.php
+ path: app/code/core/Mage/Adminhtml/controllers/Permissions/VariableController.php
-
message: "#^Negated boolean expression is always false\\.$#"
count: 1
- path: ../app/code/core/Mage/Adminhtml/controllers/PollController.php
+ path: app/code/core/Mage/Adminhtml/controllers/PollController.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
+ 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
+ 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
+ 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
+ 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
+ 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
+ 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
+ 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
+ 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
+ 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
+ path: app/code/core/Mage/Adminhtml/controllers/Sales/Order/InvoiceController.php
-
message: "#^Call to function is_object\\(\\) with array\\|string will always evaluate to false\\.$#"
count: 1
- path: ../app/code/core/Mage/Adminhtml/controllers/Sales/Order/ShipmentController.php
+ path: app/code/core/Mage/Adminhtml/controllers/Sales/Order/ShipmentController.php
-
message: "#^Method Mage_Adminhtml_Sales_Order_ShipmentController\\:\\:getShippingItemsGridAction\\(\\) should return Mage_Core_Controller_Response_Http but returns Zend_Controller_Response_Abstract\\.$#"
count: 1
- path: ../app/code/core/Mage/Adminhtml/controllers/Sales/Order/ShipmentController.php
+ path: app/code/core/Mage/Adminhtml/controllers/Sales/Order/ShipmentController.php
-
message: "#^Negated boolean expression is always false\\.$#"
count: 1
- path: ../app/code/core/Mage/Adminhtml/controllers/Sales/Order/ShipmentController.php
+ path: app/code/core/Mage/Adminhtml/controllers/Sales/Order/ShipmentController.php
-
message: "#^Parameter \\#1 \\$order of method Mage_Sales_Model_Resource_Order_Collection_Abstract\\:\\:setOrderFilter\\(\\) expects int\\|Mage_Sales_Model_Order, array\\ given\\.$#"
count: 1
- path: ../app/code/core/Mage/Adminhtml/controllers/Sales/Order/ShipmentController.php
+ path: app/code/core/Mage/Adminhtml/controllers/Sales/Order/ShipmentController.php
-
message: "#^Parameter \\#1 \\$prefix of function uniqid expects string, int\\<0, max\\> given\\.$#"
count: 1
- path: ../app/code/core/Mage/Adminhtml/controllers/Sales/Order/ShipmentController.php
+ path: app/code/core/Mage/Adminhtml/controllers/Sales/Order/ShipmentController.php
-
message: "#^Parameter \\#2 \\$enable of function imageinterlace expects bool\\|null, int given\\.$#"
count: 1
- path: ../app/code/core/Mage/Adminhtml/controllers/Sales/Order/ShipmentController.php
+ path: app/code/core/Mage/Adminhtml/controllers/Sales/Order/ShipmentController.php
-
message: "#^If condition is always true\\.$#"
count: 1
- path: ../app/code/core/Mage/Adminhtml/controllers/Sales/OrderController.php
+ path: app/code/core/Mage/Adminhtml/controllers/Sales/OrderController.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
+ path: app/code/core/Mage/Adminhtml/controllers/Sales/OrderController.php
-
message: "#^Parameter \\#1 \\$creditmemos of method Mage_Sales_Model_Order_Pdf_Creditmemo\\:\\:getPdf\\(\\) expects array\\, Mage_Sales_Model_Resource_Order_Creditmemo_Collection given\\.$#"
count: 4
- path: ../app/code/core/Mage/Adminhtml/controllers/Sales/OrderController.php
+ path: app/code/core/Mage/Adminhtml/controllers/Sales/OrderController.php
-
message: "#^Parameter \\#1 \\$invoices of method Mage_Sales_Model_Order_Pdf_Invoice\\:\\:getPdf\\(\\) expects array\\, Mage_Sales_Model_Resource_Order_Invoice_Collection given\\.$#"
count: 4
- path: ../app/code/core/Mage/Adminhtml/controllers/Sales/OrderController.php
+ path: app/code/core/Mage/Adminhtml/controllers/Sales/OrderController.php
-
message: "#^Parameter \\#1 \\$shipments of method Mage_Sales_Model_Order_Pdf_Shipment\\:\\:getPdf\\(\\) expects array\\, Mage_Sales_Model_Resource_Order_Shipment_Collection given\\.$#"
count: 4
- path: ../app/code/core/Mage/Adminhtml/controllers/Sales/OrderController.php
+ path: app/code/core/Mage/Adminhtml/controllers/Sales/OrderController.php
-
message: "#^Parameter \\#3 \\$value of method Mage_Core_Controller_Varien_Action\\:\\:setFlag\\(\\) expects int\\|string, true given\\.$#"
count: 1
- path: ../app/code/core/Mage/Adminhtml/controllers/Sales/OrderController.php
+ 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
+ path: app/code/core/Mage/Adminhtml/controllers/Sales/OrderController.php
-
message: "#^If condition is always true\\.$#"
count: 1
- path: ../app/code/core/Mage/Adminhtml/controllers/Sales/Recurring/ProfileController.php
+ path: app/code/core/Mage/Adminhtml/controllers/Sales/Recurring/ProfileController.php
-
message: "#^Parameter \\#1 \\$order of method Mage_Sales_Model_Order_Payment\\:\\:setOrder\\(\\) expects Mage_Sales_Model_Order, Mage_Sales_Model_Order_Payment given\\.$#"
count: 1
- path: ../app/code/core/Mage/Adminhtml/controllers/Sales/TransactionsController.php
+ path: app/code/core/Mage/Adminhtml/controllers/Sales/TransactionsController.php
-
message: "#^Parameter \\#3 \\$value of method Mage_Core_Controller_Varien_Action\\:\\:setFlag\\(\\) expects int\\|string, true given\\.$#"
count: 1
- path: ../app/code/core/Mage/Adminhtml/controllers/Sales/TransactionsController.php
+ path: app/code/core/Mage/Adminhtml/controllers/Sales/TransactionsController.php
-
message: "#^If condition is always true\\.$#"
count: 1
- path: ../app/code/core/Mage/Adminhtml/controllers/System/Config/System/StorageController.php
+ path: app/code/core/Mage/Adminhtml/controllers/System/Config/System/StorageController.php
-
message: "#^Left side of && is always true\\.$#"
count: 1
- path: ../app/code/core/Mage/Adminhtml/controllers/System/Config/System/StorageController.php
+ path: app/code/core/Mage/Adminhtml/controllers/System/Config/System/StorageController.php
-
message: "#^Parameter \\#3 \\$value of method Mage_Core_Controller_Varien_Action\\:\\:setFlag\\(\\) expects int\\|string, true given\\.$#"
count: 2
- path: ../app/code/core/Mage/Adminhtml/controllers/System/ConfigController.php
+ path: app/code/core/Mage/Adminhtml/controllers/System/ConfigController.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
+ 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
+ path: app/code/core/Mage/Adminhtml/controllers/System/CurrencyController.php
-
message: "#^Parameter \\#1 \\$modelClass of static method Mage\\:\\:getModel\\(\\) expects string, array given\\.$#"
count: 1
- path: ../app/code/core/Mage/Adminhtml/controllers/System/CurrencyController.php
+ path: app/code/core/Mage/Adminhtml/controllers/System/CurrencyController.php
-
message: "#^Method Mage_Adminhtml_System_StoreController\\:\\:_backupDatabase\\(\\) should return \\$this\\(Mage_Adminhtml_System_StoreController\\) but empty return statement found\\.$#"
count: 2
- path: ../app/code/core/Mage/Adminhtml/controllers/System/StoreController.php
+ path: app/code/core/Mage/Adminhtml/controllers/System/StoreController.php
-
message: "#^Negated boolean expression is always false\\.$#"
count: 6
- path: ../app/code/core/Mage/Adminhtml/controllers/System/StoreController.php
+ path: app/code/core/Mage/Adminhtml/controllers/System/StoreController.php
-
message: "#^Variable \\$codeBase might not be defined\\.$#"
count: 1
- path: ../app/code/core/Mage/Adminhtml/controllers/System/StoreController.php
+ 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
+ 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
+ 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
+ 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
+ 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
+ path: app/code/core/Mage/Adminhtml/controllers/Tax/RateController.php
-
message: "#^Parameter \\#1 \\$id of method Mage_Core_Model_Abstract\\:\\:load\\(\\) expects int\\|string, null given\\.$#"
count: 2
- path: ../app/code/core/Mage/Adminhtml/controllers/Tax/RateController.php
+ path: app/code/core/Mage/Adminhtml/controllers/Tax/RateController.php
-
message: "#^Method Mage_Adminhtml_Tax_RuleController\\:\\:saveAction\\(\\) should return Mage_Core_Controller_Response_Http\\|Mage_Core_Controller_Varien_Action but return statement is missing\\.$#"
count: 1
- path: ../app/code/core/Mage/Adminhtml/controllers/Tax/RuleController.php
+ path: app/code/core/Mage/Adminhtml/controllers/Tax/RuleController.php
-
message: "#^Method Mage_Adminhtml_Tax_RuleController\\:\\:saveAction\\(\\) should return Mage_Core_Controller_Response_Http\\|Mage_Core_Controller_Varien_Action but returns Zend_Controller_Response_Abstract\\.$#"
count: 1
- path: ../app/code/core/Mage/Adminhtml/controllers/Tax/RuleController.php
+ path: app/code/core/Mage/Adminhtml/controllers/Tax/RuleController.php
-
message: "#^Parameter \\#1 \\$ruleModel of method Mage_Adminhtml_Tax_RuleController\\:\\:_isValidRuleRequest\\(\\) expects Mage_Tax_Model_Calculation_Rule, Mage_Core_Model_Abstract given\\.$#"
count: 1
- path: ../app/code/core/Mage/Adminhtml/controllers/Tax/RuleController.php
+ path: app/code/core/Mage/Adminhtml/controllers/Tax/RuleController.php
-
message: "#^Parameter \\#2 \\$value of method Mage_Core_Model_Config\\:\\:saveConfig\\(\\) expects string, int given\\.$#"
count: 1
- path: ../app/code/core/Mage/Adminhtml/controllers/TaxController.php
+ path: app/code/core/Mage/Adminhtml/controllers/TaxController.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
+ path: app/code/core/Mage/Api/Model/Acl.php
-
message: "#^Parameter \\#2 \\$arguments of static method Mage\\:\\:getModel\\(\\) expects array\\|object, string given\\.$#"
count: 1
- path: ../app/code/core/Mage/Api/Model/Config.php
+ path: app/code/core/Mage/Api/Model/Config.php
-
message: "#^Parameter \\#2 \\$resource of method Mage_Api_Model_Config\\:\\:loadAclResources\\(\\) expects Mage_Core_Model_Config_Element\\|null, Varien_Simplexml_Element given\\.$#"
count: 1
- path: ../app/code/core/Mage/Api/Model/Config.php
+ path: app/code/core/Mage/Api/Model/Config.php
-
message: "#^Parameter \\#4 \\$lifeTime of method Mage_Core_Model_App\\:\\:saveCache\\(\\) expects int\\|false\\|null, bool given\\.$#"
count: 1
- path: ../app/code/core/Mage/Api/Model/Config.php
+ path: app/code/core/Mage/Api/Model/Config.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
+ 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
+ path: app/code/core/Mage/Api/Model/Resource/Acl.php
-
message: "#^Parameter \\#2 \\$arguments of static method Mage\\:\\:getModel\\(\\) expects array\\|object, string given\\.$#"
count: 2
- path: ../app/code/core/Mage/Api/Model/Resource/Acl.php
+ 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
+ path: app/code/core/Mage/Api/Model/Resource/Roles.php
-
message: "#^Parameter \\#1 \\$role of method Mage_Api_Model_Resource_Roles\\:\\:_updateRoleUsersAcl\\(\\) expects Mage_Api_Model_Roles, Mage_Core_Model_Abstract given\\.$#"
count: 1
- path: ../app/code/core/Mage/Api/Model/Resource/Roles.php
+ path: app/code/core/Mage/Api/Model/Resource/Roles.php
-
message: "#^Parameter \\#1 \\$user of method Mage_Api_Model_Resource_User\\:\\:hasAssigned2Role\\(\\) expects int\\|Mage_Api_Model_User, Mage_Core_Model_Abstract given\\.$#"
count: 1
- path: ../app/code/core/Mage/Api/Model/Resource/User.php
+ path: app/code/core/Mage/Api/Model/Resource/User.php
-
message: "#^Return type \\(bool\\) of method Mage_Api_Model_Resource_User\\:\\:delete\\(\\) should be compatible with return type \\(\\$this\\(Mage_Core_Model_Resource_Db_Abstract\\)\\) of method Mage_Core_Model_Resource_Db_Abstract\\:\\:delete\\(\\)$#"
count: 1
- path: ../app/code/core/Mage/Api/Model/Resource/User.php
+ path: app/code/core/Mage/Api/Model/Resource/User.php
-
message: "#^Call to an undefined method Mage_Api_Model_Resource_Roles\\:\\:update\\(\\)\\.$#"
count: 1
- path: ../app/code/core/Mage/Api/Model/Roles.php
+ path: app/code/core/Mage/Api/Model/Roles.php
-
message: "#^Parameter \\#3 \\$level of method Mage_Api_Model_Roles\\:\\:_buildResourcesArray\\(\\) expects int, null given\\.$#"
count: 2
- path: ../app/code/core/Mage/Api/Model/Roles.php
+ 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
+ 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
+ path: app/code/core/Mage/Api/Model/Server/Adapter/Soap.php
-
message: "#^Parameter \\#1 \\$code of class SoapFault constructor expects array\\|string\\|null, int given\\.$#"
count: 1
- path: ../app/code/core/Mage/Api/Model/Server/Adapter/Soap.php
+ path: app/code/core/Mage/Api/Model/Server/Adapter/Soap.php
-
message: "#^Parameter \\#3 \\$subject of function preg_replace expects array\\|string, void given\\.$#"
count: 1
- path: ../app/code/core/Mage/Api/Model/Server/Adapter/Soap.php
+ 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
+ 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
+ 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
+ path: app/code/core/Mage/Api/Model/Server/Adapter/Soap.php
-
message: "#^Access to an undefined property object\\:\\:\\$model\\.$#"
count: 2
- path: ../app/code/core/Mage/Api/Model/Server/Handler/Abstract.php
+ path: app/code/core/Mage/Api/Model/Server/Handler/Abstract.php
-
message: "#^Instanceof between Mage_Core_Model_Abstract\\|false and Mage_Api_Model_Resource_Abstract will always evaluate to false\\.$#"
count: 1
- path: ../app/code/core/Mage/Api/Model/Server/Handler/Abstract.php
+ path: app/code/core/Mage/Api/Model/Server/Handler/Abstract.php
-
message: "#^Method Mage_Api_Model_Session\\:\\:isSessionExpired\\(\\) invoked with 0 parameters, 1 required\\.$#"
count: 1
- path: ../app/code/core/Mage/Api/Model/Server/Handler/Abstract.php
+ path: app/code/core/Mage/Api/Model/Server/Handler/Abstract.php
-
message: "#^Parameter \\#3 \\$subject of function preg_replace expects array\\|string, void given\\.$#"
count: 1
- path: ../app/code/core/Mage/Api/Model/Server/V2/Adapter/Soap.php
+ 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/V2/Adapter/Soap.php
+ 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
+ path: app/code/core/Mage/Api/Model/Server/V2/Adapter/Soap.php
-
message: "#^Parameter \\#1 \\$string of function strlen expects string, array given\\.$#"
count: 1
- path: ../app/code/core/Mage/Api/Model/Server/V2/Handler.php
+ path: app/code/core/Mage/Api/Model/Server/V2/Handler.php
-
message: "#^Parameter \\#2 \\$needle of function strpos expects string, array given\\.$#"
count: 1
- path: ../app/code/core/Mage/Api/Model/Server/V2/Handler.php
+ path: app/code/core/Mage/Api/Model/Server/V2/Handler.php
-
message: "#^Parameter \\#3 \\$subject of function preg_replace expects array\\|string, void given\\.$#"
count: 1
- path: ../app/code/core/Mage/Api/Model/Server/Wsi/Adapter/Soap.php
+ path: app/code/core/Mage/Api/Model/Server/Wsi/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
+ 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
+ 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
+ path: app/code/core/Mage/Api/Model/Server/Wsi/Handler.php
-
message: "#^Parameter \\#1 \\$string of function strlen expects string, array given\\.$#"
count: 1
- path: ../app/code/core/Mage/Api/Model/Server/Wsi/Handler.php
+ path: app/code/core/Mage/Api/Model/Server/Wsi/Handler.php
-
message: "#^Parameter \\#2 \\$needle of function strpos expects string, array given\\.$#"
count: 1
- path: ../app/code/core/Mage/Api/Model/Server/Wsi/Handler.php
+ 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
+ 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
+ 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
+ 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
+ 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
+ path: app/code/core/Mage/Api/Model/Wsdl/Config.php
-
message: "#^Parameter \\#2 \\$mergeToObject of method Mage_Core_Model_Config\\:\\:loadModulesConfiguration\\(\\) expects Mage_Core_Model_Config_Base\\|null, \\$this\\(Mage_Api_Model_Wsdl_Config\\) given\\.$#"
count: 2
- path: ../app/code/core/Mage/Api/Model/Wsdl/Config.php
+ path: app/code/core/Mage/Api/Model/Wsdl/Config.php
-
message: "#^Parameter \\#3 \\$mergeModel of method Mage_Core_Model_Config\\:\\:loadModulesConfiguration\\(\\) expects null, Mage_Api_Model_Wsdl_Config_Base given\\.$#"
count: 2
- path: ../app/code/core/Mage/Api/Model/Wsdl/Config.php
+ 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
+ path: app/code/core/Mage/Api/Model/Wsdl/Config/Element.php
-
message: "#^Parameter \\#1 \\$source of static method Mage_Api_Model_Wsdl_Config_Element\\:\\:_getChildren\\(\\) expects Varien_Simplexml_Element, SimpleXMLElement given\\.$#"
count: 1
- path: ../app/code/core/Mage/Api/Model/Wsdl/Config/Element.php
+ path: app/code/core/Mage/Api/Model/Wsdl/Config/Element.php
-
message: "#^Return type \\(array\\) of method Mage_Api_Model_Wsdl_Config_Element\\:\\:getChildren\\(\\) should be compatible with return type \\(RecursiveIterator\\|null\\) of method RecursiveIterator\\\\:\\:getChildren\\(\\)$#"
count: 1
- path: ../app/code/core/Mage/Api/Model/Wsdl/Config/Element.php
+ path: app/code/core/Mage/Api/Model/Wsdl/Config/Element.php
-
message: "#^Return type \\(void\\) of method Mage_Api2_Block_Adminhtml_Attribute_Grid\\:\\:_prepareCollection\\(\\) should be compatible with return type \\(\\$this\\(Mage_Adminhtml_Block_Widget_Grid\\)\\) of method Mage_Adminhtml_Block_Widget_Grid\\:\\:_prepareCollection\\(\\)$#"
count: 1
- path: ../app/code/core/Mage/Api2/Block/Adminhtml/Attribute/Grid.php
+ path: app/code/core/Mage/Api2/Block/Adminhtml/Attribute/Grid.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
+ path: app/code/core/Mage/Api2/Block/Adminhtml/Attribute/Tab/Resource.php
-
message: "#^Call to an undefined method Varien_Data_Collection\\:\\:addFieldToFilter\\(\\)\\.$#"
count: 2
- path: ../app/code/core/Mage/Api2/Block/Adminhtml/Permissions/User/Edit/Tab/Roles.php
+ path: app/code/core/Mage/Api2/Block/Adminhtml/Permissions/User/Edit/Tab/Roles.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
+ 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
+ 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
+ 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
+ path: app/code/core/Mage/Api2/Model/Acl.php
-
message: "#^Parameter \\#1 \\$role of method Zend_Acl\\:\\:hasRole\\(\\) expects string\\|Zend_Acl_Role_Interface, int given\\.$#"
count: 1
- path: ../app/code/core/Mage/Api2/Model/Acl/Global.php
+ path: app/code/core/Mage/Api2/Model/Acl/Global.php
-
message: "#^Parameter \\#1 \\$role of method Zend_Acl\\:\\:isAllowed\\(\\) expects string\\|Zend_Acl_Role_Interface\\|null, int given\\.$#"
count: 1
- path: ../app/code/core/Mage/Api2/Model/Acl/Global.php
+ path: app/code/core/Mage/Api2/Model/Acl/Global.php
-
message: "#^Strict comparison using \\=\\=\\= between int and null will always evaluate to false\\.$#"
count: 1
- path: ../app/code/core/Mage/Api2/Model/Acl/Global.php
+ path: app/code/core/Mage/Api2/Model/Acl/Global.php
-
message: "#^If condition is always true\\.$#"
count: 1
- path: ../app/code/core/Mage/Api2/Model/Acl/Global/Rule/ResourcePermission.php
+ path: app/code/core/Mage/Api2/Model/Acl/Global/Rule/ResourcePermission.php
-
message: "#^Method Mage_Api2_Model_Acl_Global_Rule_ResourcePermission\\:\\:setFilterValue\\(\\) should return Mage_Api2_Model_Acl_PermissionInterface but return statement is missing\\.$#"
count: 1
- path: ../app/code/core/Mage/Api2/Model/Acl/Global/Rule/ResourcePermission.php
+ path: app/code/core/Mage/Api2/Model/Acl/Global/Rule/ResourcePermission.php
-
message: "#^Unreachable statement \\- code above always terminates\\.$#"
count: 1
- path: ../app/code/core/Mage/Api2/Model/Acl/Global/Rule/Tree.php
+ path: app/code/core/Mage/Api2/Model/Acl/Global/Rule/Tree.php
-
message: "#^Variable \\$operationName might not be defined\\.$#"
count: 2
- path: ../app/code/core/Mage/Api2/Model/Acl/Global/Rule/Tree.php
+ path: app/code/core/Mage/Api2/Model/Acl/Global/Rule/Tree.php
-
message: "#^Instanceof between Mage_Core_Model_Abstract\\|false and Mage_Api2_Model_Auth_Adapter_Abstract will always evaluate to false\\.$#"
count: 1
- path: ../app/code/core/Mage/Api2/Model/Auth/Adapter.php
+ path: app/code/core/Mage/Api2/Model/Auth/Adapter.php
-
message: "#^Unreachable statement \\- code above always terminates\\.$#"
count: 1
- path: ../app/code/core/Mage/Api2/Model/Auth/Adapter.php
+ path: app/code/core/Mage/Api2/Model/Auth/Adapter.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
+ path: app/code/core/Mage/Api2/Model/Config.php
-
message: "#^Parameter \\#1 \\$cache of method Varien_Simplexml_Config\\:\\:setCache\\(\\) expects Varien_Simplexml_Config_Cache_Abstract, Zend_Cache_Core given\\.$#"
count: 1
- path: ../app/code/core/Mage/Api2/Model/Config.php
+ path: app/code/core/Mage/Api2/Model/Config.php
-
message: "#^Negated boolean expression is always false\\.$#"
count: 1
- path: ../app/code/core/Mage/Api2/Model/Dispatcher.php
+ path: app/code/core/Mage/Api2/Model/Dispatcher.php
-
message: "#^Parameter \\#2 \\$lowerOrEqualsTo of method Mage_Api2_Model_Config\\:\\:getResourceLastVersion\\(\\) expects int\\|null, bool\\|string given\\.$#"
count: 1
- path: ../app/code/core/Mage/Api2/Model/Dispatcher.php
+ path: app/code/core/Mage/Api2/Model/Dispatcher.php
-
message: "#^Call to an undefined method Mage_Api2_Model_Config\\:\\:getMainRoute\\(\\)\\.$#"
count: 1
- path: ../app/code/core/Mage/Api2/Model/Multicall.php
+ 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
+ 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
+ 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
+ path: app/code/core/Mage/Api2/Model/Resource.php
-
message: "#^Method Mage_Api2_Model_Resource\\:\\:_getSubModel\\(\\) should return \\$this\\(Mage_Api2_Model_Resource\\) but returns Mage_Api2_Model_Resource\\.$#"
count: 1
- path: ../app/code/core/Mage/Api2/Model/Resource.php
+ 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
+ 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
+ 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
+ path: app/code/core/Mage/Api2/Model/Resource.php
-
message: "#^Negated boolean expression is always false\\.$#"
count: 6
- path: ../app/code/core/Mage/Api2/Model/Resource.php
+ path: app/code/core/Mage/Api2/Model/Resource.php
-
message: "#^Parameter \\#1 \\$renderer of method Mage_Api2_Model_Resource\\:\\:setRenderer\\(\\) expects Mage_Api2_Model_Renderer_Interface, Mage_Core_Model_Abstract\\|false given\\.$#"
count: 1
- path: ../app/code/core/Mage/Api2/Model/Resource.php
+ path: app/code/core/Mage/Api2/Model/Resource.php
-
message: "#^Parameter \\#1 \\$version of method Mage_Api2_Model_Resource\\:\\:setVersion\\(\\) expects int, string given\\.$#"
count: 1
- path: ../app/code/core/Mage/Api2/Model/Resource.php
+ path: app/code/core/Mage/Api2/Model/Resource.php
-
message: "#^Parameter \\#2 \\$code of method Mage_Api2_Model_Response\\:\\:addMessage\\(\\) expects string, int given\\.$#"
count: 2
- path: ../app/code/core/Mage/Api2/Model/Resource.php
+ path: app/code/core/Mage/Api2/Model/Resource.php
-
message: "#^Strict comparison using \\=\\=\\= between string and false will always evaluate to false\\.$#"
count: 1
- path: ../app/code/core/Mage/Api2/Model/Resource/Acl/Global/Role.php
+ path: app/code/core/Mage/Api2/Model/Resource/Acl/Global/Role.php
-
message: "#^Parameter \\#2 \\$value of method Varien_Data_Collection\\:\\:addFilter\\(\\) expects array\\|string, int given\\.$#"
count: 1
- path: ../app/code/core/Mage/Api2/Model/Resource/Acl/Global/Rule/Collection.php
+ path: app/code/core/Mage/Api2/Model/Resource/Acl/Global/Rule/Collection.php
-
message: "#^Instanceof between Mage_Core_Model_Abstract and Mage_Eav_Model_Form will always evaluate to false\\.$#"
count: 1
- path: ../app/code/core/Mage/Api2/Model/Resource/Validator/Eav.php
+ path: app/code/core/Mage/Api2/Model/Resource/Validator/Eav.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
+ path: app/code/core/Mage/Api2/Model/Resource/Validator/Eav.php
-
message: "#^Parameter \\#2 \\.\\.\\.\\$arrays of function array_merge expects array, false given\\.$#"
count: 1
- path: ../app/code/core/Mage/Api2/Model/Resource/Validator/Eav.php
+ 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
+ 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
+ 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
+ path: app/code/core/Mage/Api2/Model/Resource/Validator/Eav.php
-
message: "#^Result of \\|\\| is always false\\.$#"
count: 1
- path: ../app/code/core/Mage/Api2/Model/Resource/Validator/Eav.php
+ path: app/code/core/Mage/Api2/Model/Resource/Validator/Eav.php
-
message: "#^Result of \\|\\| is always true\\.$#"
count: 1
- path: ../app/code/core/Mage/Api2/Model/Resource/Validator/Eav.php
+ path: app/code/core/Mage/Api2/Model/Resource/Validator/Eav.php
-
message: "#^Unreachable statement \\- code above always terminates\\.$#"
count: 1
- path: ../app/code/core/Mage/Api2/Model/Resource/Validator/Eav.php
+ 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
+ path: app/code/core/Mage/Api2/Model/Resource/Validator/Fields.php
-
message: "#^Method Mage_Api2_Model_Response\\:\\:setMimeType\\(\\) should return \\$this\\(Mage_Api2_Model_Response\\) but returns Zend_Controller_Response_Abstract\\.$#"
count: 1
- path: ../app/code/core/Mage/Api2/Model/Response.php
+ path: app/code/core/Mage/Api2/Model/Response.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
+ 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
+ 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
+ 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
+ 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
+ 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
+ path: app/code/core/Mage/Api2/Model/Route/ApiType.php
-
message: "#^Negated boolean expression is always false\\.$#"
count: 1
- path: ../app/code/core/Mage/Api2/Model/Server.php
+ path: app/code/core/Mage/Api2/Model/Server.php
-
message: "#^Call to an undefined method Varien_Object\\:\\:decrypt\\(\\)\\.$#"
count: 1
- path: ../app/code/core/Mage/Authorizenet/Model/Directpost.php
+ path: app/code/core/Mage/Authorizenet/Model/Directpost.php
-
message: "#^Call to an undefined method Varien_Object\\:\\:encrypt\\(\\)\\.$#"
count: 1
- path: ../app/code/core/Mage/Authorizenet/Model/Directpost.php
+ path: app/code/core/Mage/Authorizenet/Model/Directpost.php
-
message: "#^Method Mage_Authorizenet_Model_Directpost\\:\\:initialize\\(\\) should return \\$this\\(Mage_Authorizenet_Model_Directpost\\) but return statement is missing\\.$#"
count: 1
- path: ../app/code/core/Mage/Authorizenet/Model/Directpost.php
+ path: app/code/core/Mage/Authorizenet/Model/Directpost.php
-
message: "#^Parameter \\#1 \\$payment of method Mage_Authorizenet_Model_Directpost\\:\\:_getRealParentTransactionId\\(\\) expects Mage_Sales_Model_Order_Payment, Varien_Object given\\.$#"
count: 3
- path: ../app/code/core/Mage/Authorizenet/Model/Directpost.php
+ path: app/code/core/Mage/Authorizenet/Model/Directpost.php
-
message: "#^Parameter \\#1 \\$payment of method Mage_Authorizenet_Model_Directpost\\:\\:authorize\\(\\) expects Varien_Object, true given\\.$#"
count: 1
- path: ../app/code/core/Mage/Authorizenet/Model/Directpost.php
+ path: app/code/core/Mage/Authorizenet/Model/Directpost.php
-
message: "#^Parameter \\#1 \\$payment of method Mage_Paygate_Model_Authorizenet\\:\\:_buildRequest\\(\\) expects Mage_Payment_Model_Info, Varien_Object given\\.$#"
count: 3
- path: ../app/code/core/Mage/Authorizenet/Model/Directpost.php
+ path: app/code/core/Mage/Authorizenet/Model/Directpost.php
-
message: "#^Parameter \\#2 \\$amount of method Mage_Authorizenet_Model_Directpost\\:\\:_refund\\(\\) expects string, float given\\.$#"
count: 1
- path: ../app/code/core/Mage/Authorizenet/Model/Directpost.php
+ path: app/code/core/Mage/Authorizenet/Model/Directpost.php
-
message: "#^Return type \\(bool\\) of method Mage_Authorizenet_Model_Directpost\\:\\:validate\\(\\) should be compatible with return type \\(\\$this\\(Mage_Payment_Model_Method_Cc\\)\\) of method Mage_Payment_Model_Method_Cc\\:\\:validate\\(\\)$#"
count: 1
- path: ../app/code/core/Mage/Authorizenet/Model/Directpost.php
+ path: app/code/core/Mage/Authorizenet/Model/Directpost.php
-
message: "#^Return type \\(void\\) of method Mage_Authorizenet_Model_Directpost\\:\\:authorize\\(\\) should be compatible with return type \\(\\$this\\(Mage_Paygate_Model_Authorizenet\\)\\) of method Mage_Paygate_Model_Authorizenet\\:\\:authorize\\(\\)$#"
count: 1
- path: ../app/code/core/Mage/Authorizenet/Model/Directpost.php
+ path: app/code/core/Mage/Authorizenet/Model/Directpost.php
-
message: "#^Call to an undefined method Mage_Payment_Model_Method_Abstract\\:\\:generateRequestFromOrder\\(\\)\\.$#"
count: 1
- path: ../app/code/core/Mage/Authorizenet/Model/Directpost/Observer.php
+ path: app/code/core/Mage/Authorizenet/Model/Directpost/Observer.php
-
message: "#^Parameter \\#1 \\$spec of method Zend_Controller_Response_Abstract\\:\\:getBody\\(\\) expects bool, string given\\.$#"
count: 1
- path: ../app/code/core/Mage/Authorizenet/Model/Directpost/Observer.php
+ path: app/code/core/Mage/Authorizenet/Model/Directpost/Observer.php
-
message: "#^Parameter \\#6 \\$fpTimestamp of method Mage_Authorizenet_Model_Directpost_Request\\:\\:_generateSha2RequestSign\\(\\) expects string, int\\<1, max\\> given\\.$#"
count: 1
- path: ../app/code/core/Mage/Authorizenet/Model/Directpost/Request.php
+ path: app/code/core/Mage/Authorizenet/Model/Directpost/Request.php
-
message: "#^Parameter \\#6 \\$fpTimestamp of method Mage_Authorizenet_Model_Directpost_Request\\:\\:generateRequestSign\\(\\) expects string, int\\<1, max\\> given\\.$#"
count: 1
- path: ../app/code/core/Mage/Authorizenet/Model/Directpost/Request.php
+ path: app/code/core/Mage/Authorizenet/Model/Directpost/Request.php
-
message: "#^Call to an undefined method Mage_Payment_Model_Method_Abstract\\:\\:generateRequestFromOrder\\(\\)\\.$#"
count: 1
- path: ../app/code/core/Mage/Authorizenet/controllers/Adminhtml/Authorizenet/Directpost/PaymentController.php
+ path: app/code/core/Mage/Authorizenet/controllers/Adminhtml/Authorizenet/Directpost/PaymentController.php
-
message: "#^Method Mage_Authorizenet_Directpost_PaymentController\\:\\:_getIframeBlock\\(\\) should return Mage_Authorizenet_Block_Directpost_Iframe but returns Mage_Core_Block_Abstract\\|false\\.$#"
count: 1
- path: ../app/code/core/Mage/Authorizenet/controllers/Directpost/PaymentController.php
+ path: app/code/core/Mage/Authorizenet/controllers/Directpost/PaymentController.php
-
message: "#^Variable \\$params might not be defined\\.$#"
count: 1
- path: ../app/code/core/Mage/Authorizenet/controllers/Directpost/PaymentController.php
+ path: app/code/core/Mage/Authorizenet/controllers/Directpost/PaymentController.php
-
message: "#^Method Mage_Backup_Helper_Data\\:\\:getCreateSuccessMessageByType\\(\\) should return string but empty return statement found\\.$#"
count: 1
- path: ../app/code/core/Mage/Backup/Helper/Data.php
+ path: app/code/core/Mage/Backup/Helper/Data.php
-
message: "#^Call to function is_null\\(\\) with resource will always evaluate to false\\.$#"
count: 3
- path: ../app/code/core/Mage/Backup/Model/Backup.php
+ path: app/code/core/Mage/Backup/Model/Backup.php
-
message: "#^Property Mage_Backup_Model_Backup\\:\\:\\$_handler \\(resource\\) does not accept null\\.$#"
count: 1
- path: ../app/code/core/Mage/Backup/Model/Backup.php
+ path: app/code/core/Mage/Backup/Model/Backup.php
-
message: "#^Variable \\$filePath might not be defined\\.$#"
count: 4
- path: ../app/code/core/Mage/Backup/Model/Backup.php
+ path: app/code/core/Mage/Backup/Model/Backup.php
-
message: "#^Parameter \\#2 \\$value of function ini_set expects string, int given\\.$#"
count: 1
- path: ../app/code/core/Mage/Backup/Model/Db.php
+ path: app/code/core/Mage/Backup/Model/Db.php
-
message: "#^Call to an undefined method Mage_Backup_Interface\\:\\:setRootDir\\(\\)\\.$#"
count: 1
- path: ../app/code/core/Mage/Backup/Model/Observer.php
+ path: app/code/core/Mage/Backup/Model/Observer.php
-
message: "#^Property Mage_Backup_Model_Resource_Db\\:\\:\\$_write \\(Varien_Db_Adapter_Pdo_Mysql\\) does not accept Varien_Db_Adapter_Interface\\|false\\.$#"
count: 1
- path: ../app/code/core/Mage/Backup/Model/Resource/Db.php
+ path: app/code/core/Mage/Backup/Model/Resource/Db.php
-
message: "#^Parameter \\#1 \\$elementId \\(string\\) of method Mage_Bundle_Block_Adminhtml_Catalog_Product_Composite_Fieldset_Options_Type_Checkbox\\:\\:setValidationContainer\\(\\) should be compatible with parameter \\$elementId \\(int\\) of method Mage_Bundle_Block_Catalog_Product_View_Type_Bundle_Option\\:\\:setValidationContainer\\(\\)$#"
count: 1
- path: ../app/code/core/Mage/Bundle/Block/Adminhtml/Catalog/Product/Composite/Fieldset/Options/Type/Checkbox.php
+ path: app/code/core/Mage/Bundle/Block/Adminhtml/Catalog/Product/Composite/Fieldset/Options/Type/Checkbox.php
-
message: "#^Parameter \\#2 \\$containerId \\(string\\) of method Mage_Bundle_Block_Adminhtml_Catalog_Product_Composite_Fieldset_Options_Type_Checkbox\\:\\:setValidationContainer\\(\\) should be compatible with parameter \\$containerId \\(int\\) of method Mage_Bundle_Block_Catalog_Product_View_Type_Bundle_Option\\:\\:setValidationContainer\\(\\)$#"
count: 1
- path: ../app/code/core/Mage/Bundle/Block/Adminhtml/Catalog/Product/Composite/Fieldset/Options/Type/Checkbox.php
+ path: app/code/core/Mage/Bundle/Block/Adminhtml/Catalog/Product/Composite/Fieldset/Options/Type/Checkbox.php
-
message: "#^Parameter \\#1 \\$elementId \\(string\\) of method Mage_Bundle_Block_Adminhtml_Catalog_Product_Composite_Fieldset_Options_Type_Multi\\:\\:setValidationContainer\\(\\) should be compatible with parameter \\$elementId \\(int\\) of method Mage_Bundle_Block_Catalog_Product_View_Type_Bundle_Option\\:\\:setValidationContainer\\(\\)$#"
count: 1
- path: ../app/code/core/Mage/Bundle/Block/Adminhtml/Catalog/Product/Composite/Fieldset/Options/Type/Multi.php
+ path: app/code/core/Mage/Bundle/Block/Adminhtml/Catalog/Product/Composite/Fieldset/Options/Type/Multi.php
-
message: "#^Parameter \\#2 \\$containerId \\(string\\) of method Mage_Bundle_Block_Adminhtml_Catalog_Product_Composite_Fieldset_Options_Type_Multi\\:\\:setValidationContainer\\(\\) should be compatible with parameter \\$containerId \\(int\\) of method Mage_Bundle_Block_Catalog_Product_View_Type_Bundle_Option\\:\\:setValidationContainer\\(\\)$#"
count: 1
- path: ../app/code/core/Mage/Bundle/Block/Adminhtml/Catalog/Product/Composite/Fieldset/Options/Type/Multi.php
+ path: app/code/core/Mage/Bundle/Block/Adminhtml/Catalog/Product/Composite/Fieldset/Options/Type/Multi.php
-
message: "#^Parameter \\#1 \\$elementId \\(string\\) of method Mage_Bundle_Block_Adminhtml_Catalog_Product_Composite_Fieldset_Options_Type_Radio\\:\\:setValidationContainer\\(\\) should be compatible with parameter \\$elementId \\(int\\) of method Mage_Bundle_Block_Catalog_Product_View_Type_Bundle_Option\\:\\:setValidationContainer\\(\\)$#"
count: 1
- path: ../app/code/core/Mage/Bundle/Block/Adminhtml/Catalog/Product/Composite/Fieldset/Options/Type/Radio.php
+ path: app/code/core/Mage/Bundle/Block/Adminhtml/Catalog/Product/Composite/Fieldset/Options/Type/Radio.php
-
message: "#^Parameter \\#2 \\$containerId \\(string\\) of method Mage_Bundle_Block_Adminhtml_Catalog_Product_Composite_Fieldset_Options_Type_Radio\\:\\:setValidationContainer\\(\\) should be compatible with parameter \\$containerId \\(int\\) of method Mage_Bundle_Block_Catalog_Product_View_Type_Bundle_Option\\:\\:setValidationContainer\\(\\)$#"
count: 1
- path: ../app/code/core/Mage/Bundle/Block/Adminhtml/Catalog/Product/Composite/Fieldset/Options/Type/Radio.php
+ path: app/code/core/Mage/Bundle/Block/Adminhtml/Catalog/Product/Composite/Fieldset/Options/Type/Radio.php
-
message: "#^Parameter \\#1 \\$elementId \\(string\\) of method Mage_Bundle_Block_Adminhtml_Catalog_Product_Composite_Fieldset_Options_Type_Select\\:\\:setValidationContainer\\(\\) should be compatible with parameter \\$elementId \\(int\\) of method Mage_Bundle_Block_Catalog_Product_View_Type_Bundle_Option\\:\\:setValidationContainer\\(\\)$#"
count: 1
- path: ../app/code/core/Mage/Bundle/Block/Adminhtml/Catalog/Product/Composite/Fieldset/Options/Type/Select.php
+ path: app/code/core/Mage/Bundle/Block/Adminhtml/Catalog/Product/Composite/Fieldset/Options/Type/Select.php
-
message: "#^Parameter \\#2 \\$containerId \\(string\\) of method Mage_Bundle_Block_Adminhtml_Catalog_Product_Composite_Fieldset_Options_Type_Select\\:\\:setValidationContainer\\(\\) should be compatible with parameter \\$containerId \\(int\\) of method Mage_Bundle_Block_Catalog_Product_View_Type_Bundle_Option\\:\\:setValidationContainer\\(\\)$#"
count: 1
- path: ../app/code/core/Mage/Bundle/Block/Adminhtml/Catalog/Product/Composite/Fieldset/Options/Type/Select.php
+ path: app/code/core/Mage/Bundle/Block/Adminhtml/Catalog/Product/Composite/Fieldset/Options/Type/Select.php
-
message: "#^Parameter \\#2 \\$product of method Mage_Catalog_Model_Product_Type_Abstract\\:\\:setStoreFilter\\(\\) expects null, Mage_Catalog_Model_Product given\\.$#"
count: 1
- path: ../app/code/core/Mage/Bundle/Block/Adminhtml/Catalog/Product/Edit/Tab/Bundle/Option.php
+ path: app/code/core/Mage/Bundle/Block/Adminhtml/Catalog/Product/Edit/Tab/Bundle/Option.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
+ path: app/code/core/Mage/Bundle/Block/Adminhtml/Catalog/Product/Edit/Tab/Bundle/Option/Selection.php
-
message: "#^Return type \\(void\\) of method Mage_Bundle_Block_Adminhtml_Catalog_Product_Edit_Tabs\\:\\:_prepareLayout\\(\\) should be compatible with return type \\(\\$this\\(Mage_Core_Block_Abstract\\)\\) of method Mage_Adminhtml_Block_Catalog_Product_Edit_Tabs\\:\\:_prepareLayout\\(\\)$#"
count: 1
- path: ../app/code/core/Mage/Bundle/Block/Adminhtml/Catalog/Product/Edit/Tabs.php
+ path: app/code/core/Mage/Bundle/Block/Adminhtml/Catalog/Product/Edit/Tabs.php
-
message: "#^If condition is always true\\.$#"
count: 2
- path: ../app/code/core/Mage/Bundle/Block/Adminhtml/Sales/Order/Items/Renderer.php
+ path: app/code/core/Mage/Bundle/Block/Adminhtml/Sales/Order/Items/Renderer.php
-
message: "#^Variable \\$_items might not be defined\\.$#"
count: 1
- path: ../app/code/core/Mage/Bundle/Block/Adminhtml/Sales/Order/Items/Renderer.php
+ path: app/code/core/Mage/Bundle/Block/Adminhtml/Sales/Order/Items/Renderer.php
-
message: "#^Parameter \\#4 \\$cond of method Mage_Eav_Model_Entity_Collection_Abstract\\:\\:joinTable\\(\\) expects array\\|null, string given\\.$#"
count: 1
- path: ../app/code/core/Mage/Bundle/Block/Catalog/Product/List/Partof.php
+ path: app/code/core/Mage/Bundle/Block/Catalog/Product/List/Partof.php
-
message: "#^Call to an undefined method Mage_Catalog_Model_Product_Type_Price\\:\\:getIsPricesCalculatedByIndex\\(\\)\\.$#"
count: 1
- path: ../app/code/core/Mage/Bundle/Block/Catalog/Product/Price.php
+ path: app/code/core/Mage/Bundle/Block/Catalog/Product/Price.php
-
message: "#^Parameter \\#2 \\$product of method Mage_Catalog_Model_Product_Type_Abstract\\:\\:setStoreFilter\\(\\) expects null, Mage_Catalog_Model_Product given\\.$#"
count: 1
- path: ../app/code/core/Mage/Bundle/Block/Catalog/Product/View/Type/Bundle.php
+ path: app/code/core/Mage/Bundle/Block/Catalog/Product/View/Type/Bundle.php
-
message: "#^Call to an undefined method Mage_Catalog_Model_Product_Type_Price\\:\\:getSelectionPreFinalPrice\\(\\)\\.$#"
count: 3
- path: ../app/code/core/Mage/Bundle/Block/Catalog/Product/View/Type/Bundle/Option.php
+ path: app/code/core/Mage/Bundle/Block/Catalog/Product/View/Type/Bundle/Option.php
-
message: "#^Call to function is_null\\(\\) with array\\|int\\|string will always evaluate to false\\.$#"
count: 1
- path: ../app/code/core/Mage/Bundle/Block/Catalog/Product/View/Type/Bundle/Option.php
+ path: app/code/core/Mage/Bundle/Block/Catalog/Product/View/Type/Bundle/Option.php
-
message: "#^Call to function is_null\\(\\) with bool will always evaluate to false\\.$#"
count: 1
- path: ../app/code/core/Mage/Bundle/Block/Catalog/Product/View/Type/Bundle/Option.php
+ path: app/code/core/Mage/Bundle/Block/Catalog/Product/View/Type/Bundle/Option.php
-
message: "#^Variable \\$_items might not be defined\\.$#"
count: 1
- path: ../app/code/core/Mage/Bundle/Block/Sales/Order/Items/Renderer.php
+ path: app/code/core/Mage/Bundle/Block/Sales/Order/Items/Renderer.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
+ path: app/code/core/Mage/Bundle/Helper/Catalog/Product/Configuration.php
-
message: "#^Call to an undefined method Mage_Catalog_Model_Product_Type_Price\\:\\:getSelectionFinalTotalPrice\\(\\)\\.$#"
count: 1
- path: ../app/code/core/Mage/Bundle/Helper/Catalog/Product/Configuration.php
+ path: app/code/core/Mage/Bundle/Helper/Catalog/Product/Configuration.php
-
message: "#^Ternary operator condition is always true\\.$#"
count: 1
- path: ../app/code/core/Mage/Bundle/Helper/Catalog/Product/Configuration.php
+ 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
+ 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
+ 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\\ of overridden property Mage_CatalogIndex_Model_Data_Simple\\:\\:\\$_haveChildren\\.$#"
count: 1
- path: ../app/code/core/Mage/Bundle/Model/CatalogIndex/Data/Bundle.php
+ 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\\\\.$#"
count: 1
- path: ../app/code/core/Mage/Bundle/Model/CatalogIndex/Data/Bundle.php
+ path: app/code/core/Mage/Bundle/Model/CatalogIndex/Data/Bundle.php
-
message: "#^Parameter \\#2 \\$product of method Mage_Catalog_Model_Product_Type_Abstract\\:\\:setStoreFilter\\(\\) expects null, Mage_Catalog_Model_Product given\\.$#"
count: 1
- path: ../app/code/core/Mage/Bundle/Model/Observer.php
+ path: app/code/core/Mage/Bundle/Model/Observer.php
-
message: "#^Negated boolean expression is always false\\.$#"
count: 1
- path: ../app/code/core/Mage/Bundle/Model/Option.php
+ path: app/code/core/Mage/Bundle/Model/Option.php
-
message: "#^Result of && is always false\\.$#"
count: 1
- path: ../app/code/core/Mage/Bundle/Model/Option.php
+ path: app/code/core/Mage/Bundle/Model/Option.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
+ path: app/code/core/Mage/Bundle/Model/Price/Index.php
-
message: "#^Call to function is_null\\(\\) with array will always evaluate to false\\.$#"
count: 1
- path: ../app/code/core/Mage/Bundle/Model/Product/Attribute/Source/Price/View.php
+ path: app/code/core/Mage/Bundle/Model/Product/Attribute/Source/Price/View.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
+ path: app/code/core/Mage/Bundle/Model/Product/Price.php
-
message: "#^Call to function is_null\\(\\) with float will always evaluate to false\\.$#"
count: 1
- path: ../app/code/core/Mage/Bundle/Model/Product/Price.php
+ path: app/code/core/Mage/Bundle/Model/Product/Price.php
-
message: "#^Else branch is unreachable because ternary operator condition is always true\\.$#"
count: 2
- path: ../app/code/core/Mage/Bundle/Model/Product/Price.php
+ path: app/code/core/Mage/Bundle/Model/Product/Price.php
-
message: "#^If condition is always true\\.$#"
count: 1
- path: ../app/code/core/Mage/Bundle/Model/Product/Price.php
+ 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
+ path: app/code/core/Mage/Bundle/Model/Product/Price.php
-
message: "#^Method Mage_Bundle_Model_Product_Price\\:\\:getPrice\\(\\) should return string but returns int\\.$#"
count: 1
- path: ../app/code/core/Mage/Bundle/Model/Product/Price.php
+ path: app/code/core/Mage/Bundle/Model/Product/Price.php
-
message: "#^Negated boolean expression is always false\\.$#"
count: 2
- path: ../app/code/core/Mage/Bundle/Model/Product/Price.php
+ path: app/code/core/Mage/Bundle/Model/Product/Price.php
-
message: "#^Offset 'option_id' does not exist on array\\{final_price\\: mixed\\}\\.$#"
count: 4
- path: ../app/code/core/Mage/Bundle/Model/Product/Price.php
+ path: app/code/core/Mage/Bundle/Model/Product/Price.php
-
message: "#^Parameter \\#1 \\$price of method Mage_Catalog_Model_Product\\:\\:setFinalPrice\\(\\) expects float, string given\\.$#"
count: 1
- path: ../app/code/core/Mage/Bundle/Model/Product/Price.php
+ path: app/code/core/Mage/Bundle/Model/Product/Price.php
-
message: "#^Parameter \\#2 \\$product of method Mage_Catalog_Model_Product_Type_Abstract\\:\\:setStoreFilter\\(\\) expects null, Mage_Catalog_Model_Product given\\.$#"
count: 1
- path: ../app/code/core/Mage/Bundle/Model/Product/Price.php
+ path: app/code/core/Mage/Bundle/Model/Product/Price.php
-
message: "#^Parameter \\#2 \\$qty of method Mage_Catalog_Model_Product_Type_Price\\:\\:_applyOptionsPrice\\(\\) expects int, float\\|null given\\.$#"
count: 1
- path: ../app/code/core/Mage/Bundle/Model/Product/Price.php
+ path: app/code/core/Mage/Bundle/Model/Product/Price.php
-
message: "#^Parameter \\#2 \\$selectionProduct of method Mage_Bundle_Model_Product_Price\\:\\:getSelectionFinalTotalPrice\\(\\) expects Mage_Catalog_Model_Product, Mage_Bundle_Model_Selection given\\.$#"
count: 1
- path: ../app/code/core/Mage/Bundle/Model/Product/Price.php
+ path: app/code/core/Mage/Bundle/Model/Product/Price.php
-
message: "#^Parameter \\#3 \\$bundleQty of method Mage_Bundle_Model_Product_Price\\:\\:getLowestPrice\\(\\) expects int, float given\\.$#"
count: 1
- path: ../app/code/core/Mage/Bundle/Model/Product/Price.php
+ path: app/code/core/Mage/Bundle/Model/Product/Price.php
-
message: "#^Parameter \\#4 \\$selectionQty of method Mage_Bundle_Model_Product_Price\\:\\:getSelectionFinalTotalPrice\\(\\) expects float, null given\\.$#"
count: 1
- path: ../app/code/core/Mage/Bundle/Model/Product/Price.php
+ path: app/code/core/Mage/Bundle/Model/Product/Price.php
-
message: "#^Return type \\(string\\) of method Mage_Bundle_Model_Product_Price\\:\\:getPrice\\(\\) should be compatible with return type \\(float\\) of method Mage_Catalog_Model_Product_Type_Price\\:\\:getPrice\\(\\)$#"
count: 1
- path: ../app/code/core/Mage/Bundle/Model/Product/Price.php
+ path: app/code/core/Mage/Bundle/Model/Product/Price.php
-
message: "#^Call to an undefined method Mage_Catalog_Model_Product_Type_Price\\:\\:getSelectionFinalTotalPrice\\(\\)\\.$#"
count: 2
- path: ../app/code/core/Mage/Bundle/Model/Product/Type.php
+ path: app/code/core/Mage/Bundle/Model/Product/Type.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
+ 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
+ path: app/code/core/Mage/Bundle/Model/Product/Type.php
-
message: "#^Parameter \\#1 \\$product \\(Mage_Catalog_Model_Product\\) of method Mage_Bundle_Model_Product_Type\\:\\:getForceChildItemQtyChanges\\(\\) should be compatible with parameter \\$product \\(null\\) of method Mage_Catalog_Model_Product_Type_Abstract\\:\\:getForceChildItemQtyChanges\\(\\)$#"
count: 1
- path: ../app/code/core/Mage/Bundle/Model/Product/Type.php
+ path: app/code/core/Mage/Bundle/Model/Product/Type.php
-
message: "#^Parameter \\#2 \\$product \\(Mage_Catalog_Model_Product\\) of method Mage_Bundle_Model_Product_Type\\:\\:prepareQuoteItemQty\\(\\) should be compatible with parameter \\$product \\(null\\) of method Mage_Catalog_Model_Product_Type_Abstract\\:\\:prepareQuoteItemQty\\(\\)$#"
count: 1
- path: ../app/code/core/Mage/Bundle/Model/Product/Type.php
+ path: app/code/core/Mage/Bundle/Model/Product/Type.php
-
message: "#^Parameter \\#2 \\$product of method Mage_Catalog_Model_Product_Type_Abstract\\:\\:setStoreFilter\\(\\) expects null, Mage_Catalog_Model_Product given\\.$#"
count: 4
- path: ../app/code/core/Mage/Bundle/Model/Product/Type.php
+ path: app/code/core/Mage/Bundle/Model/Product/Type.php
-
message: "#^Parameter \\#4 \\$product \\(Mage_Catalog_Model_Product\\) of method Mage_Bundle_Model_Product_Type\\:\\:updateQtyOption\\(\\) should be compatible with parameter \\$product \\(null\\) of method Mage_Catalog_Model_Product_Type_Abstract\\:\\:updateQtyOption\\(\\)$#"
count: 1
- path: ../app/code/core/Mage/Bundle/Model/Product/Type.php
+ 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
+ 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
+ path: app/code/core/Mage/Bundle/Model/Product/Type.php
-
message: "#^Parameter \\#1 \\$expression of class Zend_Db_Expr constructor expects string, int given\\.$#"
count: 1
- path: ../app/code/core/Mage/Bundle/Model/Resource/Indexer/Price.php
+ path: app/code/core/Mage/Bundle/Model/Resource/Indexer/Price.php
-
message: "#^Parameter \\#3 \\$false of method Varien_Db_Adapter_Pdo_Mysql\\:\\:getCheckSql\\(\\) expects string, int given\\.$#"
count: 1
- path: ../app/code/core/Mage/Bundle/Model/Resource/Indexer/Price.php
+ path: app/code/core/Mage/Bundle/Model/Resource/Indexer/Price.php
-
message: "#^Parameter \\#5 \\$condition of method Mage_Catalog_Model_Resource_Product_Indexer_Abstract\\:\\:_addAttributeToSelect\\(\\) expects Zend_Db_Expr\\|null, string given\\.$#"
count: 2
- path: ../app/code/core/Mage/Bundle/Model/Resource/Indexer/Price.php
+ path: app/code/core/Mage/Bundle/Model/Resource/Indexer/Price.php
-
message: "#^Parameter \\#5 \\$condition of method Mage_Catalog_Model_Resource_Product_Indexer_Abstract\\:\\:_addAttributeToSelect\\(\\) expects Zend_Db_Expr\\|null, string given\\.$#"
count: 1
- path: ../app/code/core/Mage/Bundle/Model/Resource/Indexer/Stock.php
+ path: app/code/core/Mage/Bundle/Model/Resource/Indexer/Stock.php
-
message: "#^Call to function is_null\\(\\) with array will always evaluate to false\\.$#"
count: 1
- path: ../app/code/core/Mage/Bundle/Model/Resource/Option/Collection.php
+ path: app/code/core/Mage/Bundle/Model/Resource/Option/Collection.php
-
message: "#^If condition is always true\\.$#"
count: 1
- path: ../app/code/core/Mage/Bundle/Model/Resource/Option/Collection.php
+ path: app/code/core/Mage/Bundle/Model/Resource/Option/Collection.php
-
message: "#^Parameter \\#1 \\$selection of method Mage_Bundle_Model_Option\\:\\:addSelection\\(\\) expects Mage_Bundle_Model_Selection, Mage_Catalog_Model_Product given\\.$#"
count: 1
- path: ../app/code/core/Mage/Bundle/Model/Resource/Option/Collection.php
+ path: app/code/core/Mage/Bundle/Model/Resource/Option/Collection.php
-
message: "#^Property Mage_Bundle_Model_Resource_Option_Collection\\:\\:\\$_itemIds \\(array\\) does not accept null\\.$#"
count: 1
- path: ../app/code/core/Mage/Bundle/Model/Resource/Option/Collection.php
+ path: app/code/core/Mage/Bundle/Model/Resource/Option/Collection.php
-
message: "#^Call to function is_null\\(\\) with array will always evaluate to false\\.$#"
count: 2
- path: ../app/code/core/Mage/Bundle/Model/Resource/Price/Index.php
+ path: app/code/core/Mage/Bundle/Model/Resource/Price/Index.php
-
message: "#^Negated boolean expression is always false\\.$#"
count: 1
- path: ../app/code/core/Mage/Bundle/Model/Resource/Price/Index.php
+ path: app/code/core/Mage/Bundle/Model/Resource/Price/Index.php
-
message: "#^Variable \\$basePrice might not be defined\\.$#"
count: 2
- path: ../app/code/core/Mage/Bundle/Model/Resource/Price/Index.php
+ 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
+ path: app/code/core/Mage/Bundle/Model/Resource/Price/Index.php
-
message: "#^Variable \\$priceCond might not be defined\\.$#"
count: 1
- path: ../app/code/core/Mage/Bundle/Model/Resource/Price/Index.php
+ path: app/code/core/Mage/Bundle/Model/Resource/Price/Index.php
-
message: "#^Variable \\$priceTypeCond might not be defined\\.$#"
count: 1
- path: ../app/code/core/Mage/Bundle/Model/Resource/Price/Index.php
+ path: app/code/core/Mage/Bundle/Model/Resource/Price/Index.php
-
message: "#^Variable \\$valueIdCond might not be defined\\.$#"
count: 1
- path: ../app/code/core/Mage/Bundle/Model/Resource/Price/Index.php
+ path: app/code/core/Mage/Bundle/Model/Resource/Price/Index.php
-
message: "#^Method Mage_Bundle_Model_Resource_Selection_Collection\\:\\:_initSelect\\(\\) should return \\$this\\(Mage_Bundle_Model_Resource_Selection_Collection\\) but return statement is missing\\.$#"
count: 1
- path: ../app/code/core/Mage/Bundle/Model/Resource/Selection/Collection.php
+ path: app/code/core/Mage/Bundle/Model/Resource/Selection/Collection.php
-
message: "#^Variable \\$_items might not be defined\\.$#"
count: 1
- path: ../app/code/core/Mage/Bundle/Model/Sales/Order/Pdf/Items/Abstract.php
+ path: app/code/core/Mage/Bundle/Model/Sales/Order/Pdf/Items/Abstract.php
-
message: "#^Parameter \\#1 \\$item of method Mage_Bundle_Model_Sales_Order_Pdf_Items_Abstract\\:\\:canShowPriceInfo\\(\\) expects Mage_Sales_Model_Order_Item, Mage_Sales_Model_Order_Invoice_Item given\\.$#"
count: 1
- path: ../app/code/core/Mage/Bundle/Model/Sales/Order/Pdf/Items/Invoice.php
+ path: app/code/core/Mage/Bundle/Model/Sales/Order/Pdf/Items/Invoice.php
-
message: "#^Parameter \\#1 \\$item of method Mage_Bundle_Model_Sales_Order_Pdf_Items_Abstract\\:\\:getValueHtml\\(\\) expects Mage_Sales_Model_Order_Item, Mage_Sales_Model_Order_Invoice_Item given\\.$#"
count: 1
- path: ../app/code/core/Mage/Bundle/Model/Sales/Order/Pdf/Items/Invoice.php
+ path: app/code/core/Mage/Bundle/Model/Sales/Order/Pdf/Items/Invoice.php
-
message: "#^Call to an undefined method Mage_Captcha_Model_Interface\\:\\:isRequired\\(\\)\\.$#"
count: 1
- path: ../app/code/core/Mage/Captcha/Block/Captcha/Zend.php
+ path: app/code/core/Mage/Captcha/Block/Captcha/Zend.php
-
message: "#^Call to an undefined method Mage_Captcha_Model_Interface\\:\\:isRequired\\(\\)\\.$#"
count: 9
- path: ../app/code/core/Mage/Captcha/Model/Observer.php
+ path: app/code/core/Mage/Captcha/Model/Observer.php
-
message: "#^Call to an undefined method Mage_Captcha_Model_Interface\\:\\:logAttempt\\(\\)\\.$#"
count: 3
- path: ../app/code/core/Mage/Captcha/Model/Observer.php
+ path: app/code/core/Mage/Captcha/Model/Observer.php
-
message: "#^Negated boolean expression is always true\\.$#"
count: 9
- path: ../app/code/core/Mage/Captcha/Model/Observer.php
+ path: app/code/core/Mage/Captcha/Model/Observer.php
-
message: "#^Result of method Mage_Captcha_Model_Interface\\:\\:isCorrect\\(\\) \\(void\\) is used\\.$#"
count: 9
- path: ../app/code/core/Mage/Captcha/Model/Observer.php
+ path: app/code/core/Mage/Captcha/Model/Observer.php
-
message: "#^Property Mage_Captcha_Model_Zend\\:\\:\\$_helper \\(Mage_Captcha_Helper_Data\\) in empty\\(\\) is not falsy\\.$#"
count: 1
- path: ../app/code/core/Mage/Captcha/Model/Zend.php
+ path: app/code/core/Mage/Captcha/Model/Zend.php
-
message: "#^Property Zend_Captcha_Word\\:\\:\\$_word \\(string\\) does not accept null\\.$#"
count: 1
- path: ../app/code/core/Mage/Captcha/Model/Zend.php
+ path: app/code/core/Mage/Captcha/Model/Zend.php
-
message: "#^Return type \\(Mage_Customer_Model_Session\\) of method Mage_Captcha_Model_Zend\\:\\:getSession\\(\\) should be compatible with return type \\(Zend_Session_Namespace\\) of method Zend_Captcha_Word\\:\\:getSession\\(\\)$#"
count: 1
- path: ../app/code/core/Mage/Captcha/Model/Zend.php
+ path: app/code/core/Mage/Captcha/Model/Zend.php
-
message: "#^Call to an undefined method Mage_Captcha_Model_Interface\\:\\:getImgSrc\\(\\)\\.$#"
count: 1
- path: ../app/code/core/Mage/Captcha/controllers/Adminhtml/RefreshController.php
+ path: app/code/core/Mage/Captcha/controllers/Adminhtml/RefreshController.php
-
message: "#^Parameter \\#3 \\$value of method Mage_Core_Controller_Varien_Action\\:\\:setFlag\\(\\) expects int\\|string, true given\\.$#"
count: 1
- path: ../app/code/core/Mage/Captcha/controllers/Adminhtml/RefreshController.php
+ path: app/code/core/Mage/Captcha/controllers/Adminhtml/RefreshController.php
-
message: "#^Call to an undefined method Mage_Captcha_Model_Interface\\:\\:getImgSrc\\(\\)\\.$#"
count: 1
- path: ../app/code/core/Mage/Captcha/controllers/RefreshController.php
+ path: app/code/core/Mage/Captcha/controllers/RefreshController.php
-
message: "#^Parameter \\#3 \\$value of method Mage_Core_Controller_Varien_Action\\:\\:setFlag\\(\\) expects int\\|string, true given\\.$#"
count: 1
- path: ../app/code/core/Mage/Captcha/controllers/RefreshController.php
+ path: app/code/core/Mage/Captcha/controllers/RefreshController.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
+ path: app/code/core/Mage/Catalog/Block/Breadcrumbs.php
-
message: "#^Left side of && is always true\\.$#"
count: 1
- path: ../app/code/core/Mage/Catalog/Block/Category/View.php
+ path: app/code/core/Mage/Catalog/Block/Category/View.php
-
message: "#^If condition is always true\\.$#"
count: 1
- path: ../app/code/core/Mage/Catalog/Block/Layer/View.php
+ path: app/code/core/Mage/Catalog/Block/Layer/View.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
+ path: app/code/core/Mage/Catalog/Block/Navigation.php
-
message: "#^Call to function is_null\\(\\) with Mage_Catalog_Model_Category will always evaluate to false\\.$#"
count: 1
- path: ../app/code/core/Mage/Catalog/Block/Navigation.php
+ 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
+ path: app/code/core/Mage/Catalog/Block/Navigation.php
-
message: "#^Comparison operation \"\\>\" between int\\<2, 7\\> and 0 is always true\\.$#"
count: 1
- path: ../app/code/core/Mage/Catalog/Block/Navigation.php
+ path: app/code/core/Mage/Catalog/Block/Navigation.php
-
message: "#^If condition is always true\\.$#"
count: 1
- path: ../app/code/core/Mage/Catalog/Block/Navigation.php
+ 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
+ path: app/code/core/Mage/Catalog/Block/Navigation.php
-
message: "#^Unreachable statement \\- code above always terminates\\.$#"
count: 1
- path: ../app/code/core/Mage/Catalog/Block/Navigation.php
+ path: app/code/core/Mage/Catalog/Block/Navigation.php
-
message: "#^Variable \\$htmlChildren in empty\\(\\) always exists and is always falsy\\.$#"
count: 1
- path: ../app/code/core/Mage/Catalog/Block/Navigation.php
+ path: app/code/core/Mage/Catalog/Block/Navigation.php
-
message: "#^If condition is always true\\.$#"
count: 2
- path: ../app/code/core/Mage/Catalog/Block/Product.php
+ 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
+ path: app/code/core/Mage/Catalog/Block/Product.php
-
message: "#^Left side of && is always true\\.$#"
count: 1
- path: ../app/code/core/Mage/Catalog/Block/Product/Abstract.php
+ path: app/code/core/Mage/Catalog/Block/Product/Abstract.php
-
message: "#^Parameter \\#2 \\$templateType of method Mage_Review_Block_Helper\\:\\:getSummaryHtml\\(\\) expects string, bool given\\.$#"
count: 1
- path: ../app/code/core/Mage/Catalog/Block/Product/Abstract.php
+ path: app/code/core/Mage/Catalog/Block/Product/Abstract.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
+ path: app/code/core/Mage/Catalog/Block/Product/Abstract.php
-
message: "#^Call to function is_null\\(\\) with Mage_Catalog_Model_Resource_Product_Compare_Item_Collection will always evaluate to false\\.$#"
count: 1
- path: ../app/code/core/Mage/Catalog/Block/Product/Compare/List.php
+ path: app/code/core/Mage/Catalog/Block/Product/Compare/List.php
-
message: "#^Call to function is_null\\(\\) with array will always evaluate to false\\.$#"
count: 1
- path: ../app/code/core/Mage/Catalog/Block/Product/Compare/List.php
+ path: app/code/core/Mage/Catalog/Block/Product/Compare/List.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
+ path: app/code/core/Mage/Catalog/Block/Product/Compare/List.php
-
message: "#^Call to function is_null\\(\\) with Mage_Eav_Model_Entity_Collection_Abstract will always evaluate to false\\.$#"
count: 1
- path: ../app/code/core/Mage/Catalog/Block/Product/List.php
+ path: app/code/core/Mage/Catalog/Block/Product/List.php
-
message: "#^Method Mage_Catalog_Block_Product_List\\:\\:_getProductCollection\\(\\) should return Mage_Catalog_Model_Resource_Product_Collection but returns Mage_Eav_Model_Entity_Collection_Abstract\\.$#"
count: 1
- path: ../app/code/core/Mage/Catalog/Block/Product/List.php
+ path: app/code/core/Mage/Catalog/Block/Product/List.php
-
message: "#^Property Mage_Catalog_Block_Product_List_Crosssell\\:\\:\\$_itemCollection \\(Mage_Catalog_Model_Resource_Eav_Mysql4_Product_Link_Product_Collection\\) does not accept Mage_Catalog_Model_Resource_Product_Link_Product_Collection\\.$#"
count: 1
- path: ../app/code/core/Mage/Catalog/Block/Product/List/Crosssell.php
+ path: app/code/core/Mage/Catalog/Block/Product/List/Crosssell.php
-
message: "#^Call to function is_null\\(\\) with Mage_Eav_Model_Entity_Collection_Abstract will always evaluate to false\\.$#"
count: 1
- path: ../app/code/core/Mage/Catalog/Block/Product/List/Promotion.php
+ path: app/code/core/Mage/Catalog/Block/Product/List/Promotion.php
-
message: "#^Parameter \\#2 \\$condition of method Mage_Catalog_Model_Resource_Product_Collection\\:\\:addAttributeToFilter\\(\\) expects array\\|string\\|null, int given\\.$#"
count: 1
- path: ../app/code/core/Mage/Catalog/Block/Product/List/Promotion.php
+ path: app/code/core/Mage/Catalog/Block/Product/List/Promotion.php
-
message: "#^Call to function is_null\\(\\) with Mage_Eav_Model_Entity_Collection_Abstract will always evaluate to false\\.$#"
count: 1
- path: ../app/code/core/Mage/Catalog/Block/Product/List/Random.php
+ path: app/code/core/Mage/Catalog/Block/Product/List/Random.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
+ path: app/code/core/Mage/Catalog/Block/Product/List/Toolbar.php
-
message: "#^Parameter \\#1 \\$array of function array_keys expects array, string given\\.$#"
count: 1
- path: ../app/code/core/Mage/Catalog/Block/Product/List/Toolbar.php
+ 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
+ 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: 4
- path: ../app/code/core/Mage/Catalog/Block/Product/List/Toolbar.php
+ 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
+ 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
+ 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
+ path: app/code/core/Mage/Catalog/Block/Product/List/Toolbar.php
-
message: "#^Right side of && is always true\\.$#"
count: 1
- path: ../app/code/core/Mage/Catalog/Block/Product/List/Upsell.php
+ path: app/code/core/Mage/Catalog/Block/Product/List/Upsell.php
-
message: "#^Property Mage_Catalog_Block_Product_New\\:\\:\\$_productsCount \\(null\\) does not accept int\\.$#"
count: 2
- path: ../app/code/core/Mage/Catalog/Block/Product/New.php
+ path: app/code/core/Mage/Catalog/Block/Product/New.php
-
message: "#^Negated boolean expression is always false\\.$#"
count: 1
- path: ../app/code/core/Mage/Catalog/Block/Product/Price.php
+ path: app/code/core/Mage/Catalog/Block/Product/Price.php
-
message: "#^Call to function is_null\\(\\) with int\\|Mage_Core_Model_Store will always evaluate to false\\.$#"
count: 1
- path: ../app/code/core/Mage/Catalog/Block/Product/View/Abstract.php
+ path: app/code/core/Mage/Catalog/Block/Product/View/Abstract.php
-
message: "#^Parameter \\#1 \\$product of method Mage_Catalog_Model_Product_Type_Abstract\\:\\:getStoreFilter\\(\\) expects null, Mage_Catalog_Model_Product given\\.$#"
count: 1
- path: ../app/code/core/Mage/Catalog/Block/Product/View/Abstract.php
+ path: app/code/core/Mage/Catalog/Block/Product/View/Abstract.php
-
message: "#^Parameter \\#2 \\$product of method Mage_Catalog_Model_Product_Type_Abstract\\:\\:setStoreFilter\\(\\) expects null, Mage_Catalog_Model_Product given\\.$#"
count: 1
- path: ../app/code/core/Mage/Catalog/Block/Product/View/Abstract.php
+ path: app/code/core/Mage/Catalog/Block/Product/View/Abstract.php
-
message: "#^Parameter \\#1 \\$price of method Mage_Core_Model_Store\\:\\:convertPrice\\(\\) expects float, string given\\.$#"
count: 1
- path: ../app/code/core/Mage/Catalog/Block/Product/View/Attributes.php
+ path: app/code/core/Mage/Catalog/Block/Product/View/Attributes.php
-
message: "#^Negated boolean expression is always false\\.$#"
count: 1
- path: ../app/code/core/Mage/Catalog/Block/Product/View/Options.php
+ path: app/code/core/Mage/Catalog/Block/Product/View/Options.php
-
message: "#^If condition is always true\\.$#"
count: 1
- path: ../app/code/core/Mage/Catalog/Block/Product/View/Options/Abstract.php
+ path: app/code/core/Mage/Catalog/Block/Product/View/Options/Abstract.php
-
message: "#^Unreachable statement \\- code above always terminates\\.$#"
count: 1
- path: ../app/code/core/Mage/Catalog/Block/Product/View/Options/Abstract.php
+ path: app/code/core/Mage/Catalog/Block/Product/View/Options/Abstract.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
+ 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
+ path: app/code/core/Mage/Catalog/Block/Product/View/Type/Configurable.php
-
message: "#^Method Mage_Catalog_Block_Product_View_Type_Configurable\\:\\:_getHelper\\(\\) should return Mage_Catalog_Helper_Product_Type_Composite but returns Mage_Core_Helper_Abstract\\.$#"
count: 1
- path: ../app/code/core/Mage/Catalog/Block/Product/View/Type/Configurable.php
+ path: app/code/core/Mage/Catalog/Block/Product/View/Type/Configurable.php
-
message: "#^Parameter \\#1 \\$page of method Varien_Data_Collection\\:\\:setCurPage\\(\\) expects int, null given\\.$#"
count: 1
- path: ../app/code/core/Mage/Catalog/Block/Product/Widget/Html/Pager.php
+ path: app/code/core/Mage/Catalog/Block/Product/Widget/Html/Pager.php
-
message: "#^Parameter \\#1 \\$size of method Varien_Data_Collection\\:\\:setPageSize\\(\\) expects int, null given\\.$#"
count: 1
- path: ../app/code/core/Mage/Catalog/Block/Product/Widget/Html/Pager.php
+ path: app/code/core/Mage/Catalog/Block/Product/Widget/Html/Pager.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
+ 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
+ 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
+ path: app/code/core/Mage/Catalog/Block/Product/Widget/Html/Pager.php
-
message: "#^Negated boolean expression is always false\\.$#"
count: 1
- path: ../app/code/core/Mage/Catalog/Block/Product/Widget/New.php
+ path: app/code/core/Mage/Catalog/Block/Product/Widget/New.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
+ path: app/code/core/Mage/Catalog/Block/Product/Widget/New.php
-
message: "#^Parameter \\#1 \\$varName of method Mage_Page_Block_Html_Pager\\:\\:setShowPerPage\\(\\) expects string, false given\\.$#"
count: 1
- path: ../app/code/core/Mage/Catalog/Block/Seo/Sitemap/Abstract.php
+ path: app/code/core/Mage/Catalog/Block/Seo/Sitemap/Abstract.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
+ 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
+ path: app/code/core/Mage/Catalog/Block/Seo/Sitemap/Product.php
-
message: "#^Parameter \\#1 \\$varName of method Mage_Page_Block_Html_Pager\\:\\:setShowPerPage\\(\\) expects string, false given\\.$#"
count: 1
- path: ../app/code/core/Mage/Catalog/Block/Seo/Sitemap/Tree/Category.php
+ path: app/code/core/Mage/Catalog/Block/Seo/Sitemap/Tree/Category.php
-
message: "#^Variable \\$finish might not be defined\\.$#"
count: 1
- path: ../app/code/core/Mage/Catalog/Block/Seo/Sitemap/Tree/Pager.php
+ 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
+ path: app/code/core/Mage/Catalog/Block/Seo/Sitemap/Tree/Pager.php
-
message: "#^Parameter \\#1 \\$entityId of method Mage_Catalog_Model_Resource_Abstract\\:\\:getAttributeRawValue\\(\\) expects int, string given\\.$#"
count: 1
- path: ../app/code/core/Mage/Catalog/Block/Widget/Link.php
+ path: app/code/core/Mage/Catalog/Block/Widget/Link.php
-
message: "#^Parameter \\#1 \\$productId of method Mage_Catalog_Helper_Product\\:\\:getFullProductUrl\\(\\) expects int, string given\\.$#"
count: 1
- path: ../app/code/core/Mage/Catalog/Block/Widget/Link.php
+ path: app/code/core/Mage/Catalog/Block/Widget/Link.php
-
message: "#^Parameter \\#2 \\$categoryId of method Mage_Catalog_Helper_Product\\:\\:getFullProductUrl\\(\\) expects int\\|null, string\\|null given\\.$#"
count: 1
- path: ../app/code/core/Mage/Catalog/Block/Widget/Link.php
+ path: app/code/core/Mage/Catalog/Block/Widget/Link.php
-
message: "#^Variable \\$store might not be defined\\.$#"
count: 1
- path: ../app/code/core/Mage/Catalog/Block/Widget/Link.php
+ path: app/code/core/Mage/Catalog/Block/Widget/Link.php
-
message: "#^Parameter \\#4 \\$cond of method Mage_Eav_Model_Entity_Collection_Abstract\\:\\:joinTable\\(\\) expects array\\|null, string given\\.$#"
count: 1
- path: ../app/code/core/Mage/Catalog/Helper/Category/Url/Rewrite.php
+ path: app/code/core/Mage/Catalog/Helper/Category/Url/Rewrite.php
-
message: "#^Parameter \\#1 \\$categoryId of method Mage_Catalog_Helper_Data\\:\\:_isCategoryLink\\(\\) expects int, string given\\.$#"
count: 1
- path: ../app/code/core/Mage/Catalog/Helper/Data.php
+ path: app/code/core/Mage/Catalog/Helper/Data.php
-
message: "#^Parameter \\#2 \\$visibility of method Mage_Catalog_Helper_Data\\:\\:canApplyMsrp\\(\\) expects int\\|null, string given\\.$#"
count: 3
- path: ../app/code/core/Mage/Catalog/Helper/Data.php
+ path: app/code/core/Mage/Catalog/Helper/Data.php
-
message: "#^Property Mage_Catalog_Helper_Data\\:\\:\\$_categoryPath \\(string\\) does not accept array\\\\>\\.$#"
count: 1
- path: ../app/code/core/Mage/Catalog/Helper/Data.php
+ path: app/code/core/Mage/Catalog/Helper/Data.php
-
message: "#^Call to function is_null\\(\\) with bool will always evaluate to false\\.$#"
count: 2
- path: ../app/code/core/Mage/Catalog/Helper/Flat/Abstract.php
+ path: app/code/core/Mage/Catalog/Helper/Flat/Abstract.php
-
message: "#^Property Mage_Catalog_Helper_Image\\:\\:\\$_angle \\(int\\) does not accept null\\.$#"
count: 1
- path: ../app/code/core/Mage/Catalog/Helper/Image.php
+ path: app/code/core/Mage/Catalog/Helper/Image.php
-
message: "#^Property Mage_Catalog_Helper_Image\\:\\:\\$_imageFile \\(string\\) does not accept null\\.$#"
count: 1
- path: ../app/code/core/Mage/Catalog/Helper/Image.php
+ path: app/code/core/Mage/Catalog/Helper/Image.php
-
message: "#^Property Mage_Catalog_Helper_Image\\:\\:\\$_model \\(Mage_Catalog_Model_Product_Image\\) does not accept null\\.$#"
count: 1
- path: ../app/code/core/Mage/Catalog/Helper/Image.php
+ path: app/code/core/Mage/Catalog/Helper/Image.php
-
message: "#^Property Mage_Catalog_Helper_Image\\:\\:\\$_product \\(Mage_Catalog_Model_Product\\) does not accept null\\.$#"
count: 1
- path: ../app/code/core/Mage/Catalog/Helper/Image.php
+ path: app/code/core/Mage/Catalog/Helper/Image.php
-
message: "#^Property Mage_Catalog_Helper_Image\\:\\:\\$_watermark \\(string\\) does not accept null\\.$#"
count: 1
- path: ../app/code/core/Mage/Catalog/Helper/Image.php
+ path: app/code/core/Mage/Catalog/Helper/Image.php
-
message: "#^Property Mage_Catalog_Helper_Image\\:\\:\\$_watermarkImageOpacity \\(int\\) does not accept null\\.$#"
count: 1
- path: ../app/code/core/Mage/Catalog/Helper/Image.php
+ path: app/code/core/Mage/Catalog/Helper/Image.php
-
message: "#^Property Mage_Catalog_Helper_Image\\:\\:\\$_watermarkPosition \\(string\\) does not accept null\\.$#"
count: 1
- path: ../app/code/core/Mage/Catalog/Helper/Image.php
+ path: app/code/core/Mage/Catalog/Helper/Image.php
-
message: "#^Property Mage_Catalog_Helper_Image\\:\\:\\$_watermarkSize \\(string\\) does not accept null\\.$#"
count: 1
- path: ../app/code/core/Mage/Catalog/Helper/Image.php
+ path: app/code/core/Mage/Catalog/Helper/Image.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
+ 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
+ path: app/code/core/Mage/Catalog/Helper/Product.php
-
message: "#^Negated boolean expression is always false\\.$#"
count: 1
- path: ../app/code/core/Mage/Catalog/Helper/Product/Compare.php
+ path: app/code/core/Mage/Catalog/Helper/Product/Compare.php
-
message: "#^Property Mage_Catalog_Helper_Product_Compare\\:\\:\\$_itemCollection \\(Mage_Catalog_Model_Resource_Eav_Mysql4_Product_Compare_Item_Collection\\) does not accept Mage_Catalog_Model_Resource_Product_Compare_Item_Collection\\.$#"
count: 1
- path: ../app/code/core/Mage/Catalog/Helper/Product/Compare.php
+ path: app/code/core/Mage/Catalog/Helper/Product/Compare.php
-
message: "#^If condition is always true\\.$#"
count: 2
- path: ../app/code/core/Mage/Catalog/Helper/Product/Configuration.php
+ path: app/code/core/Mage/Catalog/Helper/Product/Configuration.php
-
message: "#^Left side of && is always true\\.$#"
count: 1
- path: ../app/code/core/Mage/Catalog/Helper/Product/Configuration.php
+ path: app/code/core/Mage/Catalog/Helper/Product/Configuration.php
-
message: "#^Parameter \\#1 \\$optionId of method Mage_Catalog_Model_Product\\:\\:getOptionById\\(\\) expects int, string given\\.$#"
count: 1
- path: ../app/code/core/Mage/Catalog/Helper/Product/Configuration.php
+ path: app/code/core/Mage/Catalog/Helper/Product/Configuration.php
-
message: "#^Unreachable statement \\- code above always terminates\\.$#"
count: 2
- path: ../app/code/core/Mage/Catalog/Helper/Product/Configuration.php
+ path: app/code/core/Mage/Catalog/Helper/Product/Configuration.php
-
message: "#^Call to an undefined method Mage_Core_Model_Abstract\\:\\:loadSelf\\(\\)\\.$#"
count: 1
- path: ../app/code/core/Mage/Catalog/Helper/Product/Flat.php
+ path: app/code/core/Mage/Catalog/Helper/Product/Flat.php
-
message: "#^Call to function is_null\\(\\) with Mage_Catalog_Model_Product_Flat_Flag will always evaluate to false\\.$#"
count: 1
- path: ../app/code/core/Mage/Catalog/Helper/Product/Flat.php
+ path: app/code/core/Mage/Catalog/Helper/Product/Flat.php
-
message: "#^Property Mage_Catalog_Helper_Product_Flat\\:\\:\\$_forceFlatStatusOld \\(bool\\) in isset\\(\\) is not nullable\\.$#"
count: 1
- path: ../app/code/core/Mage/Catalog/Helper/Product/Flat.php
+ path: app/code/core/Mage/Catalog/Helper/Product/Flat.php
-
message: "#^Argument of an invalid type float supplied for foreach, only iterables are supported\\.$#"
count: 1
- path: ../app/code/core/Mage/Catalog/Helper/Product/Type/Composite.php
+ path: app/code/core/Mage/Catalog/Helper/Product/Type/Composite.php
-
message: "#^Parameter \\#3 \\$subject of function str_replace expects array\\|string, float given\\.$#"
count: 1
- path: ../app/code/core/Mage/Catalog/Helper/Product/Type/Composite.php
+ path: app/code/core/Mage/Catalog/Helper/Product/Type/Composite.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
+ 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
+ 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
+ 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
+ path: app/code/core/Mage/Catalog/Model/Api/Resource.php
-
message: "#^Call to function is_null\\(\\) with int\\|string will always evaluate to false\\.$#"
count: 1
- path: ../app/code/core/Mage/Catalog/Model/Api/Resource.php
+ path: app/code/core/Mage/Catalog/Model/Api/Resource.php
-
message: "#^Variable \\$storeId might not be defined\\.$#"
count: 2
- path: ../app/code/core/Mage/Catalog/Model/Api/Resource.php
+ path: app/code/core/Mage/Catalog/Model/Api/Resource.php
-
message: "#^Argument of an invalid type float supplied for foreach, only iterables are supported\\.$#"
count: 1
- path: ../app/code/core/Mage/Catalog/Model/Api2/Product/Rest.php
+ path: app/code/core/Mage/Catalog/Model/Api2/Product/Rest.php
-
message: "#^Call to function is_null\\(\\) with Mage_Catalog_Model_Product will always evaluate to false\\.$#"
count: 1
- path: ../app/code/core/Mage/Catalog/Model/Api2/Product/Rest.php
+ path: app/code/core/Mage/Catalog/Model/Api2/Product/Rest.php
-
message: "#^If condition is always false\\.$#"
count: 2
- path: ../app/code/core/Mage/Catalog/Model/Api2/Product/Rest.php
+ path: app/code/core/Mage/Catalog/Model/Api2/Product/Rest.php
-
message: "#^Parameter \\#1 \\$shippingAddress of method Mage_Tax_Model_Calculation\\:\\:getRateRequest\\(\\) expects Mage_Sales_Model_Quote_Address\\|false\\|null, Mage_Customer_Model_Address\\|null given\\.$#"
count: 1
- path: ../app/code/core/Mage/Catalog/Model/Api2/Product/Rest.php
+ path: app/code/core/Mage/Catalog/Model/Api2/Product/Rest.php
-
message: "#^Parameter \\#1 \\$store of method Mage_Tax_Helper_Data\\:\\:isCrossBorderTradeEnabled\\(\\) expects int\\|null, Mage_Core_Model_Store given\\.$#"
count: 1
- path: ../app/code/core/Mage/Catalog/Model/Api2/Product/Rest.php
+ path: app/code/core/Mage/Catalog/Model/Api2/Product/Rest.php
-
message: "#^Parameter \\#2 \\$billingAddress of method Mage_Tax_Model_Calculation\\:\\:getRateRequest\\(\\) expects Mage_Sales_Model_Quote_Address\\|false\\|null, Mage_Customer_Model_Address\\|null given\\.$#"
count: 1
- path: ../app/code/core/Mage/Catalog/Model/Api2/Product/Rest.php
+ path: app/code/core/Mage/Catalog/Model/Api2/Product/Rest.php
-
message: "#^Parameter \\#4 \\$store of method Mage_Tax_Model_Calculation\\:\\:getRateRequest\\(\\) expects int\\|null, Mage_Core_Model_Store given\\.$#"
count: 1
- path: ../app/code/core/Mage/Catalog/Model/Api2/Product/Rest.php
+ path: app/code/core/Mage/Catalog/Model/Api2/Product/Rest.php
-
message: "#^Argument of an invalid type string supplied for foreach, only iterables are supported\\.$#"
count: 1
- path: ../app/code/core/Mage/Catalog/Model/Api2/Product/Rest/Admin/V1.php
+ path: app/code/core/Mage/Catalog/Model/Api2/Product/Rest/Admin/V1.php
-
message: "#^Parameter \\#2 \\$fields of method Mage_Catalog_Model_Api2_Product_Rest_Admin_V1\\:\\:_filterConfigValueUsed\\(\\) expects string, array\\ given\\.$#"
count: 2
- path: ../app/code/core/Mage/Catalog/Model/Api2/Product/Rest/Admin/V1.php
+ path: app/code/core/Mage/Catalog/Model/Api2/Product/Rest/Admin/V1.php
-
message: "#^Call to function is_null\\(\\) with Mage_Customer_Model_Customer will always evaluate to false\\.$#"
count: 1
- path: ../app/code/core/Mage/Catalog/Model/Api2/Product/Rest/Customer/V1.php
+ path: app/code/core/Mage/Catalog/Model/Api2/Product/Rest/Customer/V1.php
-
message: "#^Return type \\(int\\) of method Mage_Catalog_Model_Api2_Product_Rest_Customer_V1\\:\\:_getCustomerGroupId\\(\\) should be compatible with return type \\(null\\) of method Mage_Catalog_Model_Api2_Product_Rest\\:\\:_getCustomerGroupId\\(\\)$#"
count: 1
- path: ../app/code/core/Mage/Catalog/Model/Api2/Product/Rest/Customer/V1.php
+ path: app/code/core/Mage/Catalog/Model/Api2/Product/Rest/Customer/V1.php
-
message: "#^Return type \\(int\\) of method Mage_Catalog_Model_Api2_Product_Rest_Guest_V1\\:\\:_getCustomerGroupId\\(\\) should be compatible with return type \\(null\\) of method Mage_Catalog_Model_Api2_Product_Rest\\:\\:_getCustomerGroupId\\(\\)$#"
count: 1
- path: ../app/code/core/Mage/Catalog/Model/Api2/Product/Rest/Guest/V1.php
+ path: app/code/core/Mage/Catalog/Model/Api2/Product/Rest/Guest/V1.php
-
message: "#^Call to an undefined method Mage_Core_Model_Abstract\\:\\:toOptionArray\\(\\)\\.$#"
count: 1
- path: ../app/code/core/Mage/Catalog/Model/Api2/Product/Validator/Product.php
+ path: app/code/core/Mage/Catalog/Model/Api2/Product/Validator/Product.php
-
message: "#^Call to an undefined method Mage_Eav_Model_Entity_Attribute_Backend_Abstract\\:\\:formatDate\\(\\)\\.$#"
count: 1
- path: ../app/code/core/Mage/Catalog/Model/Api2/Product/Validator/Product.php
+ path: app/code/core/Mage/Catalog/Model/Api2/Product/Validator/Product.php
-
message: "#^Call to function is_null\\(\\) with int\\|string will always evaluate to false\\.$#"
count: 2
- path: ../app/code/core/Mage/Catalog/Model/Api2/Product/Validator/Product.php
+ path: app/code/core/Mage/Catalog/Model/Api2/Product/Validator/Product.php
-
message: "#^If condition is always true\\.$#"
count: 1
- path: ../app/code/core/Mage/Catalog/Model/Api2/Product/Validator/Product.php
+ path: app/code/core/Mage/Catalog/Model/Api2/Product/Validator/Product.php
-
message: "#^Call to an undefined method Varien_Object\\:\\:formatUrlKey\\(\\)\\.$#"
count: 1
- path: ../app/code/core/Mage/Catalog/Model/Attribute/Backend/Urlkey/Abstract.php
+ path: app/code/core/Mage/Catalog/Model/Attribute/Backend/Urlkey/Abstract.php
-
message: "#^Call to function is_null\\(\\) with Mage_Catalog_Model_Resource_Category_Tree will always evaluate to false\\.$#"
count: 1
- path: ../app/code/core/Mage/Catalog/Model/Category.php
+ path: app/code/core/Mage/Catalog/Model/Category.php
-
message: "#^If condition is always true\\.$#"
count: 1
- path: ../app/code/core/Mage/Catalog/Model/Category.php
+ path: app/code/core/Mage/Catalog/Model/Category.php
-
message: "#^Left side of && is always true\\.$#"
count: 1
- path: ../app/code/core/Mage/Catalog/Model/Category.php
+ path: app/code/core/Mage/Catalog/Model/Category.php
-
message: "#^Method Mage_Catalog_Model_Category\\:\\:getDefaultAttributeSetId\\(\\) should return int but returns string\\|null\\.$#"
count: 1
- path: ../app/code/core/Mage/Catalog/Model/Category.php
+ path: app/code/core/Mage/Catalog/Model/Category.php
-
message: "#^Method Mage_Catalog_Model_Category\\:\\:getParentDesignCategory\\(\\) should return \\$this\\(Mage_Catalog_Model_Category\\) but returns Mage_Catalog_Model_Category\\.$#"
count: 1
- path: ../app/code/core/Mage/Catalog/Model/Category.php
+ path: app/code/core/Mage/Catalog/Model/Category.php
-
message: "#^Negated boolean expression is always false\\.$#"
count: 2
- path: ../app/code/core/Mage/Catalog/Model/Category.php
+ path: app/code/core/Mage/Catalog/Model/Category.php
-
message: "#^Cannot call method getRootCategoryId\\(\\) on int\\|string\\.$#"
count: 1
- path: ../app/code/core/Mage/Catalog/Model/Category/Api.php
+ path: app/code/core/Mage/Catalog/Model/Category/Api.php
-
message: "#^Left side of && is always true\\.$#"
count: 1
- path: ../app/code/core/Mage/Catalog/Model/Category/Api.php
+ path: app/code/core/Mage/Catalog/Model/Category/Api.php
-
message: "#^Parameter \\#1 \\$array of function array_pop is passed by reference, so it expects variables only\\.$#"
count: 1
- path: ../app/code/core/Mage/Catalog/Model/Category/Api.php
+ path: app/code/core/Mage/Catalog/Model/Category/Api.php
-
message: "#^Parameter \\#2 \\$store of method Mage_Catalog_Helper_Product\\:\\:getProduct\\(\\) expects int, null given\\.$#"
count: 1
- path: ../app/code/core/Mage/Catalog/Model/Category/Api.php
+ path: app/code/core/Mage/Catalog/Model/Category/Api.php
-
message: "#^Method Mage_Eav_Model_Entity_Attribute_Source_Interface\\:\\:getAllOptions\\(\\) invoked with 1 parameter, 0 required\\.$#"
count: 1
- path: ../app/code/core/Mage/Catalog/Model/Category/Attribute/Api.php
+ path: app/code/core/Mage/Catalog/Model/Category/Attribute/Api.php
-
message: "#^Cannot access offset 'file' on bool\\|void\\.$#"
count: 1
- path: ../app/code/core/Mage/Catalog/Model/Category/Attribute/Backend/Image.php
+ path: app/code/core/Mage/Catalog/Model/Category/Attribute/Backend/Image.php
-
message: "#^Call to function is_null\\(\\) with array will always evaluate to false\\.$#"
count: 1
- path: ../app/code/core/Mage/Catalog/Model/Category/Attribute/Source/Sortby.php
+ path: app/code/core/Mage/Catalog/Model/Category/Attribute/Source/Sortby.php
-
message: "#^Property Mage_Catalog_Model_Category_Url\\:\\:\\$_url \\(Mage_Core_Model_Url\\) does not accept bool\\|Mage_Core_Model_Abstract\\.$#"
count: 1
- path: ../app/code/core/Mage/Catalog/Model/Category/Url.php
+ path: app/code/core/Mage/Catalog/Model/Category/Url.php
-
message: "#^Call to an undefined method Mage_Catalog_Model_Config\\:\\:_init\\(\\)\\.$#"
count: 1
- path: ../app/code/core/Mage/Catalog/Model/Config.php
+ path: app/code/core/Mage/Catalog/Model/Config.php
-
message: "#^Call to function is_null\\(\\) with array will always evaluate to false\\.$#"
count: 3
- path: ../app/code/core/Mage/Catalog/Model/Config.php
+ path: app/code/core/Mage/Catalog/Model/Config.php
-
message: "#^Method Mage_Catalog_Model_Config\\:\\:getAttributeSetId\\(\\) invoked with 1 parameter, 2 required\\.$#"
count: 2
- path: ../app/code/core/Mage/Catalog/Model/Config.php
+ path: app/code/core/Mage/Catalog/Model/Config.php
-
message: "#^Negated boolean expression is always false\\.$#"
count: 1
- path: ../app/code/core/Mage/Catalog/Model/Convert/Adapter/Catalog.php
+ path: app/code/core/Mage/Catalog/Model/Convert/Adapter/Catalog.php
-
message: "#^Call to an undefined method Mage_Eav_Model_Entity_Abstract\\:\\:getStoreId\\(\\)\\.$#"
count: 1
- path: ../app/code/core/Mage/Catalog/Model/Convert/Adapter/Product.php
+ path: app/code/core/Mage/Catalog/Model/Convert/Adapter/Product.php
-
message: "#^Call to an undefined method Mage_Eav_Model_Entity_Collection\\:\\:setStoreId\\(\\)\\.$#"
count: 1
- path: ../app/code/core/Mage/Catalog/Model/Convert/Adapter/Product.php
+ path: app/code/core/Mage/Catalog/Model/Convert/Adapter/Product.php
-
message: "#^Call to function is_null\\(\\) with Mage_Catalog_Model_Product will always evaluate to false\\.$#"
count: 1
- path: ../app/code/core/Mage/Catalog/Model/Convert/Adapter/Product.php
+ path: app/code/core/Mage/Catalog/Model/Convert/Adapter/Product.php
-
message: "#^Call to function is_null\\(\\) with array will always evaluate to false\\.$#"
count: 2
- path: ../app/code/core/Mage/Catalog/Model/Convert/Adapter/Product.php
+ path: app/code/core/Mage/Catalog/Model/Convert/Adapter/Product.php
-
message: "#^Method Mage_Eav_Model_Entity_Attribute_Source_Interface\\:\\:getAllOptions\\(\\) invoked with 1 parameter, 0 required\\.$#"
count: 1
- path: ../app/code/core/Mage/Catalog/Model/Convert/Adapter/Product.php
+ path: app/code/core/Mage/Catalog/Model/Convert/Adapter/Product.php
-
message: "#^Parameter \\#1 \\$joinAttr of method Mage_Eav_Model_Convert_Adapter_Entity\\:\\:setJoinAttr\\(\\) expects string, array\\ given\\.$#"
count: 1
- path: ../app/code/core/Mage/Catalog/Model/Convert/Adapter/Product.php
+ path: app/code/core/Mage/Catalog/Model/Convert/Adapter/Product.php
-
message: "#^Property Mage_Catalog_Model_Convert_Adapter_Product\\:\\:\\$_galleryBackendModel \\(Mage_Catalog_Model_Product_Attribute_Backend_Media\\) does not accept Mage_Eav_Model_Entity_Attribute_Backend_Abstract\\.$#"
count: 1
- path: ../app/code/core/Mage/Catalog/Model/Convert/Adapter/Product.php
+ path: app/code/core/Mage/Catalog/Model/Convert/Adapter/Product.php
-
message: "#^Property Mage_Catalog_Model_Convert_Adapter_Product\\:\\:\\$_productModel \\(Mage_Catalog_Model_Product\\) does not accept string\\.$#"
count: 1
- path: ../app/code/core/Mage/Catalog/Model/Convert/Adapter/Product.php
+ path: app/code/core/Mage/Catalog/Model/Convert/Adapter/Product.php
-
message: "#^Return type \\(Mage_Catalog_Model_Resource_Product_Collection\\) of method Mage_Catalog_Model_Convert_Adapter_Product\\:\\:_getCollectionForLoad\\(\\) should be compatible with return type \\(Mage_Eav_Model_Entity_Collection\\) of method Mage_Eav_Model_Convert_Adapter_Entity\\:\\:_getCollectionForLoad\\(\\)$#"
count: 1
- path: ../app/code/core/Mage/Catalog/Model/Convert/Adapter/Product.php
+ path: app/code/core/Mage/Catalog/Model/Convert/Adapter/Product.php
-
message: "#^Call to an undefined method Mage_Eav_Model_Entity_Abstract\\:\\:setStore\\(\\)\\.$#"
count: 1
- path: ../app/code/core/Mage/Catalog/Model/Convert/Parser/Product.php
+ path: app/code/core/Mage/Catalog/Model/Convert/Parser/Product.php
-
message: "#^Call to function is_array\\(\\) with bool\\|string will always evaluate to false\\.$#"
count: 1
- path: ../app/code/core/Mage/Catalog/Model/Convert/Parser/Product.php
+ path: app/code/core/Mage/Catalog/Model/Convert/Parser/Product.php
-
message: "#^Call to function is_null\\(\\) with array will always evaluate to false\\.$#"
count: 1
- path: ../app/code/core/Mage/Catalog/Model/Convert/Parser/Product.php
+ path: app/code/core/Mage/Catalog/Model/Convert/Parser/Product.php
-
message: "#^Negated boolean expression is always false\\.$#"
count: 1
- path: ../app/code/core/Mage/Catalog/Model/Convert/Parser/Product.php
+ path: app/code/core/Mage/Catalog/Model/Convert/Parser/Product.php
-
message: "#^Left side of && is always true\\.$#"
count: 4
- path: ../app/code/core/Mage/Catalog/Model/Design.php
+ path: app/code/core/Mage/Catalog/Model/Design.php
-
message: "#^Method Mage_Catalog_Model_Category\\:\\:getParentDesignCategory\\(\\) invoked with 1 parameter, 0 required\\.$#"
count: 1
- path: ../app/code/core/Mage/Catalog/Model/Design.php
+ path: app/code/core/Mage/Catalog/Model/Design.php
-
message: "#^Method Mage_Catalog_Model_Design\\:\\:applyCustomDesign\\(\\) should return false\\|null but return statement is missing\\.$#"
count: 1
- path: ../app/code/core/Mage/Catalog/Model/Design.php
+ path: app/code/core/Mage/Catalog/Model/Design.php
-
message: "#^Parameter \\#1 \\$store of method Mage_Core_Model_Locale\\:\\:isStoreDateInInterval\\(\\) expects int\\|Mage_Core_Model_Store\\|string, null given\\.$#"
count: 2
- path: ../app/code/core/Mage/Catalog/Model/Design.php
+ path: app/code/core/Mage/Catalog/Model/Design.php
-
message: "#^Variable \\$_category might not be defined\\.$#"
count: 1
- path: ../app/code/core/Mage/Catalog/Model/Design.php
+ path: app/code/core/Mage/Catalog/Model/Design.php
-
message: "#^Property Mage_Catalog_Model_Entity_Product_Attribute_Design_Options_Container\\:\\:\\$_configNodePath \\(Mage_Core_Model_Config_Element\\) does not accept string\\.$#"
count: 1
- path: ../app/code/core/Mage/Catalog/Model/Entity/Product/Attribute/Design/Options/Container.php
+ path: app/code/core/Mage/Catalog/Model/Entity/Product/Attribute/Design/Options/Container.php
-
message: "#^Method Mage_Catalog_Model_Factory\\:\\:getCategoryUrlInstance\\(\\) should return Mage_Catalog_Model_Category_Url but returns bool\\|Mage_Core_Model_Abstract\\.$#"
count: 1
- path: ../app/code/core/Mage/Catalog/Model/Factory.php
+ path: app/code/core/Mage/Catalog/Model/Factory.php
-
message: "#^Method Mage_Catalog_Model_Factory\\:\\:getCategoryUrlRewriteHelper\\(\\) should return Mage_Catalog_Helper_Category_Url_Rewrite_Interface but returns Mage_Core_Helper_Abstract\\.$#"
count: 1
- path: ../app/code/core/Mage/Catalog/Model/Factory.php
+ path: app/code/core/Mage/Catalog/Model/Factory.php
-
message: "#^Method Mage_Catalog_Model_Factory\\:\\:getProductUrlInstance\\(\\) should return Mage_Catalog_Model_Product_Url but returns bool\\|Mage_Core_Model_Abstract\\.$#"
count: 1
- path: ../app/code/core/Mage/Catalog/Model/Factory.php
+ path: app/code/core/Mage/Catalog/Model/Factory.php
-
message: "#^Method Mage_Catalog_Model_Factory\\:\\:getProductUrlRewriteHelper\\(\\) should return Mage_Catalog_Helper_Product_Url_Rewrite_Interface but returns Mage_Core_Helper_Abstract\\.$#"
count: 1
- path: ../app/code/core/Mage/Catalog/Model/Factory.php
+ path: app/code/core/Mage/Catalog/Model/Factory.php
-
message: "#^Parameter \\#1 \\$setId of method Mage_Eav_Model_Resource_Entity_Attribute_Collection\\:\\:setAttributeSetFilter\\(\\) expects int, array given\\.$#"
count: 1
- path: ../app/code/core/Mage/Catalog/Model/Layer.php
+ path: app/code/core/Mage/Catalog/Model/Layer.php
-
message: "#^Call to function is_null\\(\\) with array will always evaluate to false\\.$#"
count: 1
- path: ../app/code/core/Mage/Catalog/Model/Layer/Filter/Abstract.php
+ path: app/code/core/Mage/Catalog/Model/Layer/Filter/Abstract.php
-
message: "#^Call to function is_null\\(\\) with Mage_Catalog_Model_Resource_Layer_Filter_Attribute will always evaluate to false\\.$#"
count: 1
- path: ../app/code/core/Mage/Catalog/Model/Layer/Filter/Attribute.php
+ path: app/code/core/Mage/Catalog/Model/Layer/Filter/Attribute.php
-
message: "#^Comparison operation \"\\=\\=\" between Mage_Catalog_Model_Resource_Eav_Attribute and 1 results in an error\\.$#"
count: 1
- path: ../app/code/core/Mage/Catalog/Model/Layer/Filter/Attribute.php
+ path: app/code/core/Mage/Catalog/Model/Layer/Filter/Attribute.php
-
message: "#^Parameter \\#2 \\$filterBlock \\(Varien_Object\\) of method Mage_Catalog_Model_Layer_Filter_Attribute\\:\\:apply\\(\\) should be compatible with parameter \\$filterBlock \\(null\\) of method Mage_Catalog_Model_Layer_Filter_Abstract\\:\\:apply\\(\\)$#"
count: 1
- path: ../app/code/core/Mage/Catalog/Model/Layer/Filter/Attribute.php
+ path: app/code/core/Mage/Catalog/Model/Layer/Filter/Attribute.php
-
message: "#^Call to function is_null\\(\\) with int will always evaluate to false\\.$#"
count: 1
- path: ../app/code/core/Mage/Catalog/Model/Layer/Filter/Category.php
+ path: app/code/core/Mage/Catalog/Model/Layer/Filter/Category.php
-
message: "#^If condition is always true\\.$#"
count: 1
- path: ../app/code/core/Mage/Catalog/Model/Layer/Filter/Category.php
+ path: app/code/core/Mage/Catalog/Model/Layer/Filter/Category.php
-
message: "#^Argument of an invalid type int supplied for foreach, only iterables are supported\\.$#"
count: 1
- path: ../app/code/core/Mage/Catalog/Model/Layer/Filter/Decimal.php
+ path: app/code/core/Mage/Catalog/Model/Layer/Filter/Decimal.php
-
message: "#^Call to function is_null\\(\\) with Mage_Catalog_Model_Resource_Layer_Filter_Decimal will always evaluate to false\\.$#"
count: 1
- path: ../app/code/core/Mage/Catalog/Model/Layer/Filter/Decimal.php
+ path: app/code/core/Mage/Catalog/Model/Layer/Filter/Decimal.php
-
message: "#^Parameter \\#1 \\$range of method Mage_Catalog_Model_Layer_Filter_Decimal\\:\\:_renderItemLabel\\(\\) expects int, string given\\.$#"
count: 1
- path: ../app/code/core/Mage/Catalog/Model/Layer/Filter/Decimal.php
+ path: app/code/core/Mage/Catalog/Model/Layer/Filter/Decimal.php
-
message: "#^Parameter \\#1 \\$string of function strlen expects string, float given\\.$#"
count: 1
- path: ../app/code/core/Mage/Catalog/Model/Layer/Filter/Decimal.php
+ path: app/code/core/Mage/Catalog/Model/Layer/Filter/Decimal.php
-
message: "#^Parameter \\#1 \\$value of function count expects array\\|Countable, int given\\.$#"
count: 1
- path: ../app/code/core/Mage/Catalog/Model/Layer/Filter/Decimal.php
+ path: app/code/core/Mage/Catalog/Model/Layer/Filter/Decimal.php
-
message: "#^Parameter \\#2 \\$filterBlock \\(Mage_Catalog_Block_Layer_Filter_Decimal\\) of method Mage_Catalog_Model_Layer_Filter_Decimal\\:\\:apply\\(\\) should be compatible with parameter \\$filterBlock \\(null\\) of method Mage_Catalog_Model_Layer_Filter_Abstract\\:\\:apply\\(\\)$#"
count: 1
- path: ../app/code/core/Mage/Catalog/Model/Layer/Filter/Decimal.php
+ path: app/code/core/Mage/Catalog/Model/Layer/Filter/Decimal.php
-
message: "#^Parameter \\#2 \\$filterBlock of method Mage_Catalog_Model_Layer_Filter_Abstract\\:\\:apply\\(\\) expects null, Mage_Catalog_Block_Layer_Filter_Decimal given\\.$#"
count: 1
- path: ../app/code/core/Mage/Catalog/Model/Layer/Filter/Decimal.php
+ path: app/code/core/Mage/Catalog/Model/Layer/Filter/Decimal.php
-
message: "#^Parameter \\#2 \\$range of method Mage_Catalog_Model_Resource_Layer_Filter_Decimal\\:\\:applyFilterToCollection\\(\\) expects float, string given\\.$#"
count: 1
- path: ../app/code/core/Mage/Catalog/Model/Layer/Filter/Decimal.php
+ path: app/code/core/Mage/Catalog/Model/Layer/Filter/Decimal.php
-
message: "#^Parameter \\#2 \\$value of method Mage_Catalog_Model_Layer_Filter_Decimal\\:\\:_renderItemLabel\\(\\) expects float, string given\\.$#"
count: 1
- path: ../app/code/core/Mage/Catalog/Model/Layer/Filter/Decimal.php
+ path: app/code/core/Mage/Catalog/Model/Layer/Filter/Decimal.php
-
message: "#^Parameter \\#3 \\$index of method Mage_Catalog_Model_Resource_Layer_Filter_Decimal\\:\\:applyFilterToCollection\\(\\) expects int, string given\\.$#"
count: 1
- path: ../app/code/core/Mage/Catalog/Model/Layer/Filter/Decimal.php
+ path: app/code/core/Mage/Catalog/Model/Layer/Filter/Decimal.php
-
message: "#^Argument of an invalid type int\\\\|int\\<1, max\\> supplied for foreach, only iterables are supported\\.$#"
count: 1
- path: ../app/code/core/Mage/Catalog/Model/Layer/Filter/Price.php
+ path: app/code/core/Mage/Catalog/Model/Layer/Filter/Price.php
-
message: "#^Call to function is_null\\(\\) with Mage_Catalog_Model_Resource_Layer_Filter_Price will always evaluate to false\\.$#"
count: 1
- path: ../app/code/core/Mage/Catalog/Model/Layer/Filter/Price.php
+ path: app/code/core/Mage/Catalog/Model/Layer/Filter/Price.php
-
message: "#^Parameter \\#1 \\$array of function array_keys expects array, int\\\\|int\\<1, max\\> given\\.$#"
count: 1
- path: ../app/code/core/Mage/Catalog/Model/Layer/Filter/Price.php
+ path: app/code/core/Mage/Catalog/Model/Layer/Filter/Price.php
-
message: "#^Parameter \\#1 \\$string of function strlen expects string, float given\\.$#"
count: 1
- path: ../app/code/core/Mage/Catalog/Model/Layer/Filter/Price.php
+ path: app/code/core/Mage/Catalog/Model/Layer/Filter/Price.php
-
message: "#^Parameter \\#1 \\$value of function count expects array\\|Countable, int given\\.$#"
count: 1
- path: ../app/code/core/Mage/Catalog/Model/Layer/Filter/Price.php
+ path: app/code/core/Mage/Catalog/Model/Layer/Filter/Price.php
-
message: "#^Parameter \\#3 \\$lowerPrice of method Mage_Catalog_Model_Layer_Filter_Price\\:\\:loadPreviousPrices\\(\\) expects int\\|null, float\\|null given\\.$#"
count: 1
- path: ../app/code/core/Mage/Catalog/Model/Layer/Filter/Price/Algorithm.php
+ path: app/code/core/Mage/Catalog/Model/Layer/Filter/Price/Algorithm.php
-
message: "#^Parameter \\#3 \\$upperPrice of method Mage_Catalog_Model_Layer_Filter_Price\\:\\:loadNextPrices\\(\\) expects int\\|null, float\\|null given\\.$#"
count: 1
- path: ../app/code/core/Mage/Catalog/Model/Layer/Filter/Price/Algorithm.php
+ path: app/code/core/Mage/Catalog/Model/Layer/Filter/Price/Algorithm.php
-
message: "#^Parameter \\#4 \\$upperPrice of method Mage_Catalog_Model_Layer_Filter_Price\\:\\:loadPrices\\(\\) expects int\\|null, float\\|null given\\.$#"
count: 1
- path: ../app/code/core/Mage/Catalog/Model/Layer/Filter/Price/Algorithm.php
+ path: app/code/core/Mage/Catalog/Model/Layer/Filter/Price/Algorithm.php
-
message: "#^Method Mage_Catalog_Model_Resource_Category_Flat\\:\\:move\\(\\) invoked with 3 parameters, 1 required\\.$#"
count: 1
- path: ../app/code/core/Mage/Catalog/Model/Observer.php
+ path: app/code/core/Mage/Catalog/Model/Observer.php
-
message: "#^Negated boolean expression is always false\\.$#"
count: 2
- path: ../app/code/core/Mage/Catalog/Model/Observer.php
+ path: app/code/core/Mage/Catalog/Model/Observer.php
-
message: "#^Call to an undefined method Mage_Eav_Model_Entity_Attribute_Backend_Abstract\\:\\:addImage\\(\\)\\.$#"
count: 1
- path: ../app/code/core/Mage/Catalog/Model/Product.php
+ path: app/code/core/Mage/Catalog/Model/Product.php
-
message: "#^Method Mage_Catalog_Model_Product\\:\\:canBeShowInCategory\\(\\) should return bool but returns string\\.$#"
count: 1
- path: ../app/code/core/Mage/Catalog/Model/Product.php
+ path: app/code/core/Mage/Catalog/Model/Product.php
-
message: "#^Method Mage_Catalog_Model_Product\\:\\:duplicate\\(\\) should return \\$this\\(Mage_Catalog_Model_Product\\) but returns Mage_Catalog_Model_Product\\.$#"
count: 1
- path: ../app/code/core/Mage/Catalog/Model/Product.php
+ path: app/code/core/Mage/Catalog/Model/Product.php
-
message: "#^Method Mage_Catalog_Model_Product\\:\\:getDefaultAttributeSetId\\(\\) should return int but returns string\\|null\\.$#"
count: 1
- path: ../app/code/core/Mage/Catalog/Model/Product.php
+ path: app/code/core/Mage/Catalog/Model/Product.php
-
message: "#^Negated boolean expression is always false\\.$#"
count: 1
- path: ../app/code/core/Mage/Catalog/Model/Product.php
+ path: app/code/core/Mage/Catalog/Model/Product.php
-
message: "#^Parameter \\#1 \\$tags of method Mage_Core_Model_App\\:\\:cleanCache\\(\\) expects array, string given\\.$#"
count: 1
- path: ../app/code/core/Mage/Catalog/Model/Product.php
+ path: app/code/core/Mage/Catalog/Model/Product.php
-
message: "#^Property Mage_Catalog_Model_Product\\:\\:\\$_typeInstance \\(Mage_Catalog_Model_Product_Type_Abstract\\) does not accept Mage_Core_Model_Abstract\\|false\\.$#"
count: 1
- path: ../app/code/core/Mage/Catalog/Model/Product.php
+ path: app/code/core/Mage/Catalog/Model/Product.php
-
message: "#^Call to function is_null\\(\\) with int\\|string will always evaluate to false\\.$#"
count: 1
- path: ../app/code/core/Mage/Catalog/Model/Product/Api.php
+ path: app/code/core/Mage/Catalog/Model/Product/Api.php
-
message: "#^Parameter \\#1 \\$productType of method Mage_Catalog_Model_Product_Api\\:\\:_checkProductTypeExists\\(\\) expects int, string given\\.$#"
count: 1
- path: ../app/code/core/Mage/Catalog/Model/Product/Api.php
+ path: app/code/core/Mage/Catalog/Model/Product/Api.php
-
message: "#^Strict comparison using \\=\\=\\= between \\*NEVER\\* and true will always evaluate to false\\.$#"
count: 2
- path: ../app/code/core/Mage/Catalog/Model/Product/Api.php
+ path: app/code/core/Mage/Catalog/Model/Product/Api.php
-
message: "#^Cannot access property \\$additional_attributes on array\\.$#"
count: 5
- path: ../app/code/core/Mage/Catalog/Model/Product/Api/V2.php
+ path: app/code/core/Mage/Catalog/Model/Product/Api/V2.php
-
message: "#^Cannot access property \\$categories on array\\.$#"
count: 2
- path: ../app/code/core/Mage/Catalog/Model/Product/Api/V2.php
+ path: app/code/core/Mage/Catalog/Model/Product/Api/V2.php
-
message: "#^Cannot access property \\$stock_data on array\\.$#"
count: 1
- path: ../app/code/core/Mage/Catalog/Model/Product/Api/V2.php
+ path: app/code/core/Mage/Catalog/Model/Product/Api/V2.php
-
message: "#^Cannot access property \\$tier_price on array\\.$#"
count: 1
- path: ../app/code/core/Mage/Catalog/Model/Product/Api/V2.php
+ path: app/code/core/Mage/Catalog/Model/Product/Api/V2.php
-
message: "#^Cannot access property \\$website_ids on array\\.$#"
count: 2
- path: ../app/code/core/Mage/Catalog/Model/Product/Api/V2.php
+ path: app/code/core/Mage/Catalog/Model/Product/Api/V2.php
-
message: "#^Cannot access property \\$websites on array\\.$#"
count: 3
- path: ../app/code/core/Mage/Catalog/Model/Product/Api/V2.php
+ path: app/code/core/Mage/Catalog/Model/Product/Api/V2.php
-
message: "#^Parameter \\#1 \\$object_or_class of function property_exists expects object\\|string, array given\\.$#"
count: 7
- path: ../app/code/core/Mage/Catalog/Model/Product/Api/V2.php
+ path: app/code/core/Mage/Catalog/Model/Product/Api/V2.php
-
message: "#^Parameter \\#1 \\$productType of method Mage_Catalog_Model_Product_Api\\:\\:_checkProductTypeExists\\(\\) expects int, string given\\.$#"
count: 1
- path: ../app/code/core/Mage/Catalog/Model/Product/Api/V2.php
+ path: app/code/core/Mage/Catalog/Model/Product/Api/V2.php
-
message: "#^Parameter \\#2 \\$attributes of method Mage_Catalog_Model_Api_Resource\\:\\:_isAllowedAttribute\\(\\) expects array\\|null, stdClass\\|null given\\.$#"
count: 1
- path: ../app/code/core/Mage/Catalog/Model/Product/Api/V2.php
+ path: app/code/core/Mage/Catalog/Model/Product/Api/V2.php
-
message: "#^Parameter \\#2 \\$productData of method Mage_Catalog_Model_Product_Api_V2\\:\\:update\\(\\) expects array, stdClass given\\.$#"
count: 1
- path: ../app/code/core/Mage/Catalog/Model/Product/Api/V2.php
+ path: app/code/core/Mage/Catalog/Model/Product/Api/V2.php
-
message: "#^Parameter \\#3 \\$attributes \\(stdClass\\) of method Mage_Catalog_Model_Product_Api_V2\\:\\:info\\(\\) should be compatible with parameter \\$attributes \\(array\\) of method Mage_Catalog_Model_Product_Api\\:\\:info\\(\\)$#"
count: 1
- path: ../app/code/core/Mage/Catalog/Model/Product/Api/V2.php
+ path: app/code/core/Mage/Catalog/Model/Product/Api/V2.php
-
message: "#^Strict comparison using \\=\\=\\= between \\*NEVER\\* and true will always evaluate to false\\.$#"
count: 2
- path: ../app/code/core/Mage/Catalog/Model/Product/Api/V2.php
+ path: app/code/core/Mage/Catalog/Model/Product/Api/V2.php
-
message: "#^Call to function is_null\\(\\) with array will always evaluate to false\\.$#"
count: 1
- path: ../app/code/core/Mage/Catalog/Model/Product/Attribute/Backend/Groupprice/Abstract.php
+ path: app/code/core/Mage/Catalog/Model/Product/Attribute/Backend/Groupprice/Abstract.php
-
message: "#^Cannot call method getBackend\\(\\) on bool\\|Mage_Catalog_Model_Resource_Attribute\\.$#"
count: 11
- path: ../app/code/core/Mage/Catalog/Model/Product/Attribute/Media/Api.php
+ path: app/code/core/Mage/Catalog/Model/Product/Attribute/Media/Api.php
-
message: "#^Variable \\$file might not be defined\\.$#"
count: 1
- path: ../app/code/core/Mage/Catalog/Model/Product/Attribute/Media/Api.php
+ path: app/code/core/Mage/Catalog/Model/Product/Attribute/Media/Api.php
-
message: "#^Parameter \\#1 \\$data \\(stdClass\\) of method Mage_Catalog_Model_Product_Attribute_Media_Api_V2\\:\\:_prepareImageData\\(\\) should be compatible with parameter \\$data \\(array\\) of method Mage_Catalog_Model_Product_Attribute_Media_Api\\:\\:_prepareImageData\\(\\)$#"
count: 1
- path: ../app/code/core/Mage/Catalog/Model/Product/Attribute/Media/Api/V2.php
+ path: app/code/core/Mage/Catalog/Model/Product/Attribute/Media/Api/V2.php
-
message: "#^Parameter \\#1 \\$skeletonId of method Mage_Eav_Model_Entity_Attribute_Set\\:\\:initFromSkeleton\\(\\) expects int, string given\\.$#"
count: 1
- path: ../app/code/core/Mage/Catalog/Model/Product/Attribute/Set/Api.php
+ path: app/code/core/Mage/Catalog/Model/Product/Attribute/Set/Api.php
-
message: "#^Strict comparison using \\=\\=\\= between \\*NEVER\\* and true will always evaluate to false\\.$#"
count: 1
- path: ../app/code/core/Mage/Catalog/Model/Product/Attribute/Tierprice/Api.php
+ path: app/code/core/Mage/Catalog/Model/Product/Attribute/Tierprice/Api.php
-
message: "#^Method Mage_Catalog_Model_Resource_Product_Compare_Item\\:\\:clean\\(\\) invoked with 1 parameter, 0 required\\.$#"
count: 1
- path: ../app/code/core/Mage/Catalog/Model/Product/Compare/Item.php
+ path: app/code/core/Mage/Catalog/Model/Product/Compare/Item.php
-
message: "#^Call to an undefined method Mage_Catalog_Model_Resource_Product_Flat_Indexer\\:\\:prepareFlatTables\\(\\)\\.$#"
count: 1
- path: ../app/code/core/Mage/Catalog/Model/Product/Flat/Indexer.php
+ path: app/code/core/Mage/Catalog/Model/Product/Flat/Indexer.php
-
message: "#^Binary operation \"\\*\" between string and 1024 results in an error\\.$#"
count: 3
- path: ../app/code/core/Mage/Catalog/Model/Product/Image.php
+ path: app/code/core/Mage/Catalog/Model/Product/Image.php
-
message: "#^Call to function is_null\\(\\) with int will always evaluate to false\\.$#"
count: 2
- path: ../app/code/core/Mage/Catalog/Model/Product/Image.php
+ path: app/code/core/Mage/Catalog/Model/Product/Image.php
-
message: "#^Negated boolean expression is always false\\.$#"
count: 1
- path: ../app/code/core/Mage/Catalog/Model/Product/Image.php
+ path: app/code/core/Mage/Catalog/Model/Product/Image.php
-
message: "#^Parameter \\#1 \\$height of method Mage_Catalog_Model_Product_Image\\:\\:setHeight\\(\\) expects int, string given\\.$#"
count: 1
- path: ../app/code/core/Mage/Catalog/Model/Product/Image.php
+ path: app/code/core/Mage/Catalog/Model/Product/Image.php
-
message: "#^Parameter \\#1 \\$heigth of method Varien_Image\\:\\:setWatermarkHeigth\\(\\) expects int, string given\\.$#"
count: 1
- path: ../app/code/core/Mage/Catalog/Model/Product/Image.php
+ path: app/code/core/Mage/Catalog/Model/Product/Image.php
-
message: "#^Parameter \\#1 \\$size of method Mage_Catalog_Model_Product_Image\\:\\:setWatermarkSize\\(\\) expects array, string given\\.$#"
count: 1
- path: ../app/code/core/Mage/Catalog/Model/Product/Image.php
+ path: app/code/core/Mage/Catalog/Model/Product/Image.php
-
message: "#^Parameter \\#1 \\$width of method Mage_Catalog_Model_Product_Image\\:\\:setWidth\\(\\) expects int, string given\\.$#"
count: 1
- path: ../app/code/core/Mage/Catalog/Model/Product/Image.php
+ path: app/code/core/Mage/Catalog/Model/Product/Image.php
-
message: "#^Result of && is always false\\.$#"
count: 1
- path: ../app/code/core/Mage/Catalog/Model/Product/Image.php
+ path: app/code/core/Mage/Catalog/Model/Product/Image.php
-
message: "#^Cannot call method isIndexable\\(\\) on Mage_Eav_Model_Entity_Attribute_Abstract\\|false\\.$#"
count: 1
- path: ../app/code/core/Mage/Catalog/Model/Product/Indexer/Eav.php
+ path: app/code/core/Mage/Catalog/Model/Product/Indexer/Eav.php
-
message: "#^Parameter \\#1 \\$type of method Mage_Catalog_Model_Product_Link\\:\\:getAttributes\\(\\) expects null, int given\\.$#"
count: 1
- path: ../app/code/core/Mage/Catalog/Model/Product/Link/Api.php
+ path: app/code/core/Mage/Catalog/Model/Product/Link/Api.php
-
message: "#^Parameter \\#2 \\$store of method Mage_Catalog_Helper_Product\\:\\:getProduct\\(\\) expects int, null given\\.$#"
count: 1
- path: ../app/code/core/Mage/Catalog/Model/Product/Link/Api.php
+ path: app/code/core/Mage/Catalog/Model/Product/Link/Api.php
-
message: "#^Parameter \\#5 \\$identifierType \\(null\\) of method Mage_Catalog_Model_Product_Link_Api_V2\\:\\:assign\\(\\) should be compatible with parameter \\$identifierType \\(string\\) of method Mage_Catalog_Model_Product_Link_Api\\:\\:assign\\(\\)$#"
count: 1
- path: ../app/code/core/Mage/Catalog/Model/Product/Link/Api/V2.php
+ path: app/code/core/Mage/Catalog/Model/Product/Link/Api/V2.php
-
message: "#^Parameter \\#5 \\$identifierType \\(null\\) of method Mage_Catalog_Model_Product_Link_Api_V2\\:\\:update\\(\\) should be compatible with parameter \\$identifierType \\(string\\) of method Mage_Catalog_Model_Product_Link_Api\\:\\:update\\(\\)$#"
count: 1
- path: ../app/code/core/Mage/Catalog/Model/Product/Link/Api/V2.php
+ path: app/code/core/Mage/Catalog/Model/Product/Link/Api/V2.php
-
message: "#^Method Mage_Catalog_Model_Product_Option\\:\\:getValuesCollection\\(\\) should return Mage_Catalog_Model_Resource_Eav_Mysql4_Product_Option_Value_Collection but returns Mage_Catalog_Model_Resource_Product_Option_Value_Collection\\.$#"
count: 1
- path: ../app/code/core/Mage/Catalog/Model/Product/Option.php
+ path: app/code/core/Mage/Catalog/Model/Product/Option.php
-
message: "#^Method Mage_Catalog_Model_Product_Option\\:\\:groupFactory\\(\\) should return Mage_Catalog_Model_Product_Option_Type_Default but returns Mage_Core_Model_Abstract\\|false\\.$#"
count: 1
- path: ../app/code/core/Mage/Catalog/Model/Product/Option.php
+ path: app/code/core/Mage/Catalog/Model/Product/Option.php
-
message: "#^Negated boolean expression is always false\\.$#"
count: 1
- path: ../app/code/core/Mage/Catalog/Model/Product/Option.php
+ path: app/code/core/Mage/Catalog/Model/Product/Option.php
-
message: "#^Parameter \\#1 \\$optionId of method Mage_Catalog_Model_Product\\:\\:getOptionById\\(\\) expects int, string given\\.$#"
count: 1
- path: ../app/code/core/Mage/Catalog/Model/Product/Option/Api.php
+ path: app/code/core/Mage/Catalog/Model/Product/Option/Api.php
-
message: "#^Parameter \\#1 \\$option_id of method Mage_Catalog_Model_Product_Option\\:\\:deletePrices\\(\\) expects int, string given\\.$#"
count: 1
- path: ../app/code/core/Mage/Catalog/Model/Product/Option/Api.php
+ path: app/code/core/Mage/Catalog/Model/Product/Option/Api.php
-
message: "#^Parameter \\#1 \\$option_id of method Mage_Catalog_Model_Product_Option\\:\\:deleteTitles\\(\\) expects int, string given\\.$#"
count: 1
- path: ../app/code/core/Mage/Catalog/Model/Product/Option/Api.php
+ path: app/code/core/Mage/Catalog/Model/Product/Option/Api.php
-
message: "#^Parameter \\#1 \\$option_id of method Mage_Catalog_Model_Product_Option_Value\\:\\:deleteValue\\(\\) expects int, string given\\.$#"
count: 1
- path: ../app/code/core/Mage/Catalog/Model/Product/Option/Api.php
+ path: app/code/core/Mage/Catalog/Model/Product/Option/Api.php
-
message: "#^Parameter \\#1 \\$optionId of method Mage_Catalog_Model_Product\\:\\:getOptionById\\(\\) expects int, string given\\.$#"
count: 1
- path: ../app/code/core/Mage/Catalog/Model/Product/Option/Observer.php
+ path: app/code/core/Mage/Catalog/Model/Product/Option/Observer.php
-
message: "#^Unreachable statement \\- code above always terminates\\.$#"
count: 2
- path: ../app/code/core/Mage/Catalog/Model/Product/Option/Type/Default.php
+ path: app/code/core/Mage/Catalog/Model/Product/Option/Type/Default.php
-
message: "#^Call to an undefined method Mage_Catalog_Model_Product_Configuration_Item_Option_Interface\\:\\:getId\\(\\)\\.$#"
count: 2
- path: ../app/code/core/Mage/Catalog/Model/Product/Option/Type/File.php
+ path: app/code/core/Mage/Catalog/Model/Product/Option/Type/File.php
-
message: "#^Call to an undefined method Mage_Catalog_Model_Product_Configuration_Item_Option_Interface\\:\\:setValue\\(\\)\\.$#"
count: 1
- path: ../app/code/core/Mage/Catalog/Model/Product/Option/Type/File.php
+ path: app/code/core/Mage/Catalog/Model/Product/Option/Type/File.php
-
message: "#^Unreachable statement \\- code above always terminates\\.$#"
count: 1
- path: ../app/code/core/Mage/Catalog/Model/Product/Option/Type/File.php
+ path: app/code/core/Mage/Catalog/Model/Product/Option/Type/File.php
-
message: "#^Variable \\$value in isset\\(\\) always exists and is not nullable\\.$#"
count: 1
- path: ../app/code/core/Mage/Catalog/Model/Product/Option/Type/File.php
+ path: app/code/core/Mage/Catalog/Model/Product/Option/Type/File.php
-
message: "#^Elseif condition is always true\\.$#"
count: 3
- path: ../app/code/core/Mage/Catalog/Model/Product/Option/Type/Select.php
+ path: app/code/core/Mage/Catalog/Model/Product/Option/Type/Select.php
-
message: "#^If condition is always true\\.$#"
count: 6
- path: ../app/code/core/Mage/Catalog/Model/Product/Option/Type/Select.php
+ path: app/code/core/Mage/Catalog/Model/Product/Option/Type/Select.php
-
message: "#^Left side of && is always true\\.$#"
count: 1
- path: ../app/code/core/Mage/Catalog/Model/Product/Option/Type/Select.php
+ path: app/code/core/Mage/Catalog/Model/Product/Option/Type/Select.php
-
message: "#^Parameter \\#1 \\$valueId of method Mage_Catalog_Model_Product_Option\\:\\:getValueById\\(\\) expects int, string given\\.$#"
count: 6
- path: ../app/code/core/Mage/Catalog/Model/Product/Option/Type/Select.php
+ path: app/code/core/Mage/Catalog/Model/Product/Option/Type/Select.php
-
message: "#^Parameter \\#1 \\$value of method Mage_Catalog_Model_Product_Option_Value\\:\\:addValue\\(\\) expects string, array given\\.$#"
count: 1
- path: ../app/code/core/Mage/Catalog/Model/Product/Option/Value/Api.php
+ path: app/code/core/Mage/Catalog/Model/Product/Option/Value/Api.php
-
message: "#^Call to an undefined method Mage_Eav_Model_Entity_Collection_Abstract\\:\\:getStoreId\\(\\)\\.$#"
count: 1
- path: ../app/code/core/Mage/Catalog/Model/Product/Status.php
+ path: app/code/core/Mage/Catalog/Model/Product/Status.php
-
message: "#^Method Mage_Catalog_Model_Product_Type\\:\\:priceFactory\\(\\) should return Mage_Catalog_Model_Product_Type_Price but returns Mage_Core_Model_Abstract\\|false\\.$#"
count: 1
- path: ../app/code/core/Mage/Catalog/Model/Product/Type.php
+ path: app/code/core/Mage/Catalog/Model/Product/Type.php
-
message: "#^Call to function is_string\\(\\) with array will always evaluate to false\\.$#"
count: 1
- path: ../app/code/core/Mage/Catalog/Model/Product/Type/Abstract.php
+ path: app/code/core/Mage/Catalog/Model/Product/Type/Abstract.php
-
message: "#^Method Mage_Catalog_Model_Product_Type_Abstract\\:\\:getAttributeById\\(\\) should return Mage_Eav_Model_Entity_Attribute_Abstract but returns null\\.$#"
count: 1
- path: ../app/code/core/Mage/Catalog/Model/Product/Type/Abstract.php
+ path: app/code/core/Mage/Catalog/Model/Product/Type/Abstract.php
-
message: "#^Parameter \\#1 \\$optionId of method Mage_Catalog_Model_Product\\:\\:getOptionById\\(\\) expects int, string given\\.$#"
count: 2
- path: ../app/code/core/Mage/Catalog/Model/Product/Type/Abstract.php
+ path: app/code/core/Mage/Catalog/Model/Product/Type/Abstract.php
-
message: "#^Call to function is_array\\(\\) with string will always evaluate to false\\.$#"
count: 1
- path: ../app/code/core/Mage/Catalog/Model/Product/Type/Configurable.php
+ path: app/code/core/Mage/Catalog/Model/Product/Type/Configurable.php
-
message: "#^Call to function is_null\\(\\) with Mage_Eav_Model_Entity_Attribute_Abstract will always evaluate to false\\.$#"
count: 1
- path: ../app/code/core/Mage/Catalog/Model/Product/Type/Configurable.php
+ path: app/code/core/Mage/Catalog/Model/Product/Type/Configurable.php
-
message: "#^Call to function is_null\\(\\) with array\\ will always evaluate to false\\.$#"
count: 1
- path: ../app/code/core/Mage/Catalog/Model/Product/Type/Configurable.php
+ path: app/code/core/Mage/Catalog/Model/Product/Type/Configurable.php
-
message: "#^Call to function is_null\\(\\) with int\\|Mage_Core_Model_Store will always evaluate to false\\.$#"
count: 1
- path: ../app/code/core/Mage/Catalog/Model/Product/Type/Configurable.php
+ path: app/code/core/Mage/Catalog/Model/Product/Type/Configurable.php
-
message: "#^If condition is always true\\.$#"
count: 2
- path: ../app/code/core/Mage/Catalog/Model/Product/Type/Configurable.php
+ path: app/code/core/Mage/Catalog/Model/Product/Type/Configurable.php
-
message: "#^Method Mage_Catalog_Model_Product_Type_Configurable\\:\\:getProductByAttributes\\(\\) should return Mage_Catalog_Model_Product\\|null but returns Varien_Object\\.$#"
count: 1
- path: ../app/code/core/Mage/Catalog/Model/Product/Type/Configurable.php
+ path: app/code/core/Mage/Catalog/Model/Product/Type/Configurable.php
-
message: "#^Parameter \\#2 \\$product of method Mage_Catalog_Model_Product_Type_Abstract\\:\\:setStoreFilter\\(\\) expects null, Mage_Catalog_Model_Product given\\.$#"
count: 1
- path: ../app/code/core/Mage/Catalog/Model/Product/Type/Configurable.php
+ path: app/code/core/Mage/Catalog/Model/Product/Type/Configurable.php
-
message: "#^Parameter \\#3 \\$product of method Mage_Catalog_Model_Product\\:\\:addCustomOption\\(\\) expects int\\|null, Mage_Catalog_Model_Product given\\.$#"
count: 2
- path: ../app/code/core/Mage/Catalog/Model/Product/Type/Configurable.php
+ path: app/code/core/Mage/Catalog/Model/Product/Type/Configurable.php
-
message: "#^Call to function is_null\\(\\) with float will always evaluate to false\\.$#"
count: 1
- path: ../app/code/core/Mage/Catalog/Model/Product/Type/Configurable/Price.php
+ path: app/code/core/Mage/Catalog/Model/Product/Type/Configurable/Price.php
-
message: "#^Cannot access offset 'pricing_value' on true\\.$#"
count: 1
- path: ../app/code/core/Mage/Catalog/Model/Product/Type/Configurable/Price.php
+ path: app/code/core/Mage/Catalog/Model/Product/Type/Configurable/Price.php
-
message: "#^Parameter \\#1 \\$priceInfo of method Mage_Catalog_Model_Product_Type_Configurable_Price\\:\\:_calcSelectionPrice\\(\\) expects array, true given\\.$#"
count: 1
- path: ../app/code/core/Mage/Catalog/Model/Product/Type/Configurable/Price.php
+ path: app/code/core/Mage/Catalog/Model/Product/Type/Configurable/Price.php
-
message: "#^Parameter \\#2 \\$product of method Mage_Catalog_Model_Product_Type_Abstract\\:\\:setStoreFilter\\(\\) expects null, Mage_Catalog_Model_Product given\\.$#"
count: 1
- path: ../app/code/core/Mage/Catalog/Model/Product/Type/Configurable/Price.php
+ path: app/code/core/Mage/Catalog/Model/Product/Type/Configurable/Price.php
-
message: "#^Parameter \\#2 \\$qty of method Mage_Catalog_Model_Product_Type_Price\\:\\:_applyOptionsPrice\\(\\) expects int, float\\|null given\\.$#"
count: 1
- path: ../app/code/core/Mage/Catalog/Model/Product/Type/Configurable/Price.php
+ path: app/code/core/Mage/Catalog/Model/Product/Type/Configurable/Price.php
-
message: "#^Call to function is_array\\(\\) with string will always evaluate to false\\.$#"
count: 1
- path: ../app/code/core/Mage/Catalog/Model/Product/Type/Grouped.php
+ path: app/code/core/Mage/Catalog/Model/Product/Type/Grouped.php
-
message: "#^Parameter \\#3 \\$product of method Mage_Catalog_Model_Product\\:\\:addCustomOption\\(\\) expects int\\|null, Mage_Catalog_Model_Product given\\.$#"
count: 1
- path: ../app/code/core/Mage/Catalog/Model/Product/Type/Grouped.php
+ path: app/code/core/Mage/Catalog/Model/Product/Type/Grouped.php
-
message: "#^Call to function is_null\\(\\) with float will always evaluate to false\\.$#"
count: 1
- path: ../app/code/core/Mage/Catalog/Model/Product/Type/Grouped/Price.php
+ path: app/code/core/Mage/Catalog/Model/Product/Type/Grouped/Price.php
-
message: "#^Parameter \\#2 \\$product of method Mage_Catalog_Model_Product_Type_Abstract\\:\\:setStoreFilter\\(\\) expects null, Mage_Catalog_Model_Product given\\.$#"
count: 1
- path: ../app/code/core/Mage/Catalog/Model/Product/Type/Grouped/Price.php
+ path: app/code/core/Mage/Catalog/Model/Product/Type/Grouped/Price.php
-
message: "#^Call to function is_array\\(\\) with float will always evaluate to false\\.$#"
count: 1
- path: ../app/code/core/Mage/Catalog/Model/Product/Type/Price.php
+ path: app/code/core/Mage/Catalog/Model/Product/Type/Price.php
-
message: "#^Call to function is_null\\(\\) with float will always evaluate to false\\.$#"
count: 1
- path: ../app/code/core/Mage/Catalog/Model/Product/Type/Price.php
+ path: app/code/core/Mage/Catalog/Model/Product/Type/Price.php
-
message: "#^Parameter \\#1 \\$optionId of method Mage_Catalog_Model_Product\\:\\:getOptionById\\(\\) expects int, string given\\.$#"
count: 1
- path: ../app/code/core/Mage/Catalog/Model/Product/Type/Price.php
+ path: app/code/core/Mage/Catalog/Model/Product/Type/Price.php
-
message: "#^Parameter \\#1 \\$value of function count expects array\\|Countable, float given\\.$#"
count: 1
- path: ../app/code/core/Mage/Catalog/Model/Product/Type/Price.php
+ path: app/code/core/Mage/Catalog/Model/Product/Type/Price.php
-
message: "#^Parameter \\#2 \\$qty of method Mage_Catalog_Model_Product_Type_Price\\:\\:_applyOptionsPrice\\(\\) expects int, float\\|null given\\.$#"
count: 1
- path: ../app/code/core/Mage/Catalog/Model/Product/Type/Price.php
+ path: app/code/core/Mage/Catalog/Model/Product/Type/Price.php
-
message: "#^Call to an undefined method Mage_Eav_Model_Entity_Attribute_Abstract\\:\\:isScopeStore\\(\\)\\.$#"
count: 2
- path: ../app/code/core/Mage/Catalog/Model/Resource/Abstract.php
+ path: app/code/core/Mage/Catalog/Model/Resource/Abstract.php
-
message: "#^Call to an undefined method Mage_Eav_Model_Entity_Attribute_Abstract\\:\\:isScopeWebsite\\(\\)\\.$#"
count: 2
- path: ../app/code/core/Mage/Catalog/Model/Resource/Abstract.php
+ path: app/code/core/Mage/Catalog/Model/Resource/Abstract.php
-
message: "#^Cannot call method isScopeStore\\(\\) on Mage_Eav_Model_Entity_Attribute_Abstract\\|false\\.$#"
count: 1
- path: ../app/code/core/Mage/Catalog/Model/Resource/Abstract.php
+ path: app/code/core/Mage/Catalog/Model/Resource/Abstract.php
-
message: "#^Cannot call method isScopeWebsite\\(\\) on Mage_Eav_Model_Entity_Attribute_Abstract\\|false\\.$#"
count: 1
- path: ../app/code/core/Mage/Catalog/Model/Resource/Abstract.php
+ path: app/code/core/Mage/Catalog/Model/Resource/Abstract.php
-
message: "#^Method Mage_Core_Model_Website\\:\\:getStoreIds\\(\\) invoked with 1 parameter, 0 required\\.$#"
count: 1
- path: ../app/code/core/Mage/Catalog/Model/Resource/Abstract.php
+ path: app/code/core/Mage/Catalog/Model/Resource/Abstract.php
-
message: "#^Parameter \\#1 \\$object of method Mage_Catalog_Model_Resource_Abstract\\:\\:_saveAttributeValue\\(\\) expects Mage_Catalog_Model_Abstract, Varien_Object given\\.$#"
count: 2
- path: ../app/code/core/Mage/Catalog/Model/Resource/Abstract.php
+ path: app/code/core/Mage/Catalog/Model/Resource/Abstract.php
-
message: "#^Parameter \\#1 \\$object of method Mage_Catalog_Model_Resource_Abstract\\:\\:load\\(\\) expects Mage_Core_Model_Abstract, Varien_Object given\\.$#"
count: 1
- path: ../app/code/core/Mage/Catalog/Model/Resource/Abstract.php
+ path: app/code/core/Mage/Catalog/Model/Resource/Abstract.php
-
message: "#^Right side of \\|\\| is always true\\.$#"
count: 1
- path: ../app/code/core/Mage/Catalog/Model/Resource/Abstract.php
+ path: app/code/core/Mage/Catalog/Model/Resource/Abstract.php
-
message: "#^Method Mage_Catalog_Model_Resource_Attribute\\:\\:isUsedBySuperProducts\\(\\) should return int but returns string\\.$#"
count: 1
- path: ../app/code/core/Mage/Catalog/Model/Resource/Attribute.php
+ path: app/code/core/Mage/Catalog/Model/Resource/Attribute.php
-
message: "#^Parameter \\#1 \\$object of method Mage_Catalog_Model_Resource_Attribute\\:\\:_clearUselessAttributeValues\\(\\) expects Mage_Catalog_Model_Resource_Eav_Attribute, Mage_Eav_Model_Entity_Attribute given\\.$#"
count: 1
- path: ../app/code/core/Mage/Catalog/Model/Resource/Attribute.php
+ path: app/code/core/Mage/Catalog/Model/Resource/Attribute.php
-
message: "#^If condition is always true\\.$#"
count: 1
- path: ../app/code/core/Mage/Catalog/Model/Resource/Category.php
+ path: app/code/core/Mage/Catalog/Model/Resource/Category.php
-
message: "#^Method Mage_Catalog_Model_Resource_Category\\:\\:checkId\\(\\) should return bool but returns string\\.$#"
count: 1
- path: ../app/code/core/Mage/Catalog/Model/Resource/Category.php
+ path: app/code/core/Mage/Catalog/Model/Resource/Category.php
-
message: "#^Method Mage_Catalog_Model_Resource_Category\\:\\:getChildrenAmount\\(\\) should return int but returns string\\.$#"
count: 1
- path: ../app/code/core/Mage/Catalog/Model/Resource/Category.php
+ path: app/code/core/Mage/Catalog/Model/Resource/Category.php
-
message: "#^Method Mage_Catalog_Model_Resource_Category\\:\\:getChildrenCount\\(\\) should return int but returns string\\.$#"
count: 1
- path: ../app/code/core/Mage/Catalog/Model/Resource/Category.php
+ path: app/code/core/Mage/Catalog/Model/Resource/Category.php
-
message: "#^Negated boolean expression is always false\\.$#"
count: 1
- path: ../app/code/core/Mage/Catalog/Model/Resource/Category.php
+ path: app/code/core/Mage/Catalog/Model/Resource/Category.php
-
message: "#^Parameter \\#1 \\$alias of method Mage_Eav_Model_Entity_Abstract\\:\\:getTable\\(\\) expects string, array\\ given\\.$#"
count: 2
- path: ../app/code/core/Mage/Catalog/Model/Resource/Category.php
+ path: app/code/core/Mage/Catalog/Model/Resource/Category.php
-
message: "#^Parameter \\#1 \\$categoryIds of method Mage_Catalog_Model_Resource_Category_Collection\\:\\:addIdFilter\\(\\) expects array, string given\\.$#"
count: 1
- path: ../app/code/core/Mage/Catalog/Model/Resource/Category.php
+ path: app/code/core/Mage/Catalog/Model/Resource/Category.php
-
message: "#^Parameter \\#1 \\$read of method Mage_Eav_Model_Entity_Abstract\\:\\:setConnection\\(\\) expects string\\|Zend_Db_Adapter_Abstract, Varien_Db_Adapter_Interface\\|false given\\.$#"
count: 1
- path: ../app/code/core/Mage/Catalog/Model/Resource/Category.php
+ path: app/code/core/Mage/Catalog/Model/Resource/Category.php
-
message: "#^Parameter \\#2 \\$condition of method Mage_Eav_Model_Entity_Collection_Abstract\\:\\:addAttributeToFilter\\(\\) expects array\\|string\\|null, int given\\.$#"
count: 1
- path: ../app/code/core/Mage/Catalog/Model/Resource/Category.php
+ path: app/code/core/Mage/Catalog/Model/Resource/Category.php
-
message: "#^Parameter \\#2 \\$write of method Mage_Eav_Model_Entity_Abstract\\:\\:setConnection\\(\\) expects string\\|Zend_Db_Adapter_Abstract\\|null, Varien_Db_Adapter_Interface\\|false given\\.$#"
count: 1
- path: ../app/code/core/Mage/Catalog/Model/Resource/Category.php
+ path: app/code/core/Mage/Catalog/Model/Resource/Category.php
-
message: "#^Parameter \\#3 \\$exclude of method Mage_Catalog_Model_Resource_Category_Tree\\:\\:addCollectionData\\(\\) expects array, int given\\.$#"
count: 1
- path: ../app/code/core/Mage/Catalog/Model/Resource/Category.php
+ path: app/code/core/Mage/Catalog/Model/Resource/Category.php
-
message: "#^Property Mage_Catalog_Model_Resource_Category\\:\\:\\$_isActiveAttributeId \\(int\\) does not accept string\\.$#"
count: 1
- path: ../app/code/core/Mage/Catalog/Model/Resource/Category.php
+ path: app/code/core/Mage/Catalog/Model/Resource/Category.php
-
message: "#^Property Mage_Catalog_Model_Resource_Category\\:\\:\\$_storeId \\(int\\) on left side of \\?\\? is not nullable\\.$#"
count: 1
- path: ../app/code/core/Mage/Catalog/Model/Resource/Category.php
+ path: app/code/core/Mage/Catalog/Model/Resource/Category.php
-
message: "#^Property Mage_Catalog_Model_Resource_Category\\:\\:\\$_tree \\(Varien_Data_Tree_Db\\) does not accept Varien_Data_Tree_Dbp\\.$#"
count: 1
- path: ../app/code/core/Mage/Catalog/Model/Resource/Category.php
+ path: app/code/core/Mage/Catalog/Model/Resource/Category.php
-
message: "#^Call to function is_null\\(\\) with int will always evaluate to false\\.$#"
count: 1
- path: ../app/code/core/Mage/Catalog/Model/Resource/Category/Collection.php
+ path: app/code/core/Mage/Catalog/Model/Resource/Category/Collection.php
-
message: "#^Parameter \\#2 \\$condition of method Mage_Eav_Model_Entity_Collection_Abstract\\:\\:addAttributeToFilter\\(\\) expects array\\|string\\|null, int given\\.$#"
count: 1
- path: ../app/code/core/Mage/Catalog/Model/Resource/Category/Collection.php
+ path: app/code/core/Mage/Catalog/Model/Resource/Category/Collection.php
-
message: "#^Variable \\$condition might not be defined\\.$#"
count: 1
- path: ../app/code/core/Mage/Catalog/Model/Resource/Category/Collection.php
+ path: app/code/core/Mage/Catalog/Model/Resource/Category/Collection.php
-
message: "#^Variable \\$ids in empty\\(\\) always exists and is not falsy\\.$#"
count: 1
- path: ../app/code/core/Mage/Catalog/Model/Resource/Category/Collection.php
+ path: app/code/core/Mage/Catalog/Model/Resource/Category/Collection.php
-
message: "#^Call to an undefined method Mage_Catalog_Model_Resource_Category_Collection\\:\\:addSortedField\\(\\)\\.$#"
count: 1
- path: ../app/code/core/Mage/Catalog/Model/Resource/Category/Flat.php
+ path: app/code/core/Mage/Catalog/Model/Resource/Category/Flat.php
-
message: "#^Call to function is_null\\(\\) with array will always evaluate to false\\.$#"
count: 1
- path: ../app/code/core/Mage/Catalog/Model/Resource/Category/Flat.php
+ path: app/code/core/Mage/Catalog/Model/Resource/Category/Flat.php
-
message: "#^Call to function is_null\\(\\) with int will always evaluate to false\\.$#"
count: 1
- path: ../app/code/core/Mage/Catalog/Model/Resource/Category/Flat.php
+ path: app/code/core/Mage/Catalog/Model/Resource/Category/Flat.php
-
message: "#^Method Mage_Catalog_Model_Resource_Category_Flat\\:\\:checkId\\(\\) should return bool but returns string\\.$#"
count: 1
- path: ../app/code/core/Mage/Catalog/Model/Resource/Category/Flat.php
+ path: app/code/core/Mage/Catalog/Model/Resource/Category/Flat.php
-
message: "#^Parameter \\#1 \\$entityIds of method Mage_Catalog_Model_Resource_Category_Flat\\:\\:_getAttributeValues\\(\\) expects array, int given\\.$#"
count: 1
- path: ../app/code/core/Mage/Catalog/Model/Resource/Category/Flat.php
+ path: app/code/core/Mage/Catalog/Model/Resource/Category/Flat.php
-
message: "#^Parameter \\#1 \\$entityIds of method Mage_Catalog_Model_Resource_Category_Flat\\:\\:_getAttributeValues\\(\\) expects array, int\\|string given\\.$#"
count: 1
- path: ../app/code/core/Mage/Catalog/Model/Resource/Category/Flat.php
+ path: app/code/core/Mage/Catalog/Model/Resource/Category/Flat.php
-
message: "#^Parameter \\#2 \\$condition of method Mage_Eav_Model_Entity_Collection_Abstract\\:\\:addAttributeToFilter\\(\\) expects array\\|string\\|null, int given\\.$#"
count: 1
- path: ../app/code/core/Mage/Catalog/Model/Resource/Category/Flat.php
+ path: app/code/core/Mage/Catalog/Model/Resource/Category/Flat.php
-
message: "#^Strict comparison using \\=\\=\\= between Mage_Core_Model_Store and null will always evaluate to false\\.$#"
count: 1
- path: ../app/code/core/Mage/Catalog/Model/Resource/Category/Flat.php
+ path: app/code/core/Mage/Catalog/Model/Resource/Category/Flat.php
-
message: "#^Variable \\$options might not be defined\\.$#"
count: 1
- path: ../app/code/core/Mage/Catalog/Model/Resource/Category/Flat.php
+ path: app/code/core/Mage/Catalog/Model/Resource/Category/Flat.php
-
message: "#^Call to an undefined method Mage_Core_Model_Resource_Db_Abstract\\:\\:getMainStoreTable\\(\\)\\.$#"
count: 1
- path: ../app/code/core/Mage/Catalog/Model/Resource/Category/Flat/Collection.php
+ path: app/code/core/Mage/Catalog/Model/Resource/Category/Flat/Collection.php
-
message: "#^Parameter \\#1 \\$resource of method Mage_Core_Model_Resource_Db_Collection_Abstract\\:\\:__construct\\(\\) expects Mage_Core_Model_Resource_Db_Abstract\\|null, Mage_Core_Model_Resource_Abstract\\|null given\\.$#"
count: 1
- path: ../app/code/core/Mage/Catalog/Model/Resource/Category/Flat/Collection.php
+ path: app/code/core/Mage/Catalog/Model/Resource/Category/Flat/Collection.php
-
message: "#^Variable \\$condition might not be defined\\.$#"
count: 1
- path: ../app/code/core/Mage/Catalog/Model/Resource/Category/Flat/Collection.php
+ path: app/code/core/Mage/Catalog/Model/Resource/Category/Flat/Collection.php
-
message: "#^Variable \\$ids in empty\\(\\) always exists and is not falsy\\.$#"
count: 1
- path: ../app/code/core/Mage/Catalog/Model/Resource/Category/Flat/Collection.php
+ path: app/code/core/Mage/Catalog/Model/Resource/Category/Flat/Collection.php
-
message: "#^Call to an undefined method Zend_Db_Select\\:\\:insertFromSelect\\(\\)\\.$#"
count: 1
- path: ../app/code/core/Mage/Catalog/Model/Resource/Category/Indexer/Product.php
+ path: app/code/core/Mage/Catalog/Model/Resource/Category/Indexer/Product.php
-
message: "#^Call to function is_null\\(\\) with array will always evaluate to false\\.$#"
count: 1
- path: ../app/code/core/Mage/Catalog/Model/Resource/Category/Indexer/Product.php
+ path: app/code/core/Mage/Catalog/Model/Resource/Category/Indexer/Product.php
-
message: "#^Parameter \\#2 \\$true of method Varien_Db_Adapter_Interface\\:\\:getCheckSql\\(\\) expects string, int given\\.$#"
count: 1
- path: ../app/code/core/Mage/Catalog/Model/Resource/Category/Indexer/Product.php
+ path: app/code/core/Mage/Catalog/Model/Resource/Category/Indexer/Product.php
-
message: "#^Parameter \\#2 \\$true of method Varien_Db_Adapter_Pdo_Mysql\\:\\:getCheckSql\\(\\) expects string, int given\\.$#"
count: 1
- path: ../app/code/core/Mage/Catalog/Model/Resource/Category/Indexer/Product.php
+ path: app/code/core/Mage/Catalog/Model/Resource/Category/Indexer/Product.php
-
message: "#^Parameter \\#3 \\$false of method Varien_Db_Adapter_Interface\\:\\:getCheckSql\\(\\) expects string, int given\\.$#"
count: 1
- path: ../app/code/core/Mage/Catalog/Model/Resource/Category/Indexer/Product.php
+ path: app/code/core/Mage/Catalog/Model/Resource/Category/Indexer/Product.php
-
message: "#^Parameter \\#3 \\$false of method Varien_Db_Adapter_Pdo_Mysql\\:\\:getCheckSql\\(\\) expects string, int given\\.$#"
count: 1
- path: ../app/code/core/Mage/Catalog/Model/Resource/Category/Indexer/Product.php
+ path: app/code/core/Mage/Catalog/Model/Resource/Category/Indexer/Product.php
-
message: "#^Variable \\$anchorProductsTable might not be defined\\.$#"
count: 1
- path: ../app/code/core/Mage/Catalog/Model/Resource/Category/Indexer/Product.php
+ path: app/code/core/Mage/Catalog/Model/Resource/Category/Indexer/Product.php
-
message: "#^Variable \\$anchorTable might not be defined\\.$#"
count: 1
- path: ../app/code/core/Mage/Catalog/Model/Resource/Category/Indexer/Product.php
+ path: app/code/core/Mage/Catalog/Model/Resource/Category/Indexer/Product.php
-
message: "#^Variable \\$enabledTable might not be defined\\.$#"
count: 1
- path: ../app/code/core/Mage/Catalog/Model/Resource/Category/Indexer/Product.php
+ path: app/code/core/Mage/Catalog/Model/Resource/Category/Indexer/Product.php
-
message: "#^Call to an undefined method Zend_Db_Adapter_Abstract\\:\\:getCheckSql\\(\\)\\.$#"
count: 2
- path: ../app/code/core/Mage/Catalog/Model/Resource/Category/Tree.php
+ path: app/code/core/Mage/Catalog/Model/Resource/Category/Tree.php
-
message: "#^Call to an undefined method Zend_Db_Adapter_Abstract\\:\\:getConcatSql\\(\\)\\.$#"
count: 1
- path: ../app/code/core/Mage/Catalog/Model/Resource/Category/Tree.php
+ path: app/code/core/Mage/Catalog/Model/Resource/Category/Tree.php
-
message: "#^Call to an undefined method Zend_Db_Adapter_Abstract\\:\\:getLengthSql\\(\\)\\.$#"
count: 1
- path: ../app/code/core/Mage/Catalog/Model/Resource/Category/Tree.php
+ path: app/code/core/Mage/Catalog/Model/Resource/Category/Tree.php
-
message: "#^Call to function is_null\\(\\) with Mage_Catalog_Model_Resource_Category_Collection will always evaluate to false\\.$#"
count: 2
- path: ../app/code/core/Mage/Catalog/Model/Resource/Category/Tree.php
+ path: app/code/core/Mage/Catalog/Model/Resource/Category/Tree.php
-
message: "#^Call to function is_null\\(\\) with int will always evaluate to false\\.$#"
count: 1
- path: ../app/code/core/Mage/Catalog/Model/Resource/Category/Tree.php
+ path: app/code/core/Mage/Catalog/Model/Resource/Category/Tree.php
-
message: "#^If condition is always true\\.$#"
count: 1
- path: ../app/code/core/Mage/Catalog/Model/Resource/Category/Tree.php
+ path: app/code/core/Mage/Catalog/Model/Resource/Category/Tree.php
-
message: "#^Method Mage_Catalog_Model_Resource_Category_Tree\\:\\:_getItemIsActive\\(\\) invoked with 2 parameters, 1 required\\.$#"
count: 1
- path: ../app/code/core/Mage/Catalog/Model/Resource/Category/Tree.php
+ path: app/code/core/Mage/Catalog/Model/Resource/Category/Tree.php
-
message: "#^Negated boolean expression is always false\\.$#"
count: 1
- path: ../app/code/core/Mage/Catalog/Model/Resource/Category/Tree.php
+ path: app/code/core/Mage/Catalog/Model/Resource/Category/Tree.php
-
message: "#^Parameter \\#1 \\$category \\(Mage_Catalog_Model_Category\\) of method Mage_Catalog_Model_Resource_Category_Tree\\:\\:move\\(\\) should be compatible with parameter \\$node \\(Varien_Data_Tree_Node\\) of method Varien_Data_Tree_Dbp\\:\\:move\\(\\)$#"
count: 1
- path: ../app/code/core/Mage/Catalog/Model/Resource/Category/Tree.php
+ path: app/code/core/Mage/Catalog/Model/Resource/Category/Tree.php
-
message: "#^Parameter \\#1 \\$children of method Varien_Data_Tree_Dbp\\:\\:addChildNodes\\(\\) expects Varien_Data_Tree_Node, array\\\\> given\\.$#"
count: 1
- path: ../app/code/core/Mage/Catalog/Model/Resource/Category/Tree.php
+ path: app/code/core/Mage/Catalog/Model/Resource/Category/Tree.php
-
message: "#^Parameter \\#1 \\$connection of method Varien_Data_Tree_Dbp\\:\\:__construct\\(\\) expects Zend_Db_Adapter_Abstract, Varien_Db_Adapter_Interface\\|false given\\.$#"
count: 1
- path: ../app/code/core/Mage/Catalog/Model/Resource/Category/Tree.php
+ path: app/code/core/Mage/Catalog/Model/Resource/Category/Tree.php
-
message: "#^Parameter \\#1 \\$node of method Varien_Data_Tree_Dbp\\:\\:move\\(\\) expects Varien_Data_Tree_Node, Mage_Catalog_Model_Category given\\.$#"
count: 1
- path: ../app/code/core/Mage/Catalog/Model/Resource/Category/Tree.php
+ path: app/code/core/Mage/Catalog/Model/Resource/Category/Tree.php
-
message: "#^Parameter \\#2 \\$cols of method Zend_Db_Select\\:\\:from\\(\\) expects array\\|string\\|Zend_Db_Expr, null given\\.$#"
count: 1
- path: ../app/code/core/Mage/Catalog/Model/Resource/Category/Tree.php
+ path: app/code/core/Mage/Catalog/Model/Resource/Category/Tree.php
-
message: "#^Parameter \\#2 \\$condition of method Mage_Eav_Model_Entity_Collection_Abstract\\:\\:addAttributeToFilter\\(\\) expects array\\|string\\|null, int given\\.$#"
count: 2
- path: ../app/code/core/Mage/Catalog/Model/Resource/Category/Tree.php
+ path: app/code/core/Mage/Catalog/Model/Resource/Category/Tree.php
-
message: "#^Parameter \\#3 \\$parentNode of method Varien_Data_Tree_Dbp\\:\\:addChildNodes\\(\\) expects Varien_Data_Tree_Node, null given\\.$#"
count: 1
- path: ../app/code/core/Mage/Catalog/Model/Resource/Category/Tree.php
+ path: app/code/core/Mage/Catalog/Model/Resource/Category/Tree.php
-
message: "#^Property Mage_Catalog_Model_Resource_Category_Tree\\:\\:\\$_isActiveAttributeId \\(int\\) does not accept string\\.$#"
count: 1
- path: ../app/code/core/Mage/Catalog/Model/Resource/Category/Tree.php
+ path: app/code/core/Mage/Catalog/Model/Resource/Category/Tree.php
-
message: "#^Result of && is always false\\.$#"
count: 1
- path: ../app/code/core/Mage/Catalog/Model/Resource/Category/Tree.php
+ path: app/code/core/Mage/Catalog/Model/Resource/Category/Tree.php
-
message: "#^Call to function is_null\\(\\) with int will always evaluate to false\\.$#"
count: 1
- path: ../app/code/core/Mage/Catalog/Model/Resource/Collection/Abstract.php
+ path: app/code/core/Mage/Catalog/Model/Resource/Collection/Abstract.php
-
message: "#^Parameter \\#2 \\$alias of method Varien_Db_Adapter_Interface\\:\\:quoteColumnAs\\(\\) expects string, null given\\.$#"
count: 2
- path: ../app/code/core/Mage/Catalog/Model/Resource/Collection/Abstract.php
+ path: app/code/core/Mage/Catalog/Model/Resource/Collection/Abstract.php
-
message: "#^Property Mage_Catalog_Model_Resource_Config\\:\\:\\$_storeId \\(int\\) on left side of \\?\\? is not nullable\\.$#"
count: 1
- path: ../app/code/core/Mage/Catalog/Model/Resource/Config.php
+ path: app/code/core/Mage/Catalog/Model/Resource/Config.php
-
message: "#^Call to function is_null\\(\\) with array will always evaluate to false\\.$#"
count: 1
- path: ../app/code/core/Mage/Catalog/Model/Resource/Eav/Attribute.php
+ path: app/code/core/Mage/Catalog/Model/Resource/Eav/Attribute.php
-
message: "#^Binary operation \"\\-\" between int and non\\-falsy\\-string results in an error\\.$#"
count: 2
- path: ../app/code/core/Mage/Catalog/Model/Resource/Layer/Filter/Price.php
+ path: app/code/core/Mage/Catalog/Model/Resource/Layer/Filter/Price.php
-
message: "#^Binary operation \"\\-\" between non\\-falsy\\-string and 1 results in an error\\.$#"
count: 2
- path: ../app/code/core/Mage/Catalog/Model/Resource/Layer/Filter/Price.php
+ path: app/code/core/Mage/Catalog/Model/Resource/Layer/Filter/Price.php
-
message: "#^Call to function is_null\\(\\) with Varien_Db_Select will always evaluate to false\\.$#"
count: 1
- path: ../app/code/core/Mage/Catalog/Model/Resource/Layer/Filter/Price.php
+ path: app/code/core/Mage/Catalog/Model/Resource/Layer/Filter/Price.php
-
message: "#^Call to an undefined method Mage_Catalog_Model_Resource_Category\\:\\:refreshProductIndex\\(\\)\\.$#"
count: 2
- path: ../app/code/core/Mage/Catalog/Model/Resource/Product.php
+ path: app/code/core/Mage/Catalog/Model/Resource/Product.php
-
message: "#^Method Mage_Catalog_Model_Resource_Product\\:\\:getIdBySku\\(\\) should return int\\|false but returns string\\.$#"
count: 1
- path: ../app/code/core/Mage/Catalog/Model/Resource/Product.php
+ path: app/code/core/Mage/Catalog/Model/Resource/Product.php
-
message: "#^Parameter \\#1 \\$alias of method Mage_Eav_Model_Entity_Abstract\\:\\:getTable\\(\\) expects string, array\\ given\\.$#"
count: 1
- path: ../app/code/core/Mage/Catalog/Model/Resource/Product.php
+ path: app/code/core/Mage/Catalog/Model/Resource/Product.php
-
message: "#^Parameter \\#1 \\$expression of class Zend_Db_Expr constructor expects string, int given\\.$#"
count: 2
- path: ../app/code/core/Mage/Catalog/Model/Resource/Product.php
+ path: app/code/core/Mage/Catalog/Model/Resource/Product.php
-
message: "#^Parameter \\#1 \\$product of method Mage_Catalog_Model_Resource_Product\\:\\:getCategoryIds\\(\\) expects Mage_Catalog_Model_Product, Varien_Object given\\.$#"
count: 1
- path: ../app/code/core/Mage/Catalog/Model/Resource/Product.php
+ path: app/code/core/Mage/Catalog/Model/Resource/Product.php
-
message: "#^Parameter \\#1 \\$object of method Mage_Catalog_Model_Resource_Abstract\\:\\:_saveAttributeValue\\(\\) expects Mage_Catalog_Model_Abstract, Varien_Object given\\.$#"
count: 1
- path: ../app/code/core/Mage/Catalog/Model/Resource/Product/Action.php
+ path: app/code/core/Mage/Catalog/Model/Resource/Product/Action.php
-
message: "#^Parameter \\#1 \\$read of method Mage_Eav_Model_Entity_Abstract\\:\\:setConnection\\(\\) expects string\\|Zend_Db_Adapter_Abstract, Varien_Db_Adapter_Interface\\|false given\\.$#"
count: 1
- path: ../app/code/core/Mage/Catalog/Model/Resource/Product/Action.php
+ path: app/code/core/Mage/Catalog/Model/Resource/Product/Action.php
-
message: "#^Parameter \\#2 \\$write of method Mage_Eav_Model_Entity_Abstract\\:\\:setConnection\\(\\) expects string\\|Zend_Db_Adapter_Abstract\\|null, Varien_Db_Adapter_Interface\\|false given\\.$#"
count: 1
- path: ../app/code/core/Mage/Catalog/Model/Resource/Product/Action.php
+ path: app/code/core/Mage/Catalog/Model/Resource/Product/Action.php
-
message: "#^Method Mage_Catalog_Model_Resource_Product_Attribute_Backend_Media\\:\\:insertGallery\\(\\) should return int but returns string\\.$#"
count: 1
- path: ../app/code/core/Mage/Catalog/Model/Resource/Product/Attribute/Backend/Media.php
+ path: app/code/core/Mage/Catalog/Model/Resource/Product/Attribute/Backend/Media.php
-
message: "#^Call to an undefined method Varien_Object\\:\\:formatUrlKey\\(\\)\\.$#"
count: 1
- path: ../app/code/core/Mage/Catalog/Model/Resource/Product/Attribute/Backend/Urlkey.php
+ path: app/code/core/Mage/Catalog/Model/Resource/Product/Attribute/Backend/Urlkey.php
-
message: "#^Method Mage_Catalog_Model_Url\\:\\:refreshProductRewrites\\(\\) invoked with 3 parameters, 1 required\\.$#"
count: 1
- path: ../app/code/core/Mage/Catalog/Model/Resource/Product/Attribute/Backend/Urlkey.php
+ path: app/code/core/Mage/Catalog/Model/Resource/Product/Attribute/Backend/Urlkey.php
-
message: "#^Parameter \\#1 \\$storeId of method Mage_Catalog_Model_Url\\:\\:refreshProductRewrites\\(\\) expects int, null given\\.$#"
count: 1
- path: ../app/code/core/Mage/Catalog/Model/Resource/Product/Attribute/Backend/Urlkey.php
+ path: app/code/core/Mage/Catalog/Model/Resource/Product/Attribute/Backend/Urlkey.php
-
message: "#^Parameter \\#2 \\$resourceModel of method Mage_Core_Model_Resource_Db_Collection_Abstract\\:\\:_init\\(\\) expects Mage_Core_Model_Resource_Db_Abstract\\|null, string given\\.$#"
count: 1
- path: ../app/code/core/Mage/Catalog/Model/Resource/Product/Attribute/Collection.php
+ path: app/code/core/Mage/Catalog/Model/Resource/Product/Attribute/Collection.php
-
message: "#^Call to an undefined method Mage_Eav_Model_Entity_Abstract\\:\\:getAllTableColumns\\(\\)\\.$#"
count: 1
- path: ../app/code/core/Mage/Catalog/Model/Resource/Product/Collection.php
+ path: app/code/core/Mage/Catalog/Model/Resource/Product/Collection.php
-
message: "#^Call to an undefined method Mage_Eav_Model_Entity_Abstract\\:\\:getAttributeForSelect\\(\\)\\.$#"
count: 1
- path: ../app/code/core/Mage/Catalog/Model/Resource/Product/Collection.php
+ path: app/code/core/Mage/Catalog/Model/Resource/Product/Collection.php
-
message: "#^Call to an undefined method Mage_Eav_Model_Entity_Abstract\\:\\:getAttributeSortColumn\\(\\)\\.$#"
count: 1
- path: ../app/code/core/Mage/Catalog/Model/Resource/Product/Collection.php
+ path: app/code/core/Mage/Catalog/Model/Resource/Product/Collection.php
-
message: "#^Call to an undefined method Mage_Eav_Model_Entity_Abstract\\:\\:getFlatTableName\\(\\)\\.$#"
count: 1
- path: ../app/code/core/Mage/Catalog/Model/Resource/Product/Collection.php
+ path: app/code/core/Mage/Catalog/Model/Resource/Product/Collection.php
-
message: "#^Call to an undefined method Mage_Eav_Model_Entity_Abstract\\:\\:setStoreId\\(\\)\\.$#"
count: 1
- path: ../app/code/core/Mage/Catalog/Model/Resource/Product/Collection.php
+ path: app/code/core/Mage/Catalog/Model/Resource/Product/Collection.php
-
message: "#^Call to function is_null\\(\\) with float will always evaluate to false\\.$#"
count: 3
- path: ../app/code/core/Mage/Catalog/Model/Resource/Product/Collection.php
+ path: app/code/core/Mage/Catalog/Model/Resource/Product/Collection.php
-
message: "#^Call to function is_null\\(\\) with int will always evaluate to false\\.$#"
count: 1
- path: ../app/code/core/Mage/Catalog/Model/Resource/Product/Collection.php
+ path: app/code/core/Mage/Catalog/Model/Resource/Product/Collection.php
-
message: "#^If condition is always true\\.$#"
count: 1
- path: ../app/code/core/Mage/Catalog/Model/Resource/Product/Collection.php
+ path: app/code/core/Mage/Catalog/Model/Resource/Product/Collection.php
-
message: "#^Method Mage_Catalog_Model_Resource_Product_Collection\\:\\:_addUrlRewrite\\(\\) invoked with 1 parameter, 0 required\\.$#"
count: 1
- path: ../app/code/core/Mage/Catalog/Model/Resource/Product/Collection.php
+ path: app/code/core/Mage/Catalog/Model/Resource/Product/Collection.php
-
message: "#^Method Mage_Catalog_Model_Resource_Product_Collection\\:\\:getProductCountSelect\\(\\) should return Varien_Db_Select but returns Zend_Db_Select\\.$#"
count: 1
- path: ../app/code/core/Mage/Catalog/Model/Resource/Product/Collection.php
+ path: app/code/core/Mage/Catalog/Model/Resource/Product/Collection.php
-
message: "#^Parameter \\#1 \\$date of method Mage_Core_Model_Resource_Abstract\\:\\:formatDate\\(\\) expects string\\|Zend_Date\\|true\\|null, int given\\.$#"
count: 1
- path: ../app/code/core/Mage/Catalog/Model/Resource/Product/Collection.php
+ path: app/code/core/Mage/Catalog/Model/Resource/Product/Collection.php
-
message: "#^Parameter \\#1 \\$expression of class Zend_Db_Expr constructor expects string, int given\\.$#"
count: 1
- path: ../app/code/core/Mage/Catalog/Model/Resource/Product/Collection.php
+ path: app/code/core/Mage/Catalog/Model/Resource/Product/Collection.php
-
message: "#^Parameter \\#1 \\$select of method Mage_Catalog_Model_Resource_Product_Collection\\:\\:_getSelectCountSql\\(\\) expects null, Varien_Db_Select given\\.$#"
count: 1
- path: ../app/code/core/Mage/Catalog/Model/Resource/Product/Collection.php
+ path: app/code/core/Mage/Catalog/Model/Resource/Product/Collection.php
-
message: "#^Parameter \\#4 \\$cond of method Mage_Eav_Model_Entity_Collection_Abstract\\:\\:joinTable\\(\\) expects array\\|null, string given\\.$#"
count: 1
- path: ../app/code/core/Mage/Catalog/Model/Resource/Product/Collection.php
+ path: app/code/core/Mage/Catalog/Model/Resource/Product/Collection.php
-
message: "#^Property Mage_Catalog_Model_Resource_Product_Collection\\:\\:\\$_allIdsCache \\(array\\) does not accept null\\.$#"
count: 1
- path: ../app/code/core/Mage/Catalog/Model/Resource/Product/Collection.php
+ path: app/code/core/Mage/Catalog/Model/Resource/Product/Collection.php
-
message: "#^Property Mage_Catalog_Model_Resource_Product_Collection\\:\\:\\$_productCountSelect \\(Zend_Db_Select\\) does not accept null\\.$#"
count: 1
- path: ../app/code/core/Mage/Catalog/Model/Resource/Product/Collection.php
+ path: app/code/core/Mage/Catalog/Model/Resource/Product/Collection.php
-
message: "#^Property Mage_Catalog_Model_Resource_Product_Collection\\:\\:\\$_urlRewriteCategory \\(int\\) does not accept default value of type string\\.$#"
count: 1
- path: ../app/code/core/Mage/Catalog/Model/Resource/Product/Collection.php
+ path: app/code/core/Mage/Catalog/Model/Resource/Product/Collection.php
-
message: "#^Variable \\$websiteId might not be defined\\.$#"
count: 3
- path: ../app/code/core/Mage/Catalog/Model/Resource/Product/Collection.php
+ path: app/code/core/Mage/Catalog/Model/Resource/Product/Collection.php
-
message: "#^Method Mage_Catalog_Model_Resource_Product_Compare_Item\\:\\:getCount\\(\\) should return int but returns string\\.$#"
count: 1
- path: ../app/code/core/Mage/Catalog/Model/Resource/Product/Compare/Item.php
+ path: app/code/core/Mage/Catalog/Model/Resource/Product/Compare/Item.php
-
message: "#^Call to function is_null\\(\\) with array will always evaluate to false\\.$#"
count: 1
- path: ../app/code/core/Mage/Catalog/Model/Resource/Product/Compare/Item/Collection.php
+ path: app/code/core/Mage/Catalog/Model/Resource/Product/Compare/Item/Collection.php
-
message: "#^Parameter \\#1 \\$object of method Mage_Eav_Model_Entity_Collection_Abstract\\:\\:setObject\\(\\) expects Varien_Object\\|null, string given\\.$#"
count: 1
- path: ../app/code/core/Mage/Catalog/Model/Resource/Product/Compare/Item/Collection.php
+ path: app/code/core/Mage/Catalog/Model/Resource/Product/Compare/Item/Collection.php
-
message: "#^Method Mage_Catalog_Model_Resource_Product_Flat\\:\\:getTypeId\\(\\) should return int but returns string\\|null\\.$#"
count: 1
- path: ../app/code/core/Mage/Catalog/Model/Resource/Product/Flat.php
+ path: app/code/core/Mage/Catalog/Model/Resource/Product/Flat.php
-
message: "#^Parameter \\#1 \\$entity of method Mage_Eav_Model_Entity_Attribute_Abstract\\:\\:setEntity\\(\\) expects Mage_Eav_Model_Entity_Abstract, Mage_Core_Model_Resource_Abstract given\\.$#"
count: 2
- path: ../app/code/core/Mage/Catalog/Model/Resource/Product/Flat/Indexer.php
+ path: app/code/core/Mage/Catalog/Model/Resource/Product/Flat/Indexer.php
-
message: "#^Method Mage_Catalog_Model_Resource_Product_Indexer_Abstract\\:\\:_getAttribute\\(\\) should return Mage_Catalog_Model_Resource_Eav_Attribute but returns Mage_Eav_Model_Entity_Attribute_Abstract\\|false\\.$#"
count: 1
- path: ../app/code/core/Mage/Catalog/Model/Resource/Product/Indexer/Abstract.php
+ path: app/code/core/Mage/Catalog/Model/Resource/Product/Indexer/Abstract.php
-
message: "#^Call to function is_null\\(\\) with array will always evaluate to false\\.$#"
count: 1
- path: ../app/code/core/Mage/Catalog/Model/Resource/Product/Indexer/Eav.php
+ path: app/code/core/Mage/Catalog/Model/Resource/Product/Indexer/Eav.php
-
message: "#^Parameter \\#5 \\$condition of method Mage_Catalog_Model_Resource_Product_Indexer_Abstract\\:\\:_addAttributeToSelect\\(\\) expects Zend_Db_Expr\\|null, string given\\.$#"
count: 1
- path: ../app/code/core/Mage/Catalog/Model/Resource/Product/Indexer/Eav/Abstract.php
+ path: app/code/core/Mage/Catalog/Model/Resource/Product/Indexer/Eav/Abstract.php
-
message: "#^Parameter \\#5 \\$condition of method Mage_Catalog_Model_Resource_Product_Indexer_Abstract\\:\\:_addAttributeToSelect\\(\\) expects Zend_Db_Expr\\|null, string given\\.$#"
count: 1
- path: ../app/code/core/Mage/Catalog/Model/Resource/Product/Indexer/Eav/Decimal.php
+ path: app/code/core/Mage/Catalog/Model/Resource/Product/Indexer/Eav/Decimal.php
-
message: "#^Parameter \\#5 \\$condition of method Mage_Catalog_Model_Resource_Product_Indexer_Abstract\\:\\:_addAttributeToSelect\\(\\) expects Zend_Db_Expr\\|null, string given\\.$#"
count: 2
- path: ../app/code/core/Mage/Catalog/Model/Resource/Product/Indexer/Eav/Source.php
+ path: app/code/core/Mage/Catalog/Model/Resource/Product/Indexer/Eav/Source.php
-
message: "#^Binary operation \"\\*\" between string and 0\\.3 results in an error\\.$#"
count: 1
- path: ../app/code/core/Mage/Catalog/Model/Resource/Product/Indexer/Price.php
+ path: app/code/core/Mage/Catalog/Model/Resource/Product/Indexer/Price.php
-
message: "#^Binary operation \"\\+\" between int\\<0, max\\> and string results in an error\\.$#"
count: 1
- path: ../app/code/core/Mage/Catalog/Model/Resource/Product/Indexer/Price.php
+ path: app/code/core/Mage/Catalog/Model/Resource/Product/Indexer/Price.php
-
message: "#^Call to an undefined method Mage_Catalog_Model_Resource_Product_Indexer_Price_Interface\\:\\:getIsComposite\\(\\)\\.$#"
count: 2
- path: ../app/code/core/Mage/Catalog/Model/Resource/Product/Indexer/Price.php
+ path: app/code/core/Mage/Catalog/Model/Resource/Product/Indexer/Price.php
-
message: "#^Call to function is_null\\(\\) with array will always evaluate to false\\.$#"
count: 1
- path: ../app/code/core/Mage/Catalog/Model/Resource/Product/Indexer/Price.php
+ path: app/code/core/Mage/Catalog/Model/Resource/Product/Indexer/Price.php
-
message: "#^Cannot call method setTypeId\\(\\) on Mage_Core_Model_Resource_Db_Collection_Abstract\\|false\\.$#"
count: 1
- path: ../app/code/core/Mage/Catalog/Model/Resource/Product/Indexer/Price.php
+ path: app/code/core/Mage/Catalog/Model/Resource/Product/Indexer/Price.php
-
message: "#^If condition is always true\\.$#"
count: 1
- path: ../app/code/core/Mage/Catalog/Model/Resource/Product/Indexer/Price.php
+ path: app/code/core/Mage/Catalog/Model/Resource/Product/Indexer/Price.php
-
message: "#^Parameter \\#1 \\$date of method Mage_Core_Model_Resource_Abstract\\:\\:formatDate\\(\\) expects string\\|Zend_Date\\|true\\|null, int given\\.$#"
count: 1
- path: ../app/code/core/Mage/Catalog/Model/Resource/Product/Indexer/Price.php
+ path: app/code/core/Mage/Catalog/Model/Resource/Product/Indexer/Price.php
-
message: "#^Parameter \\#5 \\$condition of method Mage_Catalog_Model_Resource_Product_Indexer_Abstract\\:\\:_addAttributeToSelect\\(\\) expects Zend_Db_Expr\\|null, string given\\.$#"
count: 1
- path: ../app/code/core/Mage/Catalog/Model/Resource/Product/Indexer/Price/Configurable.php
+ path: app/code/core/Mage/Catalog/Model/Resource/Product/Indexer/Price/Configurable.php
-
message: "#^Call to function is_null\\(\\) with string will always evaluate to false\\.$#"
count: 1
- path: ../app/code/core/Mage/Catalog/Model/Resource/Product/Indexer/Price/Default.php
+ path: app/code/core/Mage/Catalog/Model/Resource/Product/Indexer/Price/Default.php
-
message: "#^Parameter \\#3 \\$false of method Varien_Db_Adapter_Pdo_Mysql\\:\\:getCheckSql\\(\\) expects string, int given\\.$#"
count: 5
- path: ../app/code/core/Mage/Catalog/Model/Resource/Product/Indexer/Price/Default.php
+ path: app/code/core/Mage/Catalog/Model/Resource/Product/Indexer/Price/Default.php
-
message: "#^Parameter \\#5 \\$condition of method Mage_Catalog_Model_Resource_Product_Indexer_Abstract\\:\\:_addAttributeToSelect\\(\\) expects Zend_Db_Expr\\|null, string given\\.$#"
count: 1
- path: ../app/code/core/Mage/Catalog/Model/Resource/Product/Indexer/Price/Default.php
+ path: app/code/core/Mage/Catalog/Model/Resource/Product/Indexer/Price/Default.php
-
message: "#^Parameter \\#3 \\$false of method Varien_Db_Adapter_Pdo_Mysql\\:\\:getCheckSql\\(\\) expects string, int given\\.$#"
count: 2
- path: ../app/code/core/Mage/Catalog/Model/Resource/Product/Indexer/Price/Grouped.php
+ path: app/code/core/Mage/Catalog/Model/Resource/Product/Indexer/Price/Grouped.php
-
message: "#^Parameter \\#5 \\$condition of method Mage_Catalog_Model_Resource_Product_Indexer_Abstract\\:\\:_addAttributeToSelect\\(\\) expects Zend_Db_Expr\\|null, string given\\.$#"
count: 1
- path: ../app/code/core/Mage/Catalog/Model/Resource/Product/Indexer/Price/Grouped.php
+ path: app/code/core/Mage/Catalog/Model/Resource/Product/Indexer/Price/Grouped.php
-
message: "#^If condition is always true\\.$#"
count: 1
- path: ../app/code/core/Mage/Catalog/Model/Resource/Product/Link/Collection.php
+ path: app/code/core/Mage/Catalog/Model/Resource/Product/Link/Collection.php
-
message: "#^Left side of && is always true\\.$#"
count: 1
- path: ../app/code/core/Mage/Catalog/Model/Resource/Product/Link/Collection.php
+ path: app/code/core/Mage/Catalog/Model/Resource/Product/Link/Collection.php
-
message: "#^Negated boolean expression is always false\\.$#"
count: 1
- path: ../app/code/core/Mage/Catalog/Model/Resource/Product/Link/Collection.php
+ path: app/code/core/Mage/Catalog/Model/Resource/Product/Link/Collection.php
-
message: "#^Parameter \\#2 \\$alias of method Varien_Db_Adapter_Interface\\:\\:quoteColumnAs\\(\\) expects string, null given\\.$#"
count: 1
- path: ../app/code/core/Mage/Catalog/Model/Resource/Product/Link/Collection.php
+ path: app/code/core/Mage/Catalog/Model/Resource/Product/Link/Collection.php
-
message: "#^If condition is always true\\.$#"
count: 1
- path: ../app/code/core/Mage/Catalog/Model/Resource/Product/Link/Product/Collection.php
+ path: app/code/core/Mage/Catalog/Model/Resource/Product/Link/Product/Collection.php
-
message: "#^Left side of && is always true\\.$#"
count: 2
- path: ../app/code/core/Mage/Catalog/Model/Resource/Product/Link/Product/Collection.php
+ path: app/code/core/Mage/Catalog/Model/Resource/Product/Link/Product/Collection.php
-
message: "#^Negated boolean expression is always false\\.$#"
count: 2
- path: ../app/code/core/Mage/Catalog/Model/Resource/Product/Link/Product/Collection.php
+ path: app/code/core/Mage/Catalog/Model/Resource/Product/Link/Product/Collection.php
-
message: "#^Parameter \\#2 \\$newOptionId of method Mage_Catalog_Model_Product_Option_Value\\:\\:duplicate\\(\\) expects int, string given\\.$#"
count: 1
- path: ../app/code/core/Mage/Catalog/Model/Resource/Product/Option.php
+ path: app/code/core/Mage/Catalog/Model/Resource/Product/Option.php
-
message: "#^If condition is always true\\.$#"
count: 1
- path: ../app/code/core/Mage/Catalog/Model/Resource/Product/Option/Collection.php
+ path: app/code/core/Mage/Catalog/Model/Resource/Product/Option/Collection.php
-
message: "#^Parameter \\#2 \\$product of method Mage_Catalog_Model_Product_Type_Abstract\\:\\:getAttributeById\\(\\) expects null, Mage_Catalog_Model_Product given\\.$#"
count: 1
- path: ../app/code/core/Mage/Catalog/Model/Resource/Product/Type/Configurable/Attribute/Collection.php
+ path: app/code/core/Mage/Catalog/Model/Resource/Product/Type/Configurable/Attribute/Collection.php
-
message: "#^Parameter \\#2 \\$product of method Mage_Catalog_Model_Resource_Product\\:\\:refreshEnabledIndex\\(\\) expects Mage_Catalog_Model_Product\\|null, array given\\.$#"
count: 1
- path: ../app/code/core/Mage/Catalog/Model/Resource/Product/Website.php
+ path: app/code/core/Mage/Catalog/Model/Resource/Product/Website.php
-
message: "#^Parameter \\#1 \\$array of function array_reverse expects array, string given\\.$#"
count: 1
- path: ../app/code/core/Mage/Catalog/Model/Resource/Setup.php
+ path: app/code/core/Mage/Catalog/Model/Resource/Setup.php
-
message: "#^Parameter \\#3 \\$default of method Mage_Eav_Model_Entity_Setup\\:\\:_getValue\\(\\) expects string\\|null, int given\\.$#"
count: 15
- path: ../app/code/core/Mage/Catalog/Model/Resource/Setup.php
+ path: app/code/core/Mage/Catalog/Model/Resource/Setup.php
-
message: "#^Parameter \\#1 \\$categoryIds of method Mage_Catalog_Model_Resource_Url\\:\\:_getCategories\\(\\) expects array\\|int, null given\\.$#"
count: 1
- path: ../app/code/core/Mage/Catalog/Model/Resource/Url.php
+ path: app/code/core/Mage/Catalog/Model/Resource/Url.php
-
message: "#^Parameter \\#1 \\$productIds of method Mage_Catalog_Model_Resource_Url\\:\\:_getProducts\\(\\) expects array\\|int, null given\\.$#"
count: 1
- path: ../app/code/core/Mage/Catalog/Model/Resource/Url.php
+ path: app/code/core/Mage/Catalog/Model/Resource/Url.php
-
message: "#^Parameter \\#3 \\$storeId of method Mage_Catalog_Model_Resource_Url\\:\\:_getProductAttribute\\(\\) expects string, int given\\.$#"
count: 1
- path: ../app/code/core/Mage/Catalog/Model/Resource/Url.php
+ path: app/code/core/Mage/Catalog/Model/Resource/Url.php
-
message: "#^Variable \\$category might not be defined\\.$#"
count: 1
- path: ../app/code/core/Mage/Catalog/Model/Resource/Url.php
+ path: app/code/core/Mage/Catalog/Model/Resource/Url.php
-
message: "#^Variable \\$rootCategoryPath might not be defined\\.$#"
count: 1
- path: ../app/code/core/Mage/Catalog/Model/Resource/Url.php
+ path: app/code/core/Mage/Catalog/Model/Resource/Url.php
-
message: "#^Variable \\$rootCategoryPathLength might not be defined\\.$#"
count: 2
- path: ../app/code/core/Mage/Catalog/Model/Resource/Url.php
+ path: app/code/core/Mage/Catalog/Model/Resource/Url.php
-
message: "#^Call to function is_null\\(\\) with Mage_Catalog_Model_Resource_Url will always evaluate to false\\.$#"
count: 1
- path: ../app/code/core/Mage/Catalog/Model/Url.php
+ path: app/code/core/Mage/Catalog/Model/Url.php
-
message: "#^Parameter \\#2 \\$categoryIds of method Mage_Catalog_Model_Resource_Url\\:\\:prepareRewrites\\(\\) expects array\\|int\\|null, false given\\.$#"
count: 1
- path: ../app/code/core/Mage/Catalog/Model/Url.php
+ path: app/code/core/Mage/Catalog/Model/Url.php
-
message: "#^Parameter \\#2 \\$categoryIds of method Mage_Catalog_Model_Resource_Url\\:\\:prepareRewrites\\(\\) expects array\\|int\\|null, string given\\.$#"
count: 1
- path: ../app/code/core/Mage/Catalog/Model/Url.php
+ path: app/code/core/Mage/Catalog/Model/Url.php
-
message: "#^Property Mage_Catalog_Model_Url\\:\\:\\$_rewrite \\(Varien_Object\\) does not accept null\\.$#"
count: 2
- path: ../app/code/core/Mage/Catalog/Model/Url.php
+ path: app/code/core/Mage/Catalog/Model/Url.php
-
message: "#^Property Mage_Catalog_Model_Url\\:\\:\\$_saveRewritesHistory \\(bool\\) on left side of \\?\\? is not nullable\\.$#"
count: 1
- path: ../app/code/core/Mage/Catalog/Model/Url.php
+ path: app/code/core/Mage/Catalog/Model/Url.php
-
message: "#^Left side of && is always true\\.$#"
count: 1
- path: ../app/code/core/Mage/Catalog/controllers/CategoryController.php
+ path: app/code/core/Mage/Catalog/controllers/CategoryController.php
-
message: "#^Parameter \\#1 \\$store of method Mage_Core_Model_Locale\\:\\:isStoreDateInInterval\\(\\) expects int\\|Mage_Core_Model_Store\\|string, null given\\.$#"
count: 1
- path: ../app/code/core/Mage/Catalog/controllers/CategoryController.php
+ path: app/code/core/Mage/Catalog/controllers/CategoryController.php
-
message: "#^Left side of && is always true\\.$#"
count: 1
- path: ../app/code/core/Mage/Catalog/controllers/ProductController.php
+ path: app/code/core/Mage/Catalog/controllers/ProductController.php
-
message: "#^Negated boolean expression is always false\\.$#"
count: 1
- path: ../app/code/core/Mage/Catalog/controllers/ProductController.php
+ path: app/code/core/Mage/Catalog/controllers/ProductController.php
-
message: "#^Parameter \\#1 \\$store of method Mage_Core_Model_Locale\\:\\:isStoreDateInInterval\\(\\) expects int\\|Mage_Core_Model_Store\\|string, null given\\.$#"
count: 1
- path: ../app/code/core/Mage/Catalog/controllers/ProductController.php
+ path: app/code/core/Mage/Catalog/controllers/ProductController.php
-
message: "#^Parameter \\#3 \\$value of method Mage_Core_Controller_Varien_Action\\:\\:setFlag\\(\\) expects int\\|string, true given\\.$#"
count: 1
- path: ../app/code/core/Mage/Catalog/controllers/Seo/SitemapController.php
+ path: app/code/core/Mage/Catalog/controllers/Seo/SitemapController.php
-
message: "#^Unreachable statement \\- code above always terminates\\.$#"
count: 1
- path: ../app/code/core/Mage/CatalogIndex/Model/Aggregation.php
+ path: app/code/core/Mage/CatalogIndex/Model/Aggregation.php
-
message: "#^Call to an undefined method Mage_CatalogIndex_Model_Resource_Attribute\\:\\:checkCount\\(\\)\\.$#"
count: 1
- path: ../app/code/core/Mage/CatalogIndex/Model/Attribute.php
+ path: app/code/core/Mage/CatalogIndex/Model/Attribute.php
-
message: "#^Call to function is_null\\(\\) with Mage_Catalog_Model_Product_Type_Abstract will always evaluate to false\\.$#"
count: 1
- path: ../app/code/core/Mage/CatalogIndex/Model/Data/Abstract.php
+ path: app/code/core/Mage/CatalogIndex/Model/Data/Abstract.php
-
message: "#^Parameter \\#1 \\$products of method Mage_CatalogIndex_Model_Data_Abstract\\:\\:getAttributeData\\(\\) expects array, int given\\.$#"
count: 1
- path: ../app/code/core/Mage/CatalogIndex/Model/Data/Abstract.php
+ path: app/code/core/Mage/CatalogIndex/Model/Data/Abstract.php
-
message: "#^Property Mage_CatalogIndex_Model_Data_Abstract\\:\\:\\$_typeInstance \\(Mage_Catalog_Model_Product_Type_Abstract\\) does not accept Mage_Core_Model_Abstract\\|false\\.$#"
count: 1
- path: ../app/code/core/Mage/CatalogIndex/Model/Data/Abstract.php
+ path: app/code/core/Mage/CatalogIndex/Model/Data/Abstract.php
-
message: "#^Variable \\$idField might not be defined\\.$#"
count: 1
- path: ../app/code/core/Mage/CatalogIndex/Model/Data/Abstract.php
+ path: app/code/core/Mage/CatalogIndex/Model/Data/Abstract.php
-
message: "#^Variable \\$whereField might not be defined\\.$#"
count: 1
- path: ../app/code/core/Mage/CatalogIndex/Model/Data/Abstract.php
+ path: app/code/core/Mage/CatalogIndex/Model/Data/Abstract.php
-
message: "#^Parameter \\#1 \\$product \\(array\\) of method Mage_CatalogIndex_Model_Data_Grouped\\:\\:getFinalPrice\\(\\) should be compatible with parameter \\$product \\(int\\) of method Mage_CatalogIndex_Model_Data_Abstract\\:\\:getFinalPrice\\(\\)$#"
count: 1
- path: ../app/code/core/Mage/CatalogIndex/Model/Data/Grouped.php
+ path: app/code/core/Mage/CatalogIndex/Model/Data/Grouped.php
-
message: "#^Return type \\(false\\) of method Mage_CatalogIndex_Model_Data_Grouped\\:\\:getFinalPrice\\(\\) should be compatible with return type \\(float\\) of method Mage_CatalogIndex_Model_Data_Abstract\\:\\:getFinalPrice\\(\\)$#"
count: 1
- path: ../app/code/core/Mage/CatalogIndex/Model/Data/Grouped.php
+ path: app/code/core/Mage/CatalogIndex/Model/Data/Grouped.php
-
message: "#^Property Mage_CatalogIndex_Model_Data_Simple\\:\\:\\$_haveChildren \\(array\\\\) does not accept default value of type false\\.$#"
count: 1
- path: ../app/code/core/Mage/CatalogIndex/Model/Data/Simple.php
+ path: app/code/core/Mage/CatalogIndex/Model/Data/Simple.php
-
message: "#^Property Mage_CatalogIndex_Model_Data_Virtual\\:\\:\\$_haveChildren \\(array\\\\) does not accept default value of type false\\.$#"
count: 1
- path: ../app/code/core/Mage/CatalogIndex/Model/Data/Virtual.php
+ path: app/code/core/Mage/CatalogIndex/Model/Data/Virtual.php
-
message: "#^Call to function is_array\\(\\) with mixed will always evaluate to false\\.$#"
count: 1
- path: ../app/code/core/Mage/CatalogIndex/Model/Indexer.php
+ path: app/code/core/Mage/CatalogIndex/Model/Indexer.php
-
message: "#^Call to function is_null\\(\\) with array will always evaluate to false\\.$#"
count: 1
- path: ../app/code/core/Mage/CatalogIndex/Model/Indexer.php
+ path: app/code/core/Mage/CatalogIndex/Model/Indexer.php
-
message: "#^Negated boolean expression is always false\\.$#"
count: 1
- path: ../app/code/core/Mage/CatalogIndex/Model/Indexer.php
+ path: app/code/core/Mage/CatalogIndex/Model/Indexer.php
-
message: "#^Variable \\$kill in isset\\(\\) always exists and is not nullable\\.$#"
count: 1
- path: ../app/code/core/Mage/CatalogIndex/Model/Indexer.php
+ path: app/code/core/Mage/CatalogIndex/Model/Indexer.php
-
message: "#^Variable \\$storeObject might not be defined\\.$#"
count: 2
- path: ../app/code/core/Mage/CatalogIndex/Model/Indexer.php
+ path: app/code/core/Mage/CatalogIndex/Model/Indexer.php
-
message: "#^Return type \\(string\\) of method Mage_CatalogIndex_Model_Indexer_Eav\\:\\:_getIndexableAttributeConditions\\(\\) should be compatible with return type \\(array\\) of method Mage_CatalogIndex_Model_Indexer_Abstract\\:\\:_getIndexableAttributeConditions\\(\\)$#"
count: 1
- path: ../app/code/core/Mage/CatalogIndex/Model/Indexer/Eav.php
+ path: app/code/core/Mage/CatalogIndex/Model/Indexer/Eav.php
-
message: "#^Call to function is_null\\(\\) with string will always evaluate to false\\.$#"
count: 1
- path: ../app/code/core/Mage/CatalogIndex/Model/Indexer/Minimalprice.php
+ path: app/code/core/Mage/CatalogIndex/Model/Indexer/Minimalprice.php
-
message: "#^Return type \\(string\\) of method Mage_CatalogIndex_Model_Indexer_Price\\:\\:_getIndexableAttributeConditions\\(\\) should be compatible with return type \\(array\\) of method Mage_CatalogIndex_Model_Indexer_Abstract\\:\\:_getIndexableAttributeConditions\\(\\)$#"
count: 1
- path: ../app/code/core/Mage/CatalogIndex/Model/Indexer/Price.php
+ path: app/code/core/Mage/CatalogIndex/Model/Indexer/Price.php
-
message: "#^If condition is always true\\.$#"
count: 1
- path: ../app/code/core/Mage/CatalogIndex/Model/Price.php
+ path: app/code/core/Mage/CatalogIndex/Model/Price.php
-
message: "#^Negated boolean expression is always false\\.$#"
count: 1
- path: ../app/code/core/Mage/CatalogIndex/Model/Resource/Aggregation.php
+ path: app/code/core/Mage/CatalogIndex/Model/Resource/Aggregation.php
-
message: "#^Parameter \\#1 \\$aggregationId of method Mage_CatalogIndex_Model_Resource_Aggregation\\:\\:_saveTagRelations\\(\\) expects int, string given\\.$#"
count: 1
- path: ../app/code/core/Mage/CatalogIndex/Model/Resource/Aggregation.php
+ path: app/code/core/Mage/CatalogIndex/Model/Resource/Aggregation.php
-
message: "#^Parameter \\#1 \\$date of method Mage_Core_Model_Resource_Abstract\\:\\:formatDate\\(\\) expects string\\|Zend_Date\\|true\\|null, int\\<1, max\\> given\\.$#"
count: 1
- path: ../app/code/core/Mage/CatalogIndex/Model/Resource/Aggregation.php
+ path: app/code/core/Mage/CatalogIndex/Model/Resource/Aggregation.php
-
message: "#^Parameter \\#1 \\$select of method Mage_CatalogIndex_Model_Resource_Data_Abstract\\:\\:_addAttributeFilter\\(\\) expects Varien_Db_Select, Zend_Db_Select given\\.$#"
count: 1
- path: ../app/code/core/Mage/CatalogIndex/Model/Resource/Data/Configurable.php
+ path: app/code/core/Mage/CatalogIndex/Model/Resource/Data/Configurable.php
-
message: "#^Parameter \\#1 \\$select of method Mage_CatalogIndex_Model_Resource_Data_Abstract\\:\\:_addAttributeFilter\\(\\) expects Varien_Db_Select, Zend_Db_Select given\\.$#"
count: 1
- path: ../app/code/core/Mage/CatalogIndex/Model/Resource/Data/Grouped.php
+ path: app/code/core/Mage/CatalogIndex/Model/Resource/Data/Grouped.php
-
message: "#^Method Mage_CatalogIndex_Model_Resource_Indexer_Abstract\\:\\:saveIndex\\(\\) with return type void returns mixed but should not return anything\\.$#"
count: 1
- path: ../app/code/core/Mage/CatalogIndex/Model/Resource/Indexer/Abstract.php
+ path: app/code/core/Mage/CatalogIndex/Model/Resource/Indexer/Abstract.php
-
message: "#^Binary operation \"\\*\" between string and float results in an error\\.$#"
count: 1
- path: ../app/code/core/Mage/CatalogIndex/Model/Resource/Price.php
+ path: app/code/core/Mage/CatalogIndex/Model/Resource/Price.php
-
message: "#^Call to function is_null\\(\\) with array will always evaluate to false\\.$#"
count: 1
- path: ../app/code/core/Mage/CatalogIndex/Model/Resource/Setup.php
+ path: app/code/core/Mage/CatalogIndex/Model/Resource/Setup.php
-
message: "#^Parameter \\#3 \\$storeIds of method Mage_CatalogIndex_Model_Resource_Setup\\:\\:_setWebsiteInfo\\(\\) expects array, Mage_Core_Model_Website given\\.$#"
count: 1
- path: ../app/code/core/Mage/CatalogIndex/Model/Resource/Setup.php
+ path: app/code/core/Mage/CatalogIndex/Model/Resource/Setup.php
-
message: "#^Call to function is_null\\(\\) with Mage_Customer_Model_Resource_Group_Collection will always evaluate to false\\.$#"
count: 1
- path: ../app/code/core/Mage/CatalogIndex/Model/Retreiver.php
+ path: app/code/core/Mage/CatalogIndex/Model/Retreiver.php
-
message: "#^Method Mage_CatalogIndex_Model_Retreiver\\:\\:getRetreiver\\(\\) should return Mage_CatalogIndex_Model_Data_Abstract but returns Mage_Core_Model_Abstract\\.$#"
count: 1
- path: ../app/code/core/Mage/CatalogIndex/Model/Retreiver.php
+ path: app/code/core/Mage/CatalogIndex/Model/Retreiver.php
-
message: "#^Call to function is_null\\(\\) with array will always evaluate to false\\.$#"
count: 1
- path: ../app/code/core/Mage/CatalogInventory/Block/Adminhtml/Form/Field/Customergroup.php
+ path: app/code/core/Mage/CatalogInventory/Block/Adminhtml/Form/Field/Customergroup.php
-
message: "#^Parameter \\#1 \\$value of method Mage_Core_Block_Html_Select\\:\\:addOption\\(\\) expects string, int given\\.$#"
count: 1
- path: ../app/code/core/Mage/CatalogInventory/Block/Adminhtml/Form/Field/Customergroup.php
+ path: app/code/core/Mage/CatalogInventory/Block/Adminhtml/Form/Field/Customergroup.php
-
message: "#^Negated boolean expression is always false\\.$#"
count: 1
- path: ../app/code/core/Mage/CatalogInventory/Block/Adminhtml/Form/Field/Minsaleqty.php
+ path: app/code/core/Mage/CatalogInventory/Block/Adminhtml/Form/Field/Minsaleqty.php
-
message: "#^Property Mage_CatalogInventory_Block_Adminhtml_Form_Field_Minsaleqty\\:\\:\\$_groupRenderer \\(Mage_CatalogInventory_Block_Adminhtml_Form_Field_Customergroup\\) does not accept Mage_Core_Block_Abstract\\|false\\.$#"
count: 1
- path: ../app/code/core/Mage/CatalogInventory/Block/Adminhtml/Form/Field/Minsaleqty.php
+ path: app/code/core/Mage/CatalogInventory/Block/Adminhtml/Form/Field/Minsaleqty.php
-
message: "#^If condition is always true\\.$#"
count: 4
- path: ../app/code/core/Mage/CatalogInventory/Model/Observer.php
+ path: app/code/core/Mage/CatalogInventory/Model/Observer.php
-
message: "#^Method Mage_CatalogInventory_Model_Observer\\:\\:_getQuoteItemQtyForCheck\\(\\) should return int but returns float\\.$#"
count: 1
- path: ../app/code/core/Mage/CatalogInventory/Model/Observer.php
+ path: app/code/core/Mage/CatalogInventory/Model/Observer.php
-
message: "#^Negated boolean expression is always false\\.$#"
count: 2
- path: ../app/code/core/Mage/CatalogInventory/Model/Observer.php
+ path: app/code/core/Mage/CatalogInventory/Model/Observer.php
-
message: "#^Parameter \\#1 \\$product of method Mage_Catalog_Model_Product_Type_Abstract\\:\\:getForceChildItemQtyChanges\\(\\) expects null, Mage_Catalog_Model_Product given\\.$#"
count: 1
- path: ../app/code/core/Mage/CatalogInventory/Model/Observer.php
+ path: app/code/core/Mage/CatalogInventory/Model/Observer.php
-
message: "#^Parameter \\#1 \\$type of method Mage_Sales_Model_Quote\\:\\:removeErrorInfosByParams\\(\\) expects string, null given\\.$#"
count: 1
- path: ../app/code/core/Mage/CatalogInventory/Model/Observer.php
+ path: app/code/core/Mage/CatalogInventory/Model/Observer.php
-
message: "#^Parameter \\#2 \\$product of method Mage_Catalog_Model_Product_Type_Abstract\\:\\:prepareQuoteItemQty\\(\\) expects null, Mage_Catalog_Model_Product given\\.$#"
count: 1
- path: ../app/code/core/Mage/CatalogInventory/Model/Observer.php
+ path: app/code/core/Mage/CatalogInventory/Model/Observer.php
-
message: "#^Binary operation \"\\*\" between string and 0\\.3 results in an error\\.$#"
count: 1
- path: ../app/code/core/Mage/CatalogInventory/Model/Resource/Indexer/Stock.php
+ path: app/code/core/Mage/CatalogInventory/Model/Resource/Indexer/Stock.php
-
message: "#^Binary operation \"\\+\" between int\\<0, max\\> and string results in an error\\.$#"
count: 1
- path: ../app/code/core/Mage/CatalogInventory/Model/Resource/Indexer/Stock.php
+ path: app/code/core/Mage/CatalogInventory/Model/Resource/Indexer/Stock.php
-
message: "#^Call to function is_null\\(\\) with array will always evaluate to false\\.$#"
count: 1
- path: ../app/code/core/Mage/CatalogInventory/Model/Resource/Indexer/Stock.php
+ path: app/code/core/Mage/CatalogInventory/Model/Resource/Indexer/Stock.php
-
message: "#^Cannot call method setTypeId\\(\\) on Mage_Core_Model_Resource_Db_Collection_Abstract\\|false\\.$#"
count: 1
- path: ../app/code/core/Mage/CatalogInventory/Model/Resource/Indexer/Stock.php
+ path: app/code/core/Mage/CatalogInventory/Model/Resource/Indexer/Stock.php
-
message: "#^Parameter \\#2 \\$true of method Varien_Db_Adapter_Pdo_Mysql\\:\\:getCheckSql\\(\\) expects string, int given\\.$#"
count: 1
- path: ../app/code/core/Mage/CatalogInventory/Model/Resource/Indexer/Stock/Configurable.php
+ path: app/code/core/Mage/CatalogInventory/Model/Resource/Indexer/Stock/Configurable.php
-
message: "#^Parameter \\#3 \\$false of method Varien_Db_Adapter_Pdo_Mysql\\:\\:getCheckSql\\(\\) expects string, int given\\.$#"
count: 2
- path: ../app/code/core/Mage/CatalogInventory/Model/Resource/Indexer/Stock/Configurable.php
+ path: app/code/core/Mage/CatalogInventory/Model/Resource/Indexer/Stock/Configurable.php
-
message: "#^Call to function is_null\\(\\) with string will always evaluate to false\\.$#"
count: 1
- path: ../app/code/core/Mage/CatalogInventory/Model/Resource/Indexer/Stock/Default.php
+ path: app/code/core/Mage/CatalogInventory/Model/Resource/Indexer/Stock/Default.php
-
message: "#^Parameter \\#2 \\$true of method Varien_Db_Adapter_Pdo_Mysql\\:\\:getCheckSql\\(\\) expects string, int given\\.$#"
count: 2
- path: ../app/code/core/Mage/CatalogInventory/Model/Resource/Indexer/Stock/Default.php
+ path: app/code/core/Mage/CatalogInventory/Model/Resource/Indexer/Stock/Default.php
-
message: "#^Parameter \\#3 \\$false of method Varien_Db_Adapter_Pdo_Mysql\\:\\:getCheckSql\\(\\) expects string, int given\\.$#"
count: 3
- path: ../app/code/core/Mage/CatalogInventory/Model/Resource/Indexer/Stock/Default.php
+ path: app/code/core/Mage/CatalogInventory/Model/Resource/Indexer/Stock/Default.php
-
message: "#^Parameter \\#2 \\$true of method Varien_Db_Adapter_Pdo_Mysql\\:\\:getCheckSql\\(\\) expects string, int given\\.$#"
count: 1
- path: ../app/code/core/Mage/CatalogInventory/Model/Resource/Indexer/Stock/Grouped.php
+ path: app/code/core/Mage/CatalogInventory/Model/Resource/Indexer/Stock/Grouped.php
-
message: "#^Parameter \\#3 \\$false of method Varien_Db_Adapter_Pdo_Mysql\\:\\:getCheckSql\\(\\) expects string, int given\\.$#"
count: 2
- path: ../app/code/core/Mage/CatalogInventory/Model/Resource/Indexer/Stock/Grouped.php
+ path: app/code/core/Mage/CatalogInventory/Model/Resource/Indexer/Stock/Grouped.php
-
message: "#^Parameter \\#1 \\$fieldName of method Varien_Db_Adapter_Interface\\:\\:prepareSqlCondition\\(\\) expects string, bool given\\.$#"
count: 1
- path: ../app/code/core/Mage/CatalogInventory/Model/Resource/Stock.php
+ path: app/code/core/Mage/CatalogInventory/Model/Resource/Stock.php
-
message: "#^Parameter \\#2 \\$true of method Varien_Db_Adapter_Interface\\:\\:getCheckSql\\(\\) expects string, int given\\.$#"
count: 1
- path: ../app/code/core/Mage/CatalogInventory/Model/Resource/Stock.php
+ path: app/code/core/Mage/CatalogInventory/Model/Resource/Stock.php
-
message: "#^Parameter \\#4 \\$cond of method Mage_Eav_Model_Entity_Collection_Abstract\\:\\:joinTable\\(\\) expects array\\|null, string given\\.$#"
count: 1
- path: ../app/code/core/Mage/CatalogInventory/Model/Resource/Stock.php
+ path: app/code/core/Mage/CatalogInventory/Model/Resource/Stock.php
-
message: "#^Property Mage_CatalogInventory_Model_Resource_Stock\\:\\:\\$_isConfigBackorders \\(bool\\) does not accept int\\.$#"
count: 1
- path: ../app/code/core/Mage/CatalogInventory/Model/Resource/Stock.php
+ path: app/code/core/Mage/CatalogInventory/Model/Resource/Stock.php
-
message: "#^Property Mage_CatalogInventory_Model_Resource_Stock\\:\\:\\$_isConfigManageStock \\(bool\\) does not accept int\\.$#"
count: 1
- path: ../app/code/core/Mage/CatalogInventory/Model/Resource/Stock.php
+ path: app/code/core/Mage/CatalogInventory/Model/Resource/Stock.php
-
message: "#^Parameter \\#2 \\$true of method Varien_Db_Adapter_Pdo_Mysql\\:\\:getCheckSql\\(\\) expects string, int given\\.$#"
count: 1
- path: ../app/code/core/Mage/CatalogInventory/Model/Resource/Stock/Item.php
+ path: app/code/core/Mage/CatalogInventory/Model/Resource/Stock/Item.php
-
message: "#^Return type \\(Varien_Db_Select\\) of method Mage_CatalogInventory_Model_Resource_Stock_Item_Collection\\:\\:_initSelect\\(\\) should be compatible with return type \\(\\$this\\(Mage_Core_Model_Resource_Db_Collection_Abstract\\)\\) of method Mage_Core_Model_Resource_Db_Collection_Abstract\\:\\:_initSelect\\(\\)$#"
count: 1
- path: ../app/code/core/Mage/CatalogInventory/Model/Resource/Stock/Item/Collection.php
+ path: app/code/core/Mage/CatalogInventory/Model/Resource/Stock/Item/Collection.php
-
message: "#^Parameter \\#1 \\$products of method Mage_CatalogInventory_Model_Resource_Stock_Item_Collection\\:\\:addProductsFilter\\(\\) expects array\\, Mage_Catalog_Model_Resource_Product_Collection given\\.$#"
count: 1
- path: ../app/code/core/Mage/CatalogInventory/Model/Stock.php
+ path: app/code/core/Mage/CatalogInventory/Model/Stock.php
-
message: "#^If condition is always true\\.$#"
count: 1
- path: ../app/code/core/Mage/CatalogInventory/Model/Stock/Item.php
+ path: app/code/core/Mage/CatalogInventory/Model/Stock/Item.php
-
message: "#^Left side of && is always true\\.$#"
count: 1
- path: ../app/code/core/Mage/CatalogInventory/Model/Stock/Item.php
+ path: app/code/core/Mage/CatalogInventory/Model/Stock/Item.php
-
message: "#^Negated boolean expression is always false\\.$#"
count: 1
- path: ../app/code/core/Mage/CatalogInventory/Model/Stock/Item.php
+ path: app/code/core/Mage/CatalogInventory/Model/Stock/Item.php
-
message: "#^Property Mage_CatalogInventory_Model_Stock_Item\\:\\:\\$_productInstance \\(Mage_Catalog_Model_Product\\) does not accept null\\.$#"
count: 1
- path: ../app/code/core/Mage/CatalogInventory/Model/Stock/Item.php
+ path: app/code/core/Mage/CatalogInventory/Model/Stock/Item.php
-
message: "#^Ternary operator condition is always true\\.$#"
count: 1
- path: ../app/code/core/Mage/CatalogInventory/Model/Stock/Item.php
+ path: app/code/core/Mage/CatalogInventory/Model/Stock/Item.php
-
message: "#^Unreachable statement \\- code above always terminates\\.$#"
count: 1
- path: ../app/code/core/Mage/CatalogInventory/Model/Stock/Item.php
+ path: app/code/core/Mage/CatalogInventory/Model/Stock/Item.php
-
message: "#^Variable \\$parentItem in empty\\(\\) always exists and is not falsy\\.$#"
count: 1
- path: ../app/code/core/Mage/CatalogInventory/Model/Stock/Item.php
+ path: app/code/core/Mage/CatalogInventory/Model/Stock/Item.php
-
message: "#^Parameter \\#1 \\$sku of method Mage_Catalog_Model_Product\\:\\:getIdBySku\\(\\) expects string, int given\\.$#"
count: 1
- path: ../app/code/core/Mage/CatalogInventory/Model/Stock/Item/Api.php
+ path: app/code/core/Mage/CatalogInventory/Model/Stock/Item/Api.php
-
message: "#^Parameter \\#1 \\$sku of method Mage_Catalog_Model_Product\\:\\:getIdBySku\\(\\) expects string, int given\\.$#"
count: 1
- path: ../app/code/core/Mage/CatalogInventory/Model/Stock/Item/Api/V2.php
+ path: app/code/core/Mage/CatalogInventory/Model/Stock/Item/Api/V2.php
-
message: "#^Call to function is_null\\(\\) with array will always evaluate to false\\.$#"
count: 2
- path: ../app/code/core/Mage/CatalogInventory/Model/Stock/Status.php
+ path: app/code/core/Mage/CatalogInventory/Model/Stock/Status.php
-
message: "#^If condition is always true\\.$#"
count: 1
- path: ../app/code/core/Mage/CatalogInventory/Model/Stock/Status.php
+ path: app/code/core/Mage/CatalogInventory/Model/Stock/Status.php
-
message: "#^If condition is always true\\.$#"
count: 1
- path: ../app/code/core/Mage/CatalogRule/Model/Action/Index/Refresh.php
+ path: app/code/core/Mage/CatalogRule/Model/Action/Index/Refresh.php
-
message: "#^Parameter \\#1 \\$expression of class Zend_Db_Expr constructor expects string, int given\\.$#"
count: 4
- path: ../app/code/core/Mage/CatalogRule/Model/Action/Index/Refresh.php
+ path: app/code/core/Mage/CatalogRule/Model/Action/Index/Refresh.php
-
message: "#^Return type \\(int\\) of method Mage_CatalogRule_Model_Action_Index_Refresh_Row\\:\\:_getProduct\\(\\) should be compatible with return type \\(null\\) of method Mage_CatalogRule_Model_Action_Index_Refresh\\:\\:_getProduct\\(\\)$#"
count: 1
- path: ../app/code/core/Mage/CatalogRule/Model/Action/Index/Refresh/Row.php
+ path: app/code/core/Mage/CatalogRule/Model/Action/Index/Refresh/Row.php
-
message: "#^Call to function is_null\\(\\) with int will always evaluate to false\\.$#"
count: 1
- path: ../app/code/core/Mage/CatalogRule/Model/Observer.php
+ path: app/code/core/Mage/CatalogRule/Model/Observer.php
-
message: "#^Parameter \\#1 \\$combine of method Mage_CatalogRule_Model_Observer\\:\\:_removeAttributeFromConditions\\(\\) expects Mage_CatalogRule_Model_Rule_Condition_Combine, Mage_Rule_Model_Condition_Combine given\\.$#"
count: 1
- path: ../app/code/core/Mage/CatalogRule/Model/Observer.php
+ path: app/code/core/Mage/CatalogRule/Model/Observer.php
-
message: "#^Variable \\$gId might not be defined\\.$#"
count: 1
- path: ../app/code/core/Mage/CatalogRule/Model/Observer.php
+ path: app/code/core/Mage/CatalogRule/Model/Observer.php
-
message: "#^Variable \\$pId might not be defined\\.$#"
count: 1
- path: ../app/code/core/Mage/CatalogRule/Model/Observer.php
+ path: app/code/core/Mage/CatalogRule/Model/Observer.php
-
message: "#^Variable \\$wId might not be defined\\.$#"
count: 1
- path: ../app/code/core/Mage/CatalogRule/Model/Observer.php
+ path: app/code/core/Mage/CatalogRule/Model/Observer.php
-
message: "#^Parameter \\#1 \\$expression of class Zend_Db_Expr constructor expects string, float given\\.$#"
count: 2
- path: ../app/code/core/Mage/CatalogRule/Model/Resource/Rule.php
+ path: app/code/core/Mage/CatalogRule/Model/Resource/Rule.php
-
message: "#^Parameter \\#1 \\$expression of class Zend_Db_Expr constructor expects string, int given\\.$#"
count: 3
- path: ../app/code/core/Mage/CatalogRule/Model/Resource/Rule.php
+ path: app/code/core/Mage/CatalogRule/Model/Resource/Rule.php
-
message: "#^Parameter \\#1 \\$expression of class Zend_Db_Expr constructor expects string, int\\<0, 86398\\>\\|int\\<86400, max\\> given\\.$#"
count: 1
- path: ../app/code/core/Mage/CatalogRule/Model/Resource/Rule.php
+ path: app/code/core/Mage/CatalogRule/Model/Resource/Rule.php
-
message: "#^Variable \\$indexAlias might not be defined\\.$#"
count: 1
- path: ../app/code/core/Mage/CatalogRule/Model/Resource/Rule/Product/Price.php
+ path: app/code/core/Mage/CatalogRule/Model/Resource/Rule/Product/Price.php
-
message: "#^Call to an undefined method Mage_Rule_Model_Condition_Combine\\:\\:collectValidatedAttributes\\(\\)\\.$#"
count: 1
- path: ../app/code/core/Mage/CatalogRule/Model/Rule.php
+ path: app/code/core/Mage/CatalogRule/Model/Rule.php
-
message: "#^Call to function is_null\\(\\) with array will always evaluate to false\\.$#"
count: 1
- path: ../app/code/core/Mage/CatalogRule/Model/Rule.php
+ path: app/code/core/Mage/CatalogRule/Model/Rule.php
-
message: "#^If condition is always true\\.$#"
count: 1
- path: ../app/code/core/Mage/CatalogRule/Model/Rule.php
+ path: app/code/core/Mage/CatalogRule/Model/Rule.php
-
message: "#^Parameter \\#1 \\$product of method Mage_CatalogRule_Model_Resource_Rule\\:\\:applyAllRules\\(\\) expects int\\|Mage_Catalog_Model_Product\\|null, Mage_Core_Model_Abstract given\\.$#"
count: 1
- path: ../app/code/core/Mage/CatalogRule/Model/Rule.php
+ path: app/code/core/Mage/CatalogRule/Model/Rule.php
-
message: "#^Parameter \\#2 \\$product of method Mage_CatalogRule_Model_Resource_Rule\\:\\:applyToProduct\\(\\) expects Mage_Catalog_Model_Product, Mage_Core_Model_Abstract given\\.$#"
count: 1
- path: ../app/code/core/Mage/CatalogRule/Model/Rule.php
+ path: app/code/core/Mage/CatalogRule/Model/Rule.php
-
message: "#^Method Mage_Eav_Model_Entity_Attribute_Source_Interface\\:\\:getAllOptions\\(\\) invoked with 1 parameter, 0 required\\.$#"
count: 1
- path: ../app/code/core/Mage/CatalogSearch/Block/Advanced/Form.php
+ path: app/code/core/Mage/CatalogSearch/Block/Advanced/Form.php
-
message: "#^Parameter \\#1 \\$currency of method Mage_Directory_Model_Currency\\:\\:getCurrencyRates\\(\\) expects string, Mage_Directory_Model_Currency given\\.$#"
count: 1
- path: ../app/code/core/Mage/CatalogSearch/Block/Advanced/Form.php
+ path: app/code/core/Mage/CatalogSearch/Block/Advanced/Form.php
-
message: "#^Unreachable statement \\- code above always terminates\\.$#"
count: 1
- path: ../app/code/core/Mage/CatalogSearch/Block/Advanced/Form.php
+ path: app/code/core/Mage/CatalogSearch/Block/Advanced/Form.php
-
message: "#^Parameter \\#2 \\$offset of function array_slice expects int, float given\\.$#"
count: 1
- path: ../app/code/core/Mage/CatalogSearch/Block/Advanced/Result.php
+ path: app/code/core/Mage/CatalogSearch/Block/Advanced/Result.php
-
message: "#^Parameter \\#3 \\$length of function array_slice expects int\\|null, float given\\.$#"
count: 1
- path: ../app/code/core/Mage/CatalogSearch/Block/Advanced/Result.php
+ path: app/code/core/Mage/CatalogSearch/Block/Advanced/Result.php
-
message: "#^Negated boolean expression is always false\\.$#"
count: 1
- path: ../app/code/core/Mage/CatalogSearch/Block/Autocomplete.php
+ path: app/code/core/Mage/CatalogSearch/Block/Autocomplete.php
-
message: "#^Call to function is_null\\(\\) with Mage_CatalogSearch_Model_Resource_Fulltext_Collection will always evaluate to false\\.$#"
count: 1
- path: ../app/code/core/Mage/CatalogSearch/Block/Result.php
+ path: app/code/core/Mage/CatalogSearch/Block/Result.php
-
message: "#^Property Mage_CatalogSearch_Block_Result\\:\\:\\$_productCollection \\(Mage_CatalogSearch_Model_Resource_Fulltext_Collection\\) does not accept Mage_Eav_Model_Entity_Collection_Abstract\\.$#"
count: 1
- path: ../app/code/core/Mage/CatalogSearch/Block/Result.php
+ path: app/code/core/Mage/CatalogSearch/Block/Result.php
-
message: "#^Variable \\$temp might not be defined\\.$#"
count: 1
- path: ../app/code/core/Mage/CatalogSearch/Block/Term.php
+ path: app/code/core/Mage/CatalogSearch/Block/Term.php
-
message: "#^Variable \\$termKeys might not be defined\\.$#"
count: 2
- path: ../app/code/core/Mage/CatalogSearch/Block/Term.php
+ path: app/code/core/Mage/CatalogSearch/Block/Term.php
-
message: "#^Left side of && is always true\\.$#"
count: 1
- path: ../app/code/core/Mage/CatalogSearch/Helper/Data.php
+ path: app/code/core/Mage/CatalogSearch/Helper/Data.php
-
message: "#^Negated boolean expression is always false\\.$#"
count: 3
- path: ../app/code/core/Mage/CatalogSearch/Helper/Data.php
+ path: app/code/core/Mage/CatalogSearch/Helper/Data.php
-
message: "#^Property Mage_CatalogSearch_Helper_Data\\:\\:\\$_queryText \\(string\\) in isset\\(\\) is not nullable\\.$#"
count: 1
- path: ../app/code/core/Mage/CatalogSearch/Helper/Data.php
+ path: app/code/core/Mage/CatalogSearch/Helper/Data.php
-
message: "#^Call to function is_array\\(\\) with bool\\|string will always evaluate to false\\.$#"
count: 1
- path: ../app/code/core/Mage/CatalogSearch/Model/Advanced.php
+ path: app/code/core/Mage/CatalogSearch/Model/Advanced.php
-
message: "#^Call to function is_null\\(\\) with Mage_CatalogSearch_Model_Resource_Advanced_Collection will always evaluate to false\\.$#"
count: 1
- path: ../app/code/core/Mage/CatalogSearch/Model/Advanced.php
+ path: app/code/core/Mage/CatalogSearch/Model/Advanced.php
-
message: "#^Method Mage_CatalogSearch_Model_Advanced\\:\\:getProductCollection\\(\\) should return Mage_CatalogSearch_Model_Resource_Advanced_Collection but returns array\\|float\\|int\\|string\\|false\\|null\\.$#"
count: 1
- path: ../app/code/core/Mage/CatalogSearch/Model/Advanced.php
+ path: app/code/core/Mage/CatalogSearch/Model/Advanced.php
-
message: "#^Return type \\(bool\\) of method Mage_CatalogSearch_Model_Layer_Filter_Attribute\\:\\:_getIsFilterableAttribute\\(\\) should be compatible with return type \\(Mage_Catalog_Model_Resource_Eav_Attribute\\) of method Mage_Catalog_Model_Layer_Filter_Attribute\\:\\:_getIsFilterableAttribute\\(\\)$#"
count: 1
- path: ../app/code/core/Mage/CatalogSearch/Model/Layer/Filter/Attribute.php
+ path: app/code/core/Mage/CatalogSearch/Model/Layer/Filter/Attribute.php
-
message: "#^Variable \\$select might not be defined\\.$#"
count: 1
- path: ../app/code/core/Mage/CatalogSearch/Model/Resource/Advanced/Collection.php
+ path: app/code/core/Mage/CatalogSearch/Model/Resource/Advanced/Collection.php
-
message: "#^Call to function is_array\\(\\) with bool\\|string will always evaluate to false\\.$#"
count: 1
- path: ../app/code/core/Mage/CatalogSearch/Model/Resource/Fulltext.php
+ path: app/code/core/Mage/CatalogSearch/Model/Resource/Fulltext.php
-
message: "#^Call to function is_null\\(\\) with array will always evaluate to false\\.$#"
count: 1
- path: ../app/code/core/Mage/CatalogSearch/Model/Resource/Fulltext.php
+ path: app/code/core/Mage/CatalogSearch/Model/Resource/Fulltext.php
-
message: "#^If condition is always true\\.$#"
count: 4
- path: ../app/code/core/Mage/CatalogSearch/Model/Resource/Fulltext.php
+ path: app/code/core/Mage/CatalogSearch/Model/Resource/Fulltext.php
-
message: "#^Left side of && is always true\\.$#"
count: 1
- path: ../app/code/core/Mage/CatalogSearch/Model/Resource/Fulltext.php
+ path: app/code/core/Mage/CatalogSearch/Model/Resource/Fulltext.php
-
message: "#^Parameter \\#1 \\$entity of method Mage_Eav_Model_Entity_Attribute_Abstract\\:\\:setEntity\\(\\) expects Mage_Eav_Model_Entity_Abstract, Mage_Core_Model_Resource_Abstract given\\.$#"
count: 1
- path: ../app/code/core/Mage/CatalogSearch/Model/Resource/Fulltext.php
+ path: app/code/core/Mage/CatalogSearch/Model/Resource/Fulltext.php
-
message: "#^Parameter \\#1 \\$expression of class Zend_Db_Expr constructor expects string, int given\\.$#"
count: 1
- path: ../app/code/core/Mage/CatalogSearch/Model/Resource/Fulltext.php
+ path: app/code/core/Mage/CatalogSearch/Model/Resource/Fulltext.php
-
message: "#^Parameter \\#1 \\$typeId of method Mage_CatalogSearch_Model_Resource_Fulltext\\:\\:_getProductTypeInstance\\(\\) expects string, int given\\.$#"
count: 1
- path: ../app/code/core/Mage/CatalogSearch/Model/Resource/Fulltext.php
+ path: app/code/core/Mage/CatalogSearch/Model/Resource/Fulltext.php
-
message: "#^Parameter \\#2 \\$typeId of method Mage_CatalogSearch_Model_Resource_Fulltext\\:\\:_getProductChildrenIds\\(\\) expects int, string given\\.$#"
count: 1
- path: ../app/code/core/Mage/CatalogSearch/Model/Resource/Fulltext.php
+ path: app/code/core/Mage/CatalogSearch/Model/Resource/Fulltext.php
-
message: "#^Unreachable statement \\- code above always terminates\\.$#"
count: 1
- path: ../app/code/core/Mage/CatalogSearch/Model/Resource/Fulltext.php
+ path: app/code/core/Mage/CatalogSearch/Model/Resource/Fulltext.php
-
message: "#^Call to function is_null\\(\\) with array will always evaluate to false\\.$#"
count: 1
- path: ../app/code/core/Mage/CatalogSearch/Model/Resource/Fulltext/Collection.php
+ path: app/code/core/Mage/CatalogSearch/Model/Resource/Fulltext/Collection.php
-
message: "#^If condition is always false\\.$#"
count: 1
- path: ../app/code/core/Mage/CatalogSearch/Model/Resource/Fulltext/Collection.php
+ path: app/code/core/Mage/CatalogSearch/Model/Resource/Fulltext/Collection.php
-
message: "#^Property Mage_CatalogSearch_Model_Resource_Fulltext_Collection\\:\\:\\$_relevanceSortOrder \\(null\\) does not accept default value of type int\\.$#"
count: 1
- path: ../app/code/core/Mage/CatalogSearch/Model/Resource/Fulltext/Collection.php
+ path: app/code/core/Mage/CatalogSearch/Model/Resource/Fulltext/Collection.php
-
message: "#^Property Mage_CatalogSearch_Model_Resource_Fulltext_Collection\\:\\:\\$_relevanceSortOrder \\(null\\) does not accept int\\.$#"
count: 1
- path: ../app/code/core/Mage/CatalogSearch/Model/Resource/Fulltext/Collection.php
+ path: app/code/core/Mage/CatalogSearch/Model/Resource/Fulltext/Collection.php
-
message: "#^If condition is always true\\.$#"
count: 1
- path: ../app/code/core/Mage/CatalogSearch/Model/Resource/Search/Collection.php
+ path: app/code/core/Mage/CatalogSearch/Model/Resource/Search/Collection.php
-
message: "#^Negated boolean expression is always false\\.$#"
count: 1
- path: ../app/code/core/Mage/CatalogSearch/Model/Resource/Search/Collection.php
+ path: app/code/core/Mage/CatalogSearch/Model/Resource/Search/Collection.php
-
message: "#^Parameter \\#3 \\$value of method Mage_Core_Controller_Varien_Action\\:\\:setFlag\\(\\) expects int\\|string, true given\\.$#"
count: 1
- path: ../app/code/core/Mage/CatalogSearch/controllers/TermController.php
+ path: app/code/core/Mage/CatalogSearch/controllers/TermController.php
-
message: "#^Negated boolean expression is always false\\.$#"
count: 1
- path: ../app/code/core/Mage/Centinel/Block/Adminhtml/Validation.php
+ path: app/code/core/Mage/Centinel/Block/Adminhtml/Validation.php
-
message: "#^Left side of && is always true\\.$#"
count: 1
- path: ../app/code/core/Mage/Centinel/Block/Adminhtml/Validation/Form.php
+ path: app/code/core/Mage/Centinel/Block/Adminhtml/Validation/Form.php
-
message: "#^Right side of && is always true\\.$#"
count: 1
- path: ../app/code/core/Mage/Centinel/Block/Adminhtml/Validation/Form.php
+ path: app/code/core/Mage/Centinel/Block/Adminhtml/Validation/Form.php
-
message: "#^If condition is always true\\.$#"
count: 1
- path: ../app/code/core/Mage/Centinel/Helper/Data.php
+ path: app/code/core/Mage/Centinel/Helper/Data.php
-
message: "#^Cannot call method setItem\\(\\) on array\\.$#"
count: 1
- path: ../app/code/core/Mage/Checkout/Block/Cart/Abstract.php
+ path: app/code/core/Mage/Checkout/Block/Cart/Abstract.php
-
message: "#^If condition is always true\\.$#"
count: 1
- path: ../app/code/core/Mage/Checkout/Block/Cart/Crosssell.php
+ path: app/code/core/Mage/Checkout/Block/Cart/Crosssell.php
-
message: "#^Variable \\$ninProductIds in empty\\(\\) always exists and is not falsy\\.$#"
count: 1
- path: ../app/code/core/Mage/Checkout/Block/Cart/Crosssell.php
+ path: app/code/core/Mage/Checkout/Block/Cart/Crosssell.php
-
message: "#^If condition is always true\\.$#"
count: 1
- path: ../app/code/core/Mage/Checkout/Block/Cart/Item/Renderer.php
+ path: app/code/core/Mage/Checkout/Block/Cart/Item/Renderer.php
-
message: "#^Right side of && is always false\\.$#"
count: 1
- path: ../app/code/core/Mage/Checkout/Block/Cart/Item/Renderer.php
+ path: app/code/core/Mage/Checkout/Block/Cart/Item/Renderer.php
-
message: "#^Negated boolean expression is always false\\.$#"
count: 1
- path: ../app/code/core/Mage/Checkout/Block/Cart/Item/Renderer/Configurable.php
+ path: app/code/core/Mage/Checkout/Block/Cart/Item/Renderer/Configurable.php
-
message: "#^Parameter \\#1 \\$productThumbnail of method Mage_Checkout_Block_Cart_Item_Renderer\\:\\:overrideProductThumbnail\\(\\) expects Mage_Catalog_Helper_Image, null given\\.$#"
count: 1
- path: ../app/code/core/Mage/Checkout/Block/Cart/Item/Renderer/Grouped.php
+ path: app/code/core/Mage/Checkout/Block/Cart/Item/Renderer/Grouped.php
-
message: "#^Property Mage_Checkout_Block_Cart_Shipping\\:\\:\\$_address \\(array\\) does not accept Mage_Sales_Model_Quote_Address\\.$#"
count: 1
- path: ../app/code/core/Mage/Checkout/Block/Cart/Shipping.php
+ path: app/code/core/Mage/Checkout/Block/Cart/Shipping.php
-
message: "#^Method Mage_Checkout_Block_Cart_Sidebar\\:\\:_addTax\\(\\) is unused\\.$#"
count: 1
- path: ../app/code/core/Mage/Checkout/Block/Cart/Sidebar.php
+ path: app/code/core/Mage/Checkout/Block/Cart/Sidebar.php
-
message: "#^Left side of && is always true\\.$#"
count: 2
- path: ../app/code/core/Mage/Checkout/Block/Links.php
+ path: app/code/core/Mage/Checkout/Block/Links.php
-
message: "#^If condition is always true\\.$#"
count: 1
- path: ../app/code/core/Mage/Checkout/Block/Onepage/Abstract.php
+ path: app/code/core/Mage/Checkout/Block/Onepage/Abstract.php
-
message: "#^Call to function is_null\\(\\) with Mage_Sales_Model_Quote_Address will always evaluate to false\\.$#"
count: 1
- path: ../app/code/core/Mage/Checkout/Block/Onepage/Billing.php
+ path: app/code/core/Mage/Checkout/Block/Onepage/Billing.php
-
message: "#^Negated boolean expression is always false\\.$#"
count: 1
- path: ../app/code/core/Mage/Checkout/Block/Onepage/Billing.php
+ path: app/code/core/Mage/Checkout/Block/Onepage/Billing.php
-
message: "#^Property Mage_Checkout_Block_Onepage_Billing\\:\\:\\$_taxvat \\(Mage_Customer_Block_Widget_Taxvat\\) does not accept Mage_Core_Block_Abstract\\|false\\.$#"
count: 1
- path: ../app/code/core/Mage/Checkout/Block/Onepage/Billing.php
+ path: app/code/core/Mage/Checkout/Block/Onepage/Billing.php
-
message: "#^Right side of && is always true\\.$#"
count: 3
- path: ../app/code/core/Mage/Checkout/Block/Onepage/Billing.php
+ path: app/code/core/Mage/Checkout/Block/Onepage/Billing.php
-
message: "#^Method Mage_Checkout_Block_Onepage_Progress\\:\\:getShippingPriceInclTax\\(\\) should return float but returns string\\.$#"
count: 1
- path: ../app/code/core/Mage/Checkout/Block/Onepage/Progress.php
+ path: app/code/core/Mage/Checkout/Block/Onepage/Progress.php
-
message: "#^Call to function is_null\\(\\) with Mage_Sales_Model_Quote_Address will always evaluate to false\\.$#"
count: 1
- path: ../app/code/core/Mage/Checkout/Block/Onepage/Shipping.php
+ path: app/code/core/Mage/Checkout/Block/Onepage/Shipping.php
-
message: "#^Property Mage_Checkout_Block_Onepage_Success\\:\\:\\$_order is unused\\.$#"
count: 1
- path: ../app/code/core/Mage/Checkout/Block/Onepage/Success.php
+ path: app/code/core/Mage/Checkout/Block/Onepage/Success.php
-
message: "#^Left side of && is always true\\.$#"
count: 1
- path: ../app/code/core/Mage/Checkout/Controller/Action.php
+ path: app/code/core/Mage/Checkout/Controller/Action.php
-
message: "#^Parameter \\#3 \\$value of method Mage_Core_Controller_Varien_Action\\:\\:setFlag\\(\\) expects int\\|string, true given\\.$#"
count: 1
- path: ../app/code/core/Mage/Checkout/Controller/Action.php
+ path: app/code/core/Mage/Checkout/Controller/Action.php
-
message: "#^If condition is always true\\.$#"
count: 1
- path: ../app/code/core/Mage/Checkout/Helper/Data.php
+ path: app/code/core/Mage/Checkout/Helper/Data.php
-
message: "#^Negated boolean expression is always false\\.$#"
count: 1
- path: ../app/code/core/Mage/Checkout/Helper/Data.php
+ path: app/code/core/Mage/Checkout/Helper/Data.php
-
message: "#^Call to function is_null\\(\\) with int\\|string will always evaluate to false\\.$#"
count: 2
- path: ../app/code/core/Mage/Checkout/Model/Api/Resource.php
+ path: app/code/core/Mage/Checkout/Model/Api/Resource.php
-
message: "#^Variable \\$storeId might not be defined\\.$#"
count: 1
- path: ../app/code/core/Mage/Checkout/Model/Api/Resource.php
+ path: app/code/core/Mage/Checkout/Model/Api/Resource.php
-
message: "#^Call to function is_null\\(\\) with int\\|string will always evaluate to false\\.$#"
count: 1
- path: ../app/code/core/Mage/Checkout/Model/Api/Resource/Customer.php
+ path: app/code/core/Mage/Checkout/Model/Api/Resource/Customer.php
-
message: "#^Method Mage_Checkout_Model_Cart\\:\\:saveQuote\\(\\) should return Mage_Checkout_Model_Cart_Interface but return statement is missing\\.$#"
count: 1
- path: ../app/code/core/Mage/Checkout/Model/Cart.php
+ path: app/code/core/Mage/Checkout/Model/Cart.php
-
message: "#^Negated boolean expression is always false\\.$#"
count: 5
- path: ../app/code/core/Mage/Checkout/Model/Cart.php
+ path: app/code/core/Mage/Checkout/Model/Cart.php
-
message: "#^Parameter \\#2 \\$message of method Mage_Checkout_Model_Session\\:\\:addQuoteItemMessage\\(\\) expects Mage_Core_Model_Message, Mage_Core_Model_Message_Error\\|Mage_Core_Model_Message_Notice\\|Mage_Core_Model_Message_Success\\|Mage_Core_Model_Message_Warning given\\.$#"
count: 1
- path: ../app/code/core/Mage/Checkout/Model/Cart.php
+ path: app/code/core/Mage/Checkout/Model/Cart.php
-
message: "#^Result of && is always false\\.$#"
count: 1
- path: ../app/code/core/Mage/Checkout/Model/Cart.php
+ path: app/code/core/Mage/Checkout/Model/Cart.php
-
message: "#^Variable \\$product might not be defined\\.$#"
count: 1
- path: ../app/code/core/Mage/Checkout/Model/Cart.php
+ path: app/code/core/Mage/Checkout/Model/Cart.php
-
message: "#^Variable \\$productId might not be defined\\.$#"
count: 1
- path: ../app/code/core/Mage/Checkout/Model/Cart.php
+ path: app/code/core/Mage/Checkout/Model/Cart.php
-
message: "#^If condition is always true\\.$#"
count: 1
- path: ../app/code/core/Mage/Checkout/Model/Cart/Api.php
+ path: app/code/core/Mage/Checkout/Model/Cart/Api.php
-
message: "#^Variable \\$order might not be defined\\.$#"
count: 1
- path: ../app/code/core/Mage/Checkout/Model/Cart/Api.php
+ path: app/code/core/Mage/Checkout/Model/Cart/Api.php
-
message: "#^Variable \\$quote might not be defined\\.$#"
count: 1
- path: ../app/code/core/Mage/Checkout/Model/Cart/Api.php
+ path: app/code/core/Mage/Checkout/Model/Cart/Api.php
-
message: "#^Negated boolean expression is always false\\.$#"
count: 1
- path: ../app/code/core/Mage/Checkout/Model/Cart/Coupon/Api.php
+ path: app/code/core/Mage/Checkout/Model/Cart/Coupon/Api.php
-
message: "#^Variable \\$customer might not be defined\\.$#"
count: 4
- path: ../app/code/core/Mage/Checkout/Model/Cart/Customer/Api.php
+ path: app/code/core/Mage/Checkout/Model/Cart/Customer/Api.php
-
message: "#^Parameter \\#1 \\$data \\(object\\) of method Mage_Checkout_Model_Cart_Customer_Api_V2\\:\\:_prepareCustomerAddressData\\(\\) should be compatible with parameter \\$data \\(array\\) of method Mage_Checkout_Model_Cart_Customer_Api\\:\\:_prepareCustomerAddressData\\(\\)$#"
count: 1
- path: ../app/code/core/Mage/Checkout/Model/Cart/Customer/Api/V2.php
+ path: app/code/core/Mage/Checkout/Model/Cart/Customer/Api/V2.php
-
message: "#^Parameter \\#1 \\$data \\(object\\) of method Mage_Checkout_Model_Cart_Customer_Api_V2\\:\\:_prepareCustomerData\\(\\) should be compatible with parameter \\$data \\(array\\) of method Mage_Checkout_Model_Cart_Customer_Api\\:\\:_prepareCustomerData\\(\\)$#"
count: 1
- path: ../app/code/core/Mage/Checkout/Model/Cart/Customer/Api/V2.php
+ path: app/code/core/Mage/Checkout/Model/Cart/Customer/Api/V2.php
-
message: "#^Unreachable statement \\- code above always terminates\\.$#"
count: 1
- path: ../app/code/core/Mage/Checkout/Model/Cart/Customer/Api/V2.php
+ path: app/code/core/Mage/Checkout/Model/Cart/Customer/Api/V2.php
-
message: "#^Call to function is_null\\(\\) with int\\|string will always evaluate to false\\.$#"
count: 2
- path: ../app/code/core/Mage/Checkout/Model/Cart/Payment/Api.php
+ path: app/code/core/Mage/Checkout/Model/Cart/Payment/Api.php
-
message: "#^Right side of && is always true\\.$#"
count: 1
- path: ../app/code/core/Mage/Checkout/Model/Cart/Payment/Api.php
+ path: app/code/core/Mage/Checkout/Model/Cart/Payment/Api.php
-
message: "#^Parameter \\#1 \\$data \\(object\\) of method Mage_Checkout_Model_Cart_Payment_Api_V2\\:\\:_preparePaymentData\\(\\) should be compatible with parameter \\$data \\(array\\) of method Mage_Checkout_Model_Cart_Payment_Api\\:\\:_preparePaymentData\\(\\)$#"
count: 1
- path: ../app/code/core/Mage/Checkout/Model/Cart/Payment/Api/V2.php
+ path: app/code/core/Mage/Checkout/Model/Cart/Payment/Api/V2.php
-
message: "#^Unreachable statement \\- code above always terminates\\.$#"
count: 1
- path: ../app/code/core/Mage/Checkout/Model/Cart/Payment/Api/V2.php
+ path: app/code/core/Mage/Checkout/Model/Cart/Payment/Api/V2.php
-
message: "#^Call to function is_null\\(\\) with int\\|string will always evaluate to false\\.$#"
count: 4
- path: ../app/code/core/Mage/Checkout/Model/Cart/Product/Api.php
+ path: app/code/core/Mage/Checkout/Model/Cart/Product/Api.php
-
message: "#^Left side of && is always true\\.$#"
count: 1
- path: ../app/code/core/Mage/Checkout/Model/Cart/Product/Api.php
+ path: app/code/core/Mage/Checkout/Model/Cart/Product/Api.php
-
message: "#^Method Mage_Checkout_Model_Cart_Product_Api_V2\\:\\:_prepareProductsData\\(\\) should return array but returns mixed\\.$#"
count: 1
- path: ../app/code/core/Mage/Checkout/Model/Cart/Product/Api/V2.php
+ path: app/code/core/Mage/Checkout/Model/Cart/Product/Api/V2.php
-
message: "#^Call to function is_null\\(\\) with int\\|string will always evaluate to false\\.$#"
count: 2
- path: ../app/code/core/Mage/Checkout/Model/Cart/Shipping/Api.php
+ path: app/code/core/Mage/Checkout/Model/Cart/Shipping/Api.php
-
message: "#^Variable \\$ratesResult might not be defined\\.$#"
count: 1
- path: ../app/code/core/Mage/Checkout/Model/Cart/Shipping/Api.php
+ path: app/code/core/Mage/Checkout/Model/Cart/Shipping/Api.php
-
message: "#^Method Mage_Checkout_Model_Session\\:\\:getQuoteId\\(\\) invoked with 1 parameter, 0 required\\.$#"
count: 1
- path: ../app/code/core/Mage/Checkout/Model/Observer.php
+ path: app/code/core/Mage/Checkout/Model/Observer.php
-
message: "#^Method Mage_Checkout_Model_Session\\:\\:unsetAll\\(\\) should return \\$this\\(Mage_Checkout_Model_Session\\) but return statement is missing\\.$#"
count: 1
- path: ../app/code/core/Mage/Checkout/Model/Session.php
+ path: app/code/core/Mage/Checkout/Model/Session.php
-
message: "#^Parameter \\#1 \\$quoteId of method Mage_Checkout_Model_Session\\:\\:setQuoteId\\(\\) expects int, null given\\.$#"
count: 2
- path: ../app/code/core/Mage/Checkout/Model/Session.php
+ path: app/code/core/Mage/Checkout/Model/Session.php
-
message: "#^Call to an undefined method Mage_Sales_Model_Order\\:\\:createFromQuoteAddress\\(\\)\\.$#"
count: 1
- path: ../app/code/core/Mage/Checkout/Model/Type/Abstract.php
+ path: app/code/core/Mage/Checkout/Model/Type/Abstract.php
-
message: "#^If condition is always true\\.$#"
count: 2
- path: ../app/code/core/Mage/Checkout/Model/Type/Abstract.php
+ path: app/code/core/Mage/Checkout/Model/Type/Abstract.php
-
message: "#^Negated boolean expression is always false\\.$#"
count: 2
- path: ../app/code/core/Mage/Checkout/Model/Type/Abstract.php
+ path: app/code/core/Mage/Checkout/Model/Type/Abstract.php
-
message: "#^If condition is always true\\.$#"
count: 5
- path: ../app/code/core/Mage/Checkout/Model/Type/Multishipping.php
+ path: app/code/core/Mage/Checkout/Model/Type/Multishipping.php
-
message: "#^Method Mage_Sales_Model_Quote\\:\\:getBillingAddress\\(\\) invoked with 1 parameter, 0 required\\.$#"
count: 1
- path: ../app/code/core/Mage/Checkout/Model/Type/Multishipping.php
+ path: app/code/core/Mage/Checkout/Model/Type/Multishipping.php
-
message: "#^Negated boolean expression is always false\\.$#"
count: 1
- path: ../app/code/core/Mage/Checkout/Model/Type/Multishipping.php
+ path: app/code/core/Mage/Checkout/Model/Type/Multishipping.php
-
message: "#^Result of && is always false\\.$#"
count: 2
- path: ../app/code/core/Mage/Checkout/Model/Type/Multishipping.php
+ path: app/code/core/Mage/Checkout/Model/Type/Multishipping.php
-
message: "#^Right side of && is always true\\.$#"
count: 2
- path: ../app/code/core/Mage/Checkout/Model/Type/Multishipping.php
+ path: app/code/core/Mage/Checkout/Model/Type/Multishipping.php
-
message: "#^Variable \\$paymentMethod in empty\\(\\) always exists and is not falsy\\.$#"
count: 1
- path: ../app/code/core/Mage/Checkout/Model/Type/Multishipping.php
+ path: app/code/core/Mage/Checkout/Model/Type/Multishipping.php
-
message: "#^If condition is always true\\.$#"
count: 2
- path: ../app/code/core/Mage/Checkout/Model/Type/Onepage.php
+ path: app/code/core/Mage/Checkout/Model/Type/Onepage.php
-
message: "#^Negated boolean expression is always true\\.$#"
count: 1
- path: ../app/code/core/Mage/Checkout/Model/Type/Onepage.php
+ path: app/code/core/Mage/Checkout/Model/Type/Onepage.php
-
message: "#^Parameter \\#3 \\$storeId of method Mage_Customer_Model_Customer\\:\\:sendNewAccountEmail\\(\\) expects string, int given\\.$#"
count: 2
- path: ../app/code/core/Mage/Checkout/Model/Type/Onepage.php
+ path: app/code/core/Mage/Checkout/Model/Type/Onepage.php
-
message: "#^Property Mage_Checkout_Model_Type_Onepage\\:\\:\\$_quote \\(Mage_Sales_Model_Quote\\) on left side of \\?\\? is not nullable\\.$#"
count: 1
- path: ../app/code/core/Mage/Checkout/Model/Type/Onepage.php
+ path: app/code/core/Mage/Checkout/Model/Type/Onepage.php
-
message: "#^Right side of && is always true\\.$#"
count: 1
- path: ../app/code/core/Mage/Checkout/Model/Type/Onepage.php
+ path: app/code/core/Mage/Checkout/Model/Type/Onepage.php
-
message: "#^Variable \\$customerRequest might not be defined\\.$#"
count: 2
- path: ../app/code/core/Mage/Checkout/Model/Type/Onepage.php
+ path: app/code/core/Mage/Checkout/Model/Type/Onepage.php
-
message: "#^Comparison operation \"\\=\\=\" between 0\\|0\\.0\\|array\\|string\\|false\\|null and 0 results in an error\\.$#"
count: 1
- path: ../app/code/core/Mage/Checkout/controllers/CartController.php
+ path: app/code/core/Mage/Checkout/controllers/CartController.php
-
message: "#^If condition is always true\\.$#"
count: 1
- path: ../app/code/core/Mage/Checkout/controllers/CartController.php
+ path: app/code/core/Mage/Checkout/controllers/CartController.php
-
message: "#^Left side of && is always true\\.$#"
count: 1
- path: ../app/code/core/Mage/Checkout/controllers/CartController.php
+ path: app/code/core/Mage/Checkout/controllers/CartController.php
-
message: "#^Negated boolean expression is always false\\.$#"
count: 2
- path: ../app/code/core/Mage/Checkout/controllers/CartController.php
+ path: app/code/core/Mage/Checkout/controllers/CartController.php
-
message: "#^Parameter \\#2 \\$loginUrl of method Mage_Customer_Model_Session\\:\\:authenticate\\(\\) expects bool\\|null, string given\\.$#"
count: 1
- path: ../app/code/core/Mage/Checkout/controllers/MultishippingController.php
+ path: app/code/core/Mage/Checkout/controllers/MultishippingController.php
-
message: "#^Parameter \\#3 \\$value of method Mage_Core_Controller_Varien_Action\\:\\:setFlag\\(\\) expects int\\|string, true given\\.$#"
count: 7
- path: ../app/code/core/Mage/Checkout/controllers/MultishippingController.php
+ path: app/code/core/Mage/Checkout/controllers/MultishippingController.php
-
message: "#^Call to an undefined method Mage_Sales_Model_Service_Order\\:\\:register\\(\\)\\.$#"
count: 1
- path: ../app/code/core/Mage/Checkout/controllers/OnepageController.php
+ path: app/code/core/Mage/Checkout/controllers/OnepageController.php
-
message: "#^Call to function is_null\\(\\) with Mage_Sales_Model_Order will always evaluate to false\\.$#"
count: 1
- path: ../app/code/core/Mage/Checkout/controllers/OnepageController.php
+ path: app/code/core/Mage/Checkout/controllers/OnepageController.php
-
message: "#^Parameter \\#3 \\$value of method Mage_Core_Controller_Varien_Action\\:\\:setFlag\\(\\) expects int\\|string, true given\\.$#"
count: 1
- path: ../app/code/core/Mage/Checkout/controllers/OnepageController.php
+ path: app/code/core/Mage/Checkout/controllers/OnepageController.php
-
message: "#^If condition is always true\\.$#"
count: 1
- path: ../app/code/core/Mage/Cms/Helper/Page.php
+ path: app/code/core/Mage/Cms/Helper/Page.php
-
message: "#^Negated boolean expression is always false\\.$#"
count: 2
- path: ../app/code/core/Mage/Cms/Helper/Page.php
+ path: app/code/core/Mage/Cms/Helper/Page.php
-
message: "#^Parameter \\#1 \\$route of static method Mage\\:\\:getUrl\\(\\) expects string, null given\\.$#"
count: 1
- path: ../app/code/core/Mage/Cms/Helper/Page.php
+ path: app/code/core/Mage/Cms/Helper/Page.php
-
message: "#^Parameter \\#1 \\$store of method Mage_Core_Model_Locale\\:\\:isStoreDateInInterval\\(\\) expects int\\|Mage_Core_Model_Store\\|string, null given\\.$#"
count: 1
- path: ../app/code/core/Mage/Cms/Helper/Page.php
+ path: app/code/core/Mage/Cms/Helper/Page.php
-
message: "#^Cannot access offset 'cookie' on void\\|true\\.$#"
count: 1
- path: ../app/code/core/Mage/Cms/Model/Wysiwyg/Images/Storage.php
+ path: app/code/core/Mage/Cms/Model/Wysiwyg/Images/Storage.php
-
message: "#^Method Mage_Cms_Model_Wysiwyg_Images_Storage\\:\\:getConfig\\(\\) should return Mage_Core_Model_Config_Element but returns Varien_Simplexml_Element\\|false\\.$#"
count: 1
- path: ../app/code/core/Mage/Cms/Model/Wysiwyg/Images/Storage.php
+ path: app/code/core/Mage/Cms/Model/Wysiwyg/Images/Storage.php
-
message: "#^Property Mage_Cms_Model_Wysiwyg_Images_Storage\\:\\:\\$_config \\(Mage_Core_Model_Config_Element\\) does not accept Varien_Simplexml_Element\\|false\\.$#"
count: 1
- path: ../app/code/core/Mage/Cms/Model/Wysiwyg/Images/Storage.php
+ path: app/code/core/Mage/Cms/Model/Wysiwyg/Images/Storage.php
-
message: "#^Parameter \\#1 \\$attr of method Mage_ConfigurableSwatches_Helper_Data\\:\\:attrIsSwatchType\\(\\) expects int\\|Mage_Eav_Model_Attribute, Mage_Catalog_Model_Resource_Eav_Attribute given\\.$#"
count: 1
- path: ../app/code/core/Mage/ConfigurableSwatches/Block/Catalog/Layer/State/Swatch.php
+ path: app/code/core/Mage/ConfigurableSwatches/Block/Catalog/Layer/State/Swatch.php
-
message: "#^Right side of && is always true\\.$#"
count: 1
- path: ../app/code/core/Mage/ConfigurableSwatches/Helper/Data.php
+ path: app/code/core/Mage/ConfigurableSwatches/Helper/Data.php
-
message: "#^Method Mage_Eav_Model_Entity_Attribute_Source_Interface\\:\\:getAllOptions\\(\\) invoked with 2 parameters, 0 required\\.$#"
count: 1
- path: ../app/code/core/Mage/ConfigurableSwatches/Helper/Productimg.php
+ path: app/code/core/Mage/ConfigurableSwatches/Helper/Productimg.php
-
message: "#^Variable \\$mediaGalleryImages in empty\\(\\) always exists and is not falsy\\.$#"
count: 1
- path: ../app/code/core/Mage/ConfigurableSwatches/Helper/Productimg.php
+ path: app/code/core/Mage/ConfigurableSwatches/Helper/Productimg.php
-
message: "#^Call to function is_null\\(\\) with Mage_Catalog_Model_Product_Type_Configurable_Attribute will always evaluate to false\\.$#"
count: 1
- path: ../app/code/core/Mage/ConfigurableSwatches/Helper/Productlist.php
+ path: app/code/core/Mage/ConfigurableSwatches/Helper/Productlist.php
-
message: "#^Call to function is_null\\(\\) with int will always evaluate to false\\.$#"
count: 1
- path: ../app/code/core/Mage/ConfigurableSwatches/Helper/Productlist.php
+ path: app/code/core/Mage/ConfigurableSwatches/Helper/Productlist.php
-
message: "#^Call to function is_null\\(\\) with string will always evaluate to false\\.$#"
count: 1
- path: ../app/code/core/Mage/ConfigurableSwatches/Helper/Productlist.php
+ path: app/code/core/Mage/ConfigurableSwatches/Helper/Productlist.php
-
message: "#^If condition is always true\\.$#"
count: 1
- path: ../app/code/core/Mage/ConfigurableSwatches/Helper/Productlist.php
+ path: app/code/core/Mage/ConfigurableSwatches/Helper/Productlist.php
-
message: "#^Method Mage_ConfigurableSwatches_Helper_Productlist\\:\\:getSwatchAttribute\\(\\) should return Mage_Eav_Model_Attribute but returns Mage_Catalog_Model_Product_Type_Configurable_Attribute\\.$#"
count: 1
- path: ../app/code/core/Mage/ConfigurableSwatches/Helper/Productlist.php
+ path: app/code/core/Mage/ConfigurableSwatches/Helper/Productlist.php
-
message: "#^Property Mage_ConfigurableSwatches_Helper_Productlist\\:\\:\\$_swatchAttribute \\(Mage_Catalog_Model_Product_Type_Configurable_Attribute\\) does not accept Mage_Eav_Model_Entity_Attribute_Abstract\\|false\\.$#"
count: 1
- path: ../app/code/core/Mage/ConfigurableSwatches/Helper/Productlist.php
+ path: app/code/core/Mage/ConfigurableSwatches/Helper/Productlist.php
-
message: "#^Property Mage_ConfigurableSwatches_Helper_Productlist\\:\\:\\$_swatchAttributeFilteredValue \\(int\\) does not accept false\\.$#"
count: 1
- path: ../app/code/core/Mage/ConfigurableSwatches/Helper/Productlist.php
+ path: app/code/core/Mage/ConfigurableSwatches/Helper/Productlist.php
-
message: "#^Parameter \\#1 \\$select of method Varien_Data_Collection_Db\\:\\:_fetchAll\\(\\) expects Zend_Db_Select, string given\\.$#"
count: 1
- path: ../app/code/core/Mage/ConfigurableSwatches/Model/Resource/Catalog/Product/Type/Configurable/Product/Collection.php
+ path: app/code/core/Mage/ConfigurableSwatches/Model/Resource/Catalog/Product/Type/Configurable/Product/Collection.php
-
message: "#^Variable \\$query might not be defined\\.$#"
count: 2
- path: ../app/code/core/Mage/ConfigurableSwatches/Model/Resource/Catalog/Product/Type/Configurable/Product/Collection.php
+ path: app/code/core/Mage/ConfigurableSwatches/Model/Resource/Catalog/Product/Type/Configurable/Product/Collection.php
-
message: "#^Parameter \\#1 \\$array of function array_unshift expects array, null given\\.$#"
count: 1
- path: ../app/code/core/Mage/ConfigurableSwatches/Model/System/Config/Source/Catalog/Product/Configattribute/Select.php
+ path: app/code/core/Mage/ConfigurableSwatches/Model/System/Config/Source/Catalog/Product/Configattribute/Select.php
-
message: "#^Return type \\(void\\) of method Mage_Contacts_IndexController\\:\\:preDispatch\\(\\) should be compatible with return type \\(\\$this\\(Mage_Core_Controller_Front_Action\\)\\) of method Mage_Core_Controller_Front_Action\\:\\:preDispatch\\(\\)$#"
count: 1
- path: ../app/code/core/Mage/Contacts/controllers/IndexController.php
+ path: app/code/core/Mage/Contacts/controllers/IndexController.php
-
message: "#^Call to function is_null\\(\\) with Mage_Core_Block_Messages will always evaluate to false\\.$#"
count: 1
- path: ../app/code/core/Mage/Core/Block/Abstract.php
+ path: app/code/core/Mage/Core/Block/Abstract.php
-
message: "#^Call to function is_null\\(\\) with Mage_Core_Model_App will always evaluate to false\\.$#"
count: 1
- path: ../app/code/core/Mage/Core/Block/Abstract.php
+ path: app/code/core/Mage/Core/Block/Abstract.php
-
message: "#^Call to function is_null\\(\\) with Mage_Core_Model_Factory will always evaluate to false\\.$#"
count: 1
- path: ../app/code/core/Mage/Core/Block/Abstract.php
+ path: app/code/core/Mage/Core/Block/Abstract.php
-
message: "#^If condition is always true\\.$#"
count: 3
- path: ../app/code/core/Mage/Core/Block/Abstract.php
+ path: app/code/core/Mage/Core/Block/Abstract.php
-
message: "#^Method Mage_Core_Block_Abstract\\:\\:_getUrlModel\\(\\) should return Mage_Core_Model_Url but returns Mage_Core_Model_Abstract\\|false\\.$#"
count: 1
- path: ../app/code/core/Mage/Core/Block/Abstract.php
+ path: app/code/core/Mage/Core/Block/Abstract.php
-
message: "#^Method Mage_Core_Block_Abstract\\:\\:getHelper\\(\\) should return \\$this\\(Mage_Core_Block_Abstract\\) but returns Mage_Core_Block_Abstract\\.$#"
count: 1
- path: ../app/code/core/Mage/Core/Block/Abstract.php
+ path: app/code/core/Mage/Core/Block/Abstract.php
-
message: "#^Method Mage_Core_Block_Abstract\\:\\:getParentBlock\\(\\) should return \\$this\\(Mage_Core_Block_Abstract\\) but returns Mage_Core_Block_Abstract\\.$#"
count: 1
- path: ../app/code/core/Mage/Core/Block/Abstract.php
+ path: app/code/core/Mage/Core/Block/Abstract.php
-
message: "#^Negated boolean expression is always false\\.$#"
count: 2
- path: ../app/code/core/Mage/Core/Block/Abstract.php
+ path: app/code/core/Mage/Core/Block/Abstract.php
-
message: "#^Parameter \\#2 \\$block of method Mage_Core_Model_Layout\\:\\:setBlock\\(\\) expects Mage_Core_Model_Layout, \\$this\\(Mage_Core_Block_Abstract\\) given\\.$#"
count: 1
- path: ../app/code/core/Mage/Core/Block/Abstract.php
+ path: app/code/core/Mage/Core/Block/Abstract.php
-
message: "#^Parameter \\#2 \\$block of method Mage_Core_Model_Layout\\:\\:setBlock\\(\\) expects Mage_Core_Model_Layout, Mage_Core_Block_Abstract given\\.$#"
count: 1
- path: ../app/code/core/Mage/Core/Block/Abstract.php
+ path: app/code/core/Mage/Core/Block/Abstract.php
-
message: "#^Result of && is always false\\.$#"
count: 1
- path: ../app/code/core/Mage/Core/Block/Abstract.php
+ path: app/code/core/Mage/Core/Block/Abstract.php
-
message: "#^Right side of && is always true\\.$#"
count: 1
- path: ../app/code/core/Mage/Core/Block/Abstract.php
+ path: app/code/core/Mage/Core/Block/Abstract.php
-
message: "#^Unreachable statement \\- code above always terminates\\.$#"
count: 1
- path: ../app/code/core/Mage/Core/Block/Abstract.php
+ path: app/code/core/Mage/Core/Block/Abstract.php
-
message: "#^Negated boolean expression is always false\\.$#"
count: 1
- path: ../app/code/core/Mage/Core/Block/Flush.php
+ path: app/code/core/Mage/Core/Block/Flush.php
-
message: "#^Parameter \\#3 \\$value of static method Zend_Locale_Data\\:\\:getContent\\(\\) expects bool\\|string, int given\\.$#"
count: 1
- path: ../app/code/core/Mage/Core/Block/Html/Calendar.php
+ path: app/code/core/Mage/Core/Block/Html/Calendar.php
-
message: "#^Negated boolean expression is always false\\.$#"
count: 1
- path: ../app/code/core/Mage/Core/Block/Html/Select.php
+ path: app/code/core/Mage/Core/Block/Html/Select.php
-
message: "#^Ternary operator condition is always true\\.$#"
count: 1
- path: ../app/code/core/Mage/Core/Block/Messages.php
+ path: app/code/core/Mage/Core/Block/Messages.php
-
message: "#^Negated boolean expression is always false\\.$#"
count: 1
- path: ../app/code/core/Mage/Core/Block/Profiler.php
+ path: app/code/core/Mage/Core/Block/Profiler.php
-
message: "#^Parameter \\#2 \\$return of function print_r expects bool, int given\\.$#"
count: 1
- path: ../app/code/core/Mage/Core/Block/Profiler.php
+ path: app/code/core/Mage/Core/Block/Profiler.php
-
message: "#^If condition is always true\\.$#"
count: 1
- path: ../app/code/core/Mage/Core/Block/Template.php
+ path: app/code/core/Mage/Core/Block/Template.php
-
message: "#^Parameter \\#3 \\$file of static method Mage\\:\\:log\\(\\) expects string, null given\\.$#"
count: 2
- path: ../app/code/core/Mage/Core/Block/Template.php
+ path: app/code/core/Mage/Core/Block/Template.php
-
message: "#^Unreachable statement \\- code above always terminates\\.$#"
count: 1
- path: ../app/code/core/Mage/Core/Block/Template.php
+ path: app/code/core/Mage/Core/Block/Template.php
-
message: "#^Return type \\(void\\) of method Mage_Core_Block_Template_Zend\\:\\:setScriptPath\\(\\) should be compatible with return type \\(\\$this\\(Mage_Core_Block_Template\\)\\) of method Mage_Core_Block_Template\\:\\:setScriptPath\\(\\)$#"
count: 1
- path: ../app/code/core/Mage/Core/Block/Template/Zend.php
+ path: app/code/core/Mage/Core/Block/Template/Zend.php
-
message: "#^Negated boolean expression is always false\\.$#"
count: 1
- path: ../app/code/core/Mage/Core/Block/Text.php
+ path: app/code/core/Mage/Core/Block/Text.php
-
message: "#^Parameter \\#2 \\$value of method Mage_Core_Block_Text_Tag\\:\\:setTagParam\\(\\) expects null, string given\\.$#"
count: 1
- path: ../app/code/core/Mage/Core/Block/Text/Tag/Css.php
+ path: app/code/core/Mage/Core/Block/Text/Tag/Css.php
-
message: "#^Parameter \\#2 \\$value of method Mage_Core_Block_Text_Tag\\:\\:setTagParam\\(\\) expects null, string given\\.$#"
count: 1
- path: ../app/code/core/Mage/Core/Block/Text/Tag/Css/Admin.php
+ path: app/code/core/Mage/Core/Block/Text/Tag/Css/Admin.php
-
message: "#^Parameter \\#1 \\$name of method Mage_Core_Block_Abstract\\:\\:setAttribute\\(\\) expects string, array\\ given\\.$#"
count: 1
- path: ../app/code/core/Mage/Core/Block/Text/Tag/Debug.php
+ path: app/code/core/Mage/Core/Block/Text/Tag/Debug.php
-
message: "#^Parameter \\#1 \\$text of method Mage_Core_Block_Text_Tag\\:\\:setContents\\(\\) expects string, true given\\.$#"
count: 1
- path: ../app/code/core/Mage/Core/Block/Text/Tag/Debug.php
+ path: app/code/core/Mage/Core/Block/Text/Tag/Debug.php
-
message: "#^Parameter \\#2 \\$return of function print_r expects bool, int given\\.$#"
count: 1
- path: ../app/code/core/Mage/Core/Block/Text/Tag/Debug.php
+ path: app/code/core/Mage/Core/Block/Text/Tag/Debug.php
-
message: "#^Parameter \\#2 \\$value of method Mage_Core_Block_Text_Tag\\:\\:setTagParam\\(\\) expects null, string given\\.$#"
count: 1
- path: ../app/code/core/Mage/Core/Block/Text/Tag/Js.php
+ path: app/code/core/Mage/Core/Block/Text/Tag/Js.php
-
message: "#^Parameter \\#2 \\$value of method Zend_Controller_Response_Abstract\\:\\:setHeader\\(\\) expects string, int\\|false given\\.$#"
count: 1
- path: ../app/code/core/Mage/Core/Controller/Front/Action.php
+ path: app/code/core/Mage/Core/Controller/Front/Action.php
-
message: "#^Call to an undefined method Zend_Controller_Router_Interface\\:\\:addRoute\\(\\)\\.$#"
count: 1
- path: ../app/code/core/Mage/Core/Controller/Front/Router.php
+ path: app/code/core/Mage/Core/Controller/Front/Router.php
-
message: "#^Parameter \\#1 \\$type of static method Mage\\:\\:getBaseUrl\\(\\) expects string, array given\\.$#"
count: 1
- path: ../app/code/core/Mage/Core/Controller/Front/Router.php
+ path: app/code/core/Mage/Core/Controller/Front/Router.php
-
message: "#^Negated boolean expression is always false\\.$#"
count: 1
- path: ../app/code/core/Mage/Core/Controller/Request/Http.php
+ path: app/code/core/Mage/Core/Controller/Request/Http.php
-
message: "#^Result of && is always false\\.$#"
count: 1
- path: ../app/code/core/Mage/Core/Controller/Request/Http.php
+ path: app/code/core/Mage/Core/Controller/Request/Http.php
-
message: "#^Strict comparison using \\=\\=\\= between string and false will always evaluate to false\\.$#"
count: 1
- path: ../app/code/core/Mage/Core/Controller/Request/Http.php
+ path: app/code/core/Mage/Core/Controller/Request/Http.php
-
message: "#^Strict comparison using \\=\\=\\= between string and null will always evaluate to false\\.$#"
count: 2
- path: ../app/code/core/Mage/Core/Controller/Request/Http.php
+ path: app/code/core/Mage/Core/Controller/Request/Http.php
-
message: "#^Call to an undefined method Varien_Simplexml_Element\\:\\:is\\(\\)\\.$#"
count: 1
- path: ../app/code/core/Mage/Core/Controller/Varien/Action.php
+ path: app/code/core/Mage/Core/Controller/Varien/Action.php
-
message: "#^Constructor of class Mage_Core_Controller_Varien_Action has an unused parameter \\$invokeArgs\\.$#"
count: 1
- path: ../app/code/core/Mage/Core/Controller/Varien/Action.php
+ path: app/code/core/Mage/Core/Controller/Varien/Action.php
-
message: "#^If condition is always true\\.$#"
count: 1
- path: ../app/code/core/Mage/Core/Controller/Varien/Action.php
+ path: app/code/core/Mage/Core/Controller/Varien/Action.php
-
message: "#^Parameter \\#1 \\$handles of method Mage_Core_Controller_Varien_Action\\:\\:loadLayout\\(\\) expects bool\\|string\\|null, array\\ given\\.$#"
count: 2
- path: ../app/code/core/Mage/Core/Controller/Varien/Action.php
+ path: app/code/core/Mage/Core/Controller/Varien/Action.php
-
message: "#^Parameter \\#2 \\$value of method Zend_Controller_Response_Abstract\\:\\:setHeader\\(\\) expects string, int\\|false given\\.$#"
count: 1
- path: ../app/code/core/Mage/Core/Controller/Varien/Action.php
+ path: app/code/core/Mage/Core/Controller/Varien/Action.php
-
message: "#^Parameter \\#3 \\$value of method Mage_Core_Controller_Varien_Action\\:\\:setFlag\\(\\) expects int\\|string, true given\\.$#"
count: 3
- path: ../app/code/core/Mage/Core/Controller/Varien/Action.php
+ path: app/code/core/Mage/Core/Controller/Varien/Action.php
-
message: "#^Property Mage_Core_Controller_Varien_Action\\:\\:\\$_request \\(Mage_Core_Controller_Request_Http\\) does not accept Zend_Controller_Request_Abstract\\.$#"
count: 1
- path: ../app/code/core/Mage/Core/Controller/Varien/Action.php
+ path: app/code/core/Mage/Core/Controller/Varien/Action.php
-
message: "#^Property Mage_Core_Controller_Varien_Action\\:\\:\\$_response \\(Mage_Core_Controller_Response_Http\\) does not accept Zend_Controller_Response_Abstract\\.$#"
count: 1
- path: ../app/code/core/Mage/Core/Controller/Varien/Action.php
+ path: app/code/core/Mage/Core/Controller/Varien/Action.php
-
message: "#^Argument of an invalid type string supplied for foreach, only iterables are supported\\.$#"
count: 1
- path: ../app/code/core/Mage/Core/Controller/Varien/Front.php
+ path: app/code/core/Mage/Core/Controller/Varien/Front.php
-
message: "#^Comparison operation \"\\>\" between int\\<0, 100\\> and 100 is always false\\.$#"
count: 1
- path: ../app/code/core/Mage/Core/Controller/Varien/Front.php
+ path: app/code/core/Mage/Core/Controller/Varien/Front.php
-
message: "#^If condition is always true\\.$#"
count: 1
- path: ../app/code/core/Mage/Core/Controller/Varien/Front.php
+ path: app/code/core/Mage/Core/Controller/Varien/Front.php
-
message: "#^Method Mage_Core_Controller_Varien_Front\\:\\:_getRequestRewriteController\\(\\) should return Mage_Core_Model_Url_Rewrite_Request but returns bool\\|Mage_Core_Model_Abstract\\.$#"
count: 1
- path: ../app/code/core/Mage/Core/Controller/Varien/Front.php
+ path: app/code/core/Mage/Core/Controller/Varien/Front.php
-
message: "#^Parameter \\#2 \\$useRouterName \\(bool\\) of method Mage_Core_Controller_Varien_Router_Admin\\:\\:collectRoutes\\(\\) should be compatible with parameter \\$useRouterName \\(string\\) of method Mage_Core_Controller_Varien_Router_Standard\\:\\:collectRoutes\\(\\)$#"
count: 1
- path: ../app/code/core/Mage/Core/Controller/Varien/Router/Admin.php
+ path: app/code/core/Mage/Core/Controller/Varien/Router/Admin.php
-
message: "#^Parameter \\#2 \\$useRouterName of method Mage_Core_Controller_Varien_Router_Standard\\:\\:collectRoutes\\(\\) expects string, bool given\\.$#"
count: 1
- path: ../app/code/core/Mage/Core/Controller/Varien/Router/Admin.php
+ path: app/code/core/Mage/Core/Controller/Varien/Router/Admin.php
-
message: "#^Parameter \\#1 \\$store of method Mage_Core_Model_App\\:\\:setCurrentStore\\(\\) expects string, Mage_Core_Model_Store given\\.$#"
count: 1
- path: ../app/code/core/Mage/Core/Controller/Varien/Router/Default.php
+ path: app/code/core/Mage/Core/Controller/Varien/Router/Default.php
-
message: "#^Argument of an invalid type string supplied for foreach, only iterables are supported\\.$#"
count: 1
- path: ../app/code/core/Mage/Core/Controller/Varien/Router/Standard.php
+ path: app/code/core/Mage/Core/Controller/Varien/Router/Standard.php
-
message: "#^Negated boolean expression is always true\\.$#"
count: 1
- path: ../app/code/core/Mage/Core/Controller/Varien/Router/Standard.php
+ path: app/code/core/Mage/Core/Controller/Varien/Router/Standard.php
-
message: "#^Parameter \\#2 \\$modules of method Mage_Core_Controller_Varien_Router_Standard\\:\\:getModuleByName\\(\\) expects string, array given\\.$#"
count: 1
- path: ../app/code/core/Mage/Core/Controller/Varien/Router/Standard.php
+ path: app/code/core/Mage/Core/Controller/Varien/Router/Standard.php
-
message: "#^Variable \\$action might not be defined\\.$#"
count: 2
- path: ../app/code/core/Mage/Core/Controller/Varien/Router/Standard.php
+ path: app/code/core/Mage/Core/Controller/Varien/Router/Standard.php
-
message: "#^Variable \\$controller might not be defined\\.$#"
count: 1
- path: ../app/code/core/Mage/Core/Controller/Varien/Router/Standard.php
+ path: app/code/core/Mage/Core/Controller/Varien/Router/Standard.php
-
message: "#^Variable \\$controllerInstance might not be defined\\.$#"
count: 1
- path: ../app/code/core/Mage/Core/Controller/Varien/Router/Standard.php
+ path: app/code/core/Mage/Core/Controller/Varien/Router/Standard.php
-
message: "#^Variable \\$realModule might not be defined\\.$#"
count: 2
- path: ../app/code/core/Mage/Core/Controller/Varien/Router/Standard.php
+ path: app/code/core/Mage/Core/Controller/Varien/Router/Standard.php
-
message: "#^Method Mage_Core_Helper_Abstract\\:\\:_getRequest\\(\\) should return Mage_Core_Controller_Request_Http but returns Zend_Controller_Request_Http\\.$#"
count: 1
- path: ../app/code/core/Mage/Core/Helper/Abstract.php
+ path: app/code/core/Mage/Core/Helper/Abstract.php
-
message: "#^Negated boolean expression is always false\\.$#"
count: 1
- path: ../app/code/core/Mage/Core/Helper/Abstract.php
+ path: app/code/core/Mage/Core/Helper/Abstract.php
-
message: "#^Parameter \\#2 \\$allowedTags of method Mage_Core_Helper_Abstract\\:\\:escapeHtml\\(\\) expects array\\|null, string\\|null given\\.$#"
count: 1
- path: ../app/code/core/Mage/Core/Helper/Abstract.php
+ path: app/code/core/Mage/Core/Helper/Abstract.php
-
message: "#^Call to function is_null\\(\\) with int will always evaluate to false\\.$#"
count: 1
- path: ../app/code/core/Mage/Core/Helper/File/Storage.php
+ path: app/code/core/Mage/Core/Helper/File/Storage.php
-
message: "#^Call to function is_null\\(\\) with Mage_Core_Model_Resource_File_Storage_Database will always evaluate to false\\.$#"
count: 1
- path: ../app/code/core/Mage/Core/Helper/File/Storage/Database.php
+ path: app/code/core/Mage/Core/Helper/File/Storage/Database.php
-
message: "#^Call to function is_null\\(\\) with string will always evaluate to false\\.$#"
count: 1
- path: ../app/code/core/Mage/Core/Helper/Http.php
+ path: app/code/core/Mage/Core/Helper/Http.php
-
message: "#^Call to function is_null\\(\\) with Varien_Simplexml_Config will always evaluate to false\\.$#"
count: 1
- path: ../app/code/core/Mage/Core/Helper/Js.php
+ path: app/code/core/Mage/Core/Helper/Js.php
-
message: "#^Parameter \\#2 \\$mergeToObject of method Mage_Core_Model_Config\\:\\:loadModulesConfiguration\\(\\) expects Mage_Core_Model_Config_Base\\|null, Varien_Simplexml_Config given\\.$#"
count: 1
- path: ../app/code/core/Mage/Core/Helper/Js.php
+ path: app/code/core/Mage/Core/Helper/Js.php
-
message: "#^Negated boolean expression is always false\\.$#"
count: 1
- path: ../app/code/core/Mage/Core/Helper/String.php
+ path: app/code/core/Mage/Core/Helper/String.php
-
message: "#^Property Mage_Core_Helper_String\\:\\:\\$_arrayHelper \\(Mage_Core_Helper_Array\\) does not accept Mage_Core_Helper_Abstract\\.$#"
count: 1
- path: ../app/code/core/Mage/Core/Helper/String.php
+ path: app/code/core/Mage/Core/Helper/String.php
-
message: "#^If condition is always true\\.$#"
count: 1
- path: ../app/code/core/Mage/Core/Model/Abstract.php
+ path: app/code/core/Mage/Core/Model/Abstract.php
-
message: "#^Negated boolean expression is always false\\.$#"
count: 1
- path: ../app/code/core/Mage/Core/Model/Abstract.php
+ path: app/code/core/Mage/Core/Model/Abstract.php
-
message: "#^Parameter \\#2 \\$arguments of static method Mage\\:\\:getResourceModel\\(\\) expects array, object given\\.$#"
count: 1
- path: ../app/code/core/Mage/Core/Model/Abstract.php
+ path: app/code/core/Mage/Core/Model/Abstract.php
-
message: "#^Property Mage_Core_Model_Abstract\\:\\:\\$_cacheTag \\(string\\|true\\) does not accept default value of type false\\.$#"
count: 1
- path: ../app/code/core/Mage/Core/Model/Abstract.php
+ path: app/code/core/Mage/Core/Model/Abstract.php
-
message: "#^Property Mage_Core_Model_Abstract\\:\\:\\$_isObjectNew \\(bool\\) on left side of \\?\\? is not nullable\\.$#"
count: 1
- path: ../app/code/core/Mage/Core/Model/Abstract.php
+ path: app/code/core/Mage/Core/Model/Abstract.php
-
message: "#^Call to function is_null\\(\\) with Mage_Core_Model_Store will always evaluate to false\\.$#"
count: 1
- path: ../app/code/core/Mage/Core/Model/App.php
+ path: app/code/core/Mage/Core/Model/App.php
-
message: "#^Call to function is_null\\(\\) with Mage_Core_Model_Website will always evaluate to false\\.$#"
count: 1
- path: ../app/code/core/Mage/Core/Model/App.php
+ path: app/code/core/Mage/Core/Model/App.php
-
message: "#^If condition is always true\\.$#"
count: 1
- path: ../app/code/core/Mage/Core/Model/App.php
+ path: app/code/core/Mage/Core/Model/App.php
-
message: "#^Method Mage_Core_Model_App\\:\\:getDefaultStoreView\\(\\) should return Mage_Core_Model_Store but returns null\\.$#"
count: 1
- path: ../app/code/core/Mage/Core/Model/App.php
+ path: app/code/core/Mage/Core/Model/App.php
-
message: "#^Method Mage_Core_Model_App\\:\\:getResponse\\(\\) should return Mage_Core_Controller_Response_Http but returns Zend_Controller_Response_Http\\.$#"
count: 1
- path: ../app/code/core/Mage/Core/Model/App.php
+ path: app/code/core/Mage/Core/Model/App.php
-
message: "#^Negated boolean expression is always false\\.$#"
count: 6
- path: ../app/code/core/Mage/Core/Model/App.php
+ path: app/code/core/Mage/Core/Model/App.php
-
message: "#^Parameter \\#1 \\$group of method Mage_Core_Model_App\\:\\:_getStoreByGroup\\(\\) expects int, string given\\.$#"
count: 1
- path: ../app/code/core/Mage/Core/Model/App.php
+ path: app/code/core/Mage/Core/Model/App.php
-
message: "#^Parameter \\#1 \\$group of method Mage_Core_Model_Store\\:\\:setGroup\\(\\) expects Mage_Core_Model_Store_Group, Varien_Object\\|null given\\.$#"
count: 1
- path: ../app/code/core/Mage/Core/Model/App.php
+ path: app/code/core/Mage/Core/Model/App.php
-
message: "#^Parameter \\#1 \\$website of method Mage_Core_Model_Store\\:\\:setWebsite\\(\\) expects Mage_Core_Model_Website, Varien_Object\\|null given\\.$#"
count: 1
- path: ../app/code/core/Mage/Core/Model/App.php
+ path: app/code/core/Mage/Core/Model/App.php
-
message: "#^Parameter \\#1 \\$website of method Mage_Core_Model_Store_Group\\:\\:setWebsite\\(\\) expects Mage_Core_Model_Website, Varien_Object\\|null given\\.$#"
count: 1
- path: ../app/code/core/Mage/Core/Model/App.php
+ path: app/code/core/Mage/Core/Model/App.php
-
message: "#^Parameter \\#3 \\$period of method Mage_Core_Model_Cookie\\:\\:set\\(\\) expects int\\|null, true given\\.$#"
count: 1
- path: ../app/code/core/Mage/Core/Model/App.php
+ path: app/code/core/Mage/Core/Model/App.php
-
message: "#^Property Mage_Core_Model_App\\:\\:\\$_request \\(Mage_Core_Controller_Request_Http\\) in empty\\(\\) is not falsy\\.$#"
count: 1
- path: ../app/code/core/Mage/Core/Model/App.php
+ path: app/code/core/Mage/Core/Model/App.php
-
message: "#^Property Mage_Core_Model_App\\:\\:\\$_response \\(Zend_Controller_Response_Http\\) in empty\\(\\) is not falsy\\.$#"
count: 1
- path: ../app/code/core/Mage/Core/Model/App.php
+ path: app/code/core/Mage/Core/Model/App.php
-
message: "#^Property Mage_Core_Model_App\\:\\:\\$_store \\(Mage_Core_Model_Store\\) in empty\\(\\) is not falsy\\.$#"
count: 1
- path: ../app/code/core/Mage/Core/Model/App.php
+ path: app/code/core/Mage/Core/Model/App.php
-
message: "#^Property Mage_Core_Model_App\\:\\:\\$_useSessionInUrl \\(bool\\) does not accept string\\|null\\.$#"
count: 1
- path: ../app/code/core/Mage/Core/Model/App.php
+ path: app/code/core/Mage/Core/Model/App.php
-
message: "#^Property Mage_Core_Model_App\\:\\:\\$_website \\(Mage_Core_Model_Website\\) does not accept null\\.$#"
count: 1
- path: ../app/code/core/Mage/Core/Model/App.php
+ path: app/code/core/Mage/Core/Model/App.php
-
message: "#^Result of && is always false\\.$#"
count: 1
- path: ../app/code/core/Mage/Core/Model/App.php
+ path: app/code/core/Mage/Core/Model/App.php
-
message: "#^Unreachable statement \\- code above always terminates\\.$#"
count: 1
- path: ../app/code/core/Mage/Core/Model/App.php
+ path: app/code/core/Mage/Core/Model/App.php
-
message: "#^Variable \\$id in isset\\(\\) always exists and is not nullable\\.$#"
count: 1
- path: ../app/code/core/Mage/Core/Model/App.php
+ path: app/code/core/Mage/Core/Model/App.php
-
message: "#^Parameter \\#1 \\$store of method Mage_Core_Model_App\\:\\:setCurrentStore\\(\\) expects string, int given\\.$#"
count: 1
- path: ../app/code/core/Mage/Core/Model/App/Emulation.php
+ path: app/code/core/Mage/Core/Model/App/Emulation.php
-
message: "#^Call to function is_null\\(\\) with array will always evaluate to false\\.$#"
count: 1
- path: ../app/code/core/Mage/Core/Model/Cache.php
+ path: app/code/core/Mage/Core/Model/Cache.php
-
message: "#^If condition is always true\\.$#"
count: 1
- path: ../app/code/core/Mage/Core/Model/Cache.php
+ path: app/code/core/Mage/Core/Model/Cache.php
-
message: "#^Method Mage_Core_Model_Cache\\:\\:getDbAdapter\\(\\) should return Zend_Db_Adapter_Abstract but returns Varien_Db_Adapter_Interface\\|false\\.$#"
count: 1
- path: ../app/code/core/Mage/Core/Model/Cache.php
+ path: app/code/core/Mage/Core/Model/Cache.php
-
message: "#^Property Mage_Core_Model_Cache\\:\\:\\$_frontend \\(Varien_Cache_Core\\) does not accept Zend_Cache_Core\\|Zend_Cache_Frontend\\.$#"
count: 1
- path: ../app/code/core/Mage/Core/Model/Cache.php
+ path: app/code/core/Mage/Core/Model/Cache.php
-
message: "#^Strict comparison using \\=\\=\\= between string and false will always evaluate to false\\.$#"
count: 1
- path: ../app/code/core/Mage/Core/Model/Cache.php
+ path: app/code/core/Mage/Core/Model/Cache.php
-
message: "#^Call to an undefined method SimpleXMLElement\\:\\:getClassName\\(\\)\\.$#"
count: 1
- path: ../app/code/core/Mage/Core/Model/Config.php
+ path: app/code/core/Mage/Core/Model/Config.php
-
message: "#^Call to an undefined method Varien_Simplexml_Element\\:\\:getClassName\\(\\)\\.$#"
count: 2
- path: ../app/code/core/Mage/Core/Model/Config.php
+ path: app/code/core/Mage/Core/Model/Config.php
-
message: "#^Call to an undefined method Varien_Simplexml_Element\\:\\:is\\(\\)\\.$#"
count: 1
- path: ../app/code/core/Mage/Core/Model/Config.php
+ path: app/code/core/Mage/Core/Model/Config.php
-
message: "#^Call to function is_null\\(\\) with Mage_Core_Model_Resource_Config will always evaluate to false\\.$#"
count: 1
- path: ../app/code/core/Mage/Core/Model/Config.php
+ path: app/code/core/Mage/Core/Model/Config.php
-
message: "#^Method Mage_Core_Model_Config\\:\\:cleanCache\\(\\) should return \\$this\\(Mage_Core_Model_Config\\) but returns Mage_Core_Model_Config\\.$#"
count: 1
- path: ../app/code/core/Mage/Core/Model/Config.php
+ path: app/code/core/Mage/Core/Model/Config.php
-
message: "#^Method Mage_Core_Model_Config\\:\\:getNodeClassInstance\\(\\) should return bool but returns object\\.$#"
count: 1
- path: ../app/code/core/Mage/Core/Model/Config.php
+ path: app/code/core/Mage/Core/Model/Config.php
-
message: "#^Parameter \\#1 \\$data of method Mage_Core_Model_Config\\:\\:_saveCache\\(\\) expects string, int\\<1, max\\> given\\.$#"
count: 1
- path: ../app/code/core/Mage/Core/Model/Config.php
+ path: app/code/core/Mage/Core/Model/Config.php
-
message: "#^Parameter \\#1 \\$fileName of method Mage_Core_Model_Config\\:\\:loadModulesConfiguration\\(\\) expects string, array\\ given\\.$#"
count: 1
- path: ../app/code/core/Mage/Core/Model/Config.php
+ path: app/code/core/Mage/Core/Model/Config.php
-
message: "#^Parameter \\#1 \\$options of method Mage_Core_Model_Config\\:\\:reinit\\(\\) expects array, Mage_Core_Model_Config_Options given\\.$#"
count: 1
- path: ../app/code/core/Mage/Core/Model/Config.php
+ path: app/code/core/Mage/Core/Model/Config.php
-
message: "#^Parameter \\#1 \\$path of method Varien_Simplexml_Element\\:\\:descend\\(\\) expects string, array given\\.$#"
count: 1
- path: ../app/code/core/Mage/Core/Model/Config.php
+ path: app/code/core/Mage/Core/Model/Config.php
-
message: "#^Parameter \\#2 \\$constructArguments of method Mage_Core_Model_Config\\:\\:getModelInstance\\(\\) expects array\\|object, string given\\.$#"
count: 1
- path: ../app/code/core/Mage/Core/Model/Config.php
+ path: app/code/core/Mage/Core/Model/Config.php
-
message: "#^Property Varien_Simplexml_Config\\:\\:\\$_cacheChecksum \\(unknown_type\\) does not accept null\\.$#"
count: 1
- path: ../app/code/core/Mage/Core/Model/Config.php
+ path: app/code/core/Mage/Core/Model/Config.php
-
message: "#^Return type \\(Mage_Core_Model_App\\) of method Mage_Core_Model_Config\\:\\:_saveCache\\(\\) should be compatible with return type \\(bool\\) of method Varien_Simplexml_Config\\:\\:_saveCache\\(\\)$#"
count: 1
- path: ../app/code/core/Mage/Core/Model/Config.php
+ path: app/code/core/Mage/Core/Model/Config.php
-
message: "#^Return type \\(Zend_Cache_Core\\) of method Mage_Core_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/Core/Model/Config.php
+ path: app/code/core/Mage/Core/Model/Config.php
-
message: "#^Return type \\(string\\) of method Mage_Core_Model_Config\\:\\:_loadCache\\(\\) should be compatible with return type \\(bool\\) of method Varien_Simplexml_Config\\:\\:_loadCache\\(\\)$#"
count: 1
- path: ../app/code/core/Mage/Core/Model/Config.php
+ path: app/code/core/Mage/Core/Model/Config.php
-
message: "#^Strict comparison using \\=\\=\\= between int\\|string and false will always evaluate to false\\.$#"
count: 1
- path: ../app/code/core/Mage/Core/Model/Config.php
+ path: app/code/core/Mage/Core/Model/Config.php
-
message: "#^Variable \\$key might not be defined\\.$#"
count: 1
- path: ../app/code/core/Mage/Core/Model/Config.php
+ path: app/code/core/Mage/Core/Model/Config.php
-
message: "#^Call to function is_null\\(\\) with Mage_Core_Model_Store will always evaluate to false\\.$#"
count: 1
- path: ../app/code/core/Mage/Core/Model/Cookie.php
+ path: app/code/core/Mage/Core/Model/Cookie.php
-
message: "#^Method Mage_Core_Model_Cookie\\:\\:getHttponly\\(\\) should return bool but returns null\\.$#"
count: 1
- path: ../app/code/core/Mage/Core/Model/Cookie.php
+ path: app/code/core/Mage/Core/Model/Cookie.php
-
message: "#^Parameter \\#3 \\$options of function setcookie expects array\\{expires\\?\\: int, path\\?\\: string, domain\\?\\: string, secure\\?\\: bool, httponly\\?\\: bool, samesite\\?\\: 'Lax'\\|'lax'\\|'None'\\|'none'\\|'Strict'\\|'strict', url_encode\\?\\: int\\}, array\\{expires\\: int, path\\: string, domain\\: string, secure\\: bool\\|int, httponly\\: bool, samesite\\: string\\} given\\.$#"
count: 1
- path: ../app/code/core/Mage/Core/Model/Cookie.php
+ path: app/code/core/Mage/Core/Model/Cookie.php
-
message: "#^Binary operation \"\\+\" between string and string results in an error\\.$#"
count: 1
- path: ../app/code/core/Mage/Core/Model/Date.php
+ path: app/code/core/Mage/Core/Model/Date.php
-
message: "#^Binary operation \"\\-\" between string and string results in an error\\.$#"
count: 1
- path: ../app/code/core/Mage/Core/Model/Date.php
+ path: app/code/core/Mage/Core/Model/Date.php
-
message: "#^Property Mage_Core_Model_Date\\:\\:\\$_systemOffset is never read, only written\\.$#"
count: 1
- path: ../app/code/core/Mage/Core/Model/Date.php
+ path: app/code/core/Mage/Core/Model/Date.php
-
message: "#^Call to an undefined method Mage_Core_Model_Resource_Design\\:\\:validate\\(\\)\\.$#"
count: 1
- path: ../app/code/core/Mage/Core/Model/Design.php
+ path: app/code/core/Mage/Core/Model/Design.php
-
message: "#^Parameter \\#1 \\$cache of method Varien_Simplexml_Config\\:\\:setCache\\(\\) expects Varien_Simplexml_Config_Cache_Abstract, Zend_Cache_Core given\\.$#"
count: 1
- path: ../app/code/core/Mage/Core/Model/Design/Config.php
+ path: app/code/core/Mage/Core/Model/Design/Config.php
-
message: "#^Parameter \\#2 \\$value of method Varien_Simplexml_Config\\:\\:setNode\\(\\) expects string, null given\\.$#"
count: 1
- path: ../app/code/core/Mage/Core/Model/Design/Config.php
+ path: app/code/core/Mage/Core/Model/Design/Config.php
-
message: "#^Property Varien_Simplexml_Config\\:\\:\\$_cacheChecksum \\(unknown_type\\) does not accept null\\.$#"
count: 1
- path: ../app/code/core/Mage/Core/Model/Design/Config.php
+ path: app/code/core/Mage/Core/Model/Design/Config.php
-
message: "#^Property Mage_Core_Model_Design_Fallback\\:\\:\\$_store \\(Mage_Core_Model_Store\\) on left side of \\?\\? is not nullable\\.$#"
count: 1
- path: ../app/code/core/Mage/Core/Model/Design/Fallback.php
+ path: app/code/core/Mage/Core/Model/Design/Fallback.php
-
message: "#^Binary operation \"\\.\" between non\\-falsy\\-string and array results in an error\\.$#"
count: 1
- path: ../app/code/core/Mage/Core/Model/Design/Package.php
+ path: app/code/core/Mage/Core/Model/Design/Package.php
-
message: "#^Call to function is_null\\(\\) with Mage_Core_Model_Design_Config will always evaluate to false\\.$#"
count: 1
- path: ../app/code/core/Mage/Core/Model/Design/Package.php
+ path: app/code/core/Mage/Core/Model/Design/Package.php
-
message: "#^Call to function is_null\\(\\) with Mage_Core_Model_Design_Fallback will always evaluate to false\\.$#"
count: 1
- path: ../app/code/core/Mage/Core/Model/Design/Package.php
+ path: app/code/core/Mage/Core/Model/Design/Package.php
-
message: "#^Call to function is_null\\(\\) with string will always evaluate to false\\.$#"
count: 1
- path: ../app/code/core/Mage/Core/Model/Design/Package.php
+ path: app/code/core/Mage/Core/Model/Design/Package.php
-
message: "#^Cannot assign offset 'layout'\\|'locale'\\|'skin'\\|'template' to string\\.$#"
count: 1
- path: ../app/code/core/Mage/Core/Model/Design/Package.php
+ path: app/code/core/Mage/Core/Model/Design/Package.php
-
message: "#^Cannot assign offset string to string\\.$#"
count: 1
- path: ../app/code/core/Mage/Core/Model/Design/Package.php
+ path: app/code/core/Mage/Core/Model/Design/Package.php
-
message: "#^If condition is always true\\.$#"
count: 1
- path: ../app/code/core/Mage/Core/Model/Design/Package.php
+ path: app/code/core/Mage/Core/Model/Design/Package.php
-
message: "#^Parameter \\#1 \\$file of method Mage_Core_Model_Design_Package\\:\\:_renderFilename\\(\\) expects array, string given\\.$#"
count: 2
- path: ../app/code/core/Mage/Core/Model/Design/Package.php
+ path: app/code/core/Mage/Core/Model/Design/Package.php
-
message: "#^Property Mage_Core_Model_Design_Package\\:\\:\\$_store \\(int\\|Mage_Core_Model_Store\\|string\\) on left side of \\?\\? is not nullable\\.$#"
count: 1
- path: ../app/code/core/Mage/Core/Model/Design/Package.php
+ path: app/code/core/Mage/Core/Model/Design/Package.php
-
message: "#^Call to function is_null\\(\\) with array will always evaluate to false\\.$#"
count: 1
- path: ../app/code/core/Mage/Core/Model/Design/Source/Design.php
+ path: app/code/core/Mage/Core/Model/Design/Source/Design.php
-
message: "#^Parameter \\#1 \\$policyCode of method Mage_Core_Model_Domainpolicy\\:\\:_getDomainPolicyByCode\\(\\) expects string, int given\\.$#"
count: 2
- path: ../app/code/core/Mage/Core/Model/Domainpolicy.php
+ path: app/code/core/Mage/Core/Model/Domainpolicy.php
-
message: "#^Right side of && is always true\\.$#"
count: 1
- path: ../app/code/core/Mage/Core/Model/Email.php
+ path: app/code/core/Mage/Core/Model/Email.php
-
message: "#^Method Zend_Mail\\:\\:addBcc\\(\\) invoked with 2 parameters, 1 required\\.$#"
count: 1
- path: ../app/code/core/Mage/Core/Model/Email/Queue.php
+ path: app/code/core/Mage/Core/Model/Email/Queue.php
-
message: "#^Method Mage_Core_Model_Email_Template\\:\\:getProcessedTemplate\\(\\) invoked with 2 parameters, 0\\-1 required\\.$#"
count: 1
- path: ../app/code/core/Mage/Core/Model/Email/Template.php
+ path: app/code/core/Mage/Core/Model/Email/Template.php
-
message: "#^Parameter \\#1 \\$html of method Mage_Core_Model_Email_Template\\:\\:getPreparedTemplateText\\(\\) expects null, string given\\.$#"
count: 1
- path: ../app/code/core/Mage/Core/Model/Email/Template.php
+ path: app/code/core/Mage/Core/Model/Email/Template.php
-
message: "#^Parameter \\#1 \\$html of method Mage_Core_Model_Email_Template_Abstract\\:\\:_applyInlineCss\\(\\) expects string, null given\\.$#"
count: 1
- path: ../app/code/core/Mage/Core/Model/Email/Template.php
+ path: app/code/core/Mage/Core/Model/Email/Template.php
-
message: "#^Parameter \\#1 \\$value of method Mage_Core_Model_Email_Template\\:\\:setId\\(\\) expects int, string given\\.$#"
count: 1
- path: ../app/code/core/Mage/Core/Model/Email/Template.php
+ path: app/code/core/Mage/Core/Model/Email/Template.php
-
message: "#^Method Mage_Core_Model_Email_Template_Abstract\\:\\:loadByConfigPath\\(\\) invoked with 2 parameters, 1 required\\.$#"
count: 1
- path: ../app/code/core/Mage/Core/Model/Email/Template/Abstract.php
+ path: app/code/core/Mage/Core/Model/Email/Template/Abstract.php
-
message: "#^Parameter \\#1 \\$id of method Mage_Core_Model_App\\:\\:getStore\\(\\) expects bool\\|int\\|Mage_Core_Model_Store\\|string\\|null, Varien_Object\\|null given\\.$#"
count: 1
- path: ../app/code/core/Mage/Core/Model/Email/Template/Filter.php
+ path: app/code/core/Mage/Core/Model/Email/Template/Filter.php
-
message: "#^Parameter \\#2 \\$name of method Mage_Core_Model_Layout\\:\\:createBlock\\(\\) expects string, null given\\.$#"
count: 1
- path: ../app/code/core/Mage/Core/Model/Email/Template/Filter.php
+ path: app/code/core/Mage/Core/Model/Email/Template/Filter.php
-
message: "#^Call to an undefined method Varien_Crypt_Abstract\\:\\:init\\(\\)\\.$#"
count: 1
- path: ../app/code/core/Mage/Core/Model/Encryption.php
+ path: app/code/core/Mage/Core/Model/Encryption.php
-
message: "#^Negated boolean expression is always false\\.$#"
count: 1
- path: ../app/code/core/Mage/Core/Model/Encryption.php
+ path: app/code/core/Mage/Core/Model/Encryption.php
-
message: "#^Method Mage_Core_Model_Factory\\:\\:getUrlRewriteInstance\\(\\) should return Mage_Core_Model_Url_Rewrite but returns bool\\|Mage_Core_Model_Abstract\\.$#"
count: 1
- path: ../app/code/core/Mage/Core/Model/Factory.php
+ path: app/code/core/Mage/Core/Model/Factory.php
-
message: "#^Negated boolean expression is always false\\.$#"
count: 2
- path: ../app/code/core/Mage/Core/Model/File/Storage.php
+ path: app/code/core/Mage/Core/Model/File/Storage.php
-
message: "#^Result of \\|\\| is always false\\.$#"
count: 1
- path: ../app/code/core/Mage/Core/Model/File/Storage.php
+ path: app/code/core/Mage/Core/Model/File/Storage.php
-
message: "#^Call to function is_null\\(\\) with Mage_Core_Model_File_Storage_Directory_Database will always evaluate to false\\.$#"
count: 1
- path: ../app/code/core/Mage/Core/Model/File/Storage/Database.php
+ path: app/code/core/Mage/Core/Model/File/Storage/Database.php
-
message: "#^Parameter \\#1 \\$params of method Mage_Core_Model_File_Storage_Database_Abstract\\:\\:__construct\\(\\) expects array, string\\|null given\\.$#"
count: 1
- path: ../app/code/core/Mage/Core/Model/File/Storage/Database.php
+ path: app/code/core/Mage/Core/Model/File/Storage/Database.php
-
message: "#^Parameter \\#1 \\$params of method Mage_Core_Model_File_Storage_Database_Abstract\\:\\:__construct\\(\\) expects array, string\\|null given\\.$#"
count: 1
- path: ../app/code/core/Mage/Core/Model/File/Storage/Directory/Database.php
+ path: app/code/core/Mage/Core/Model/File/Storage/Directory/Database.php
-
message: "#^Variable \\$parentId might not be defined\\.$#"
count: 1
- path: ../app/code/core/Mage/Core/Model/File/Storage/Directory/Database.php
+ path: app/code/core/Mage/Core/Model/File/Storage/Directory/Database.php
-
message: "#^Call to function is_null\\(\\) with array will always evaluate to false\\.$#"
count: 1
- path: ../app/code/core/Mage/Core/Model/File/Storage/File.php
+ path: app/code/core/Mage/Core/Model/File/Storage/File.php
-
message: "#^Unreachable statement \\- code above always terminates\\.$#"
count: 1
- path: ../app/code/core/Mage/Core/Model/File/Storage/File.php
+ path: app/code/core/Mage/Core/Model/File/Storage/File.php
-
message: "#^Call to function is_string\\(\\) with array will always evaluate to false\\.$#"
count: 1
- path: ../app/code/core/Mage/Core/Model/File/Validator/NotProtectedExtension.php
+ path: app/code/core/Mage/Core/Model/File/Validator/NotProtectedExtension.php
-
message: "#^Call to function is_null\\(\\) with string will always evaluate to false\\.$#"
count: 2
- path: ../app/code/core/Mage/Core/Model/Flag.php
+ path: app/code/core/Mage/Core/Model/Flag.php
-
message: "#^Elseif condition is always true\\.$#"
count: 1
- path: ../app/code/core/Mage/Core/Model/Input/Filter.php
+ path: app/code/core/Mage/Core/Model/Input/Filter.php
-
message: "#^PHPDoc tag @param for parameter \\$filter with type array\\|Zend_Filter_Interface is not subtype of native type Zend_Filter_Interface\\.$#"
count: 1
- path: ../app/code/core/Mage/Core/Model/Input/Filter.php
+ path: app/code/core/Mage/Core/Model/Input/Filter.php
-
message: "#^Parameter \\#1 \\$name of method Mage_Core_Model_Input_Filter\\:\\:addFilter\\(\\) expects string, Zend_Filter_Interface given\\.$#"
count: 1
- path: ../app/code/core/Mage/Core/Model/Input/Filter.php
+ path: app/code/core/Mage/Core/Model/Input/Filter.php
-
message: "#^Parameter \\#1 \\$name of method Mage_Core_Model_Input_Filter\\:\\:addFilter\\(\\) expects string, array\\|Zend_Filter_Interface given\\.$#"
count: 1
- path: ../app/code/core/Mage/Core/Model/Input/Filter.php
+ path: app/code/core/Mage/Core/Model/Input/Filter.php
-
message: "#^Parameter \\#2 \\$filter of method Mage_Core_Model_Input_Filter\\:\\:addFilter\\(\\) expects array\\|Zend_Filter_Interface, string given\\.$#"
count: 2
- path: ../app/code/core/Mage/Core/Model/Input/Filter.php
+ path: app/code/core/Mage/Core/Model/Input/Filter.php
-
message: "#^Call to an undefined method SimpleXMLElement\\:\\:getAttribute\\(\\)\\.$#"
count: 1
- path: ../app/code/core/Mage/Core/Model/Layout.php
+ path: app/code/core/Mage/Core/Model/Layout.php
-
message: "#^Cannot unset offset '@attributes' on \\(array\\{\\}\\|array\\{\\000\\*\\000_parent\\: Varien_Simplexml_Element\\}\\)\\.$#"
count: 1
- path: ../app/code/core/Mage/Core/Model/Layout.php
+ path: app/code/core/Mage/Core/Model/Layout.php
-
message: "#^If condition is always true\\.$#"
count: 1
- path: ../app/code/core/Mage/Core/Model/Layout.php
+ path: app/code/core/Mage/Core/Model/Layout.php
-
message: "#^Method Mage_Core_Model_Layout\\:\\:getMessagesBlock\\(\\) should return Mage_Core_Block_Messages but returns Mage_Core_Block_Abstract\\.$#"
count: 1
- path: ../app/code/core/Mage/Core/Model/Layout.php
+ path: app/code/core/Mage/Core/Model/Layout.php
-
message: "#^Method Mage_Core_Model_Layout\\:\\:getMessagesBlock\\(\\) should return Mage_Core_Block_Messages but returns Mage_Core_Block_Abstract\\|false\\.$#"
count: 1
- path: ../app/code/core/Mage/Core/Model/Layout.php
+ path: app/code/core/Mage/Core/Model/Layout.php
-
message: "#^Negated boolean expression is always false\\.$#"
count: 2
- path: ../app/code/core/Mage/Core/Model/Layout.php
+ path: app/code/core/Mage/Core/Model/Layout.php
-
message: "#^Parameter \\#1 \\$node of method Varien_Simplexml_Config\\:\\:setXml\\(\\) expects Varien_Simplexml_Element, SimpleXMLElement given\\.$#"
count: 1
- path: ../app/code/core/Mage/Core/Model/Layout.php
+ path: app/code/core/Mage/Core/Model/Layout.php
-
message: "#^Parameter \\#1 \\$node of method Varien_Simplexml_Config\\:\\:setXml\\(\\) expects Varien_Simplexml_Element, SimpleXMLElement\\|false given\\.$#"
count: 1
- path: ../app/code/core/Mage/Core/Model/Layout.php
+ path: app/code/core/Mage/Core/Model/Layout.php
-
message: "#^Parameter \\#1 \\$parent of method Mage_Core_Model_Layout\\:\\:generateBlocks\\(\\) expects Mage_Core_Model_Layout_Element\\|null, Varien_Simplexml_Element given\\.$#"
count: 2
- path: ../app/code/core/Mage/Core/Model/Layout.php
+ path: app/code/core/Mage/Core/Model/Layout.php
-
message: "#^Parameter \\#1 \\$sourceData of method Varien_Simplexml_Config\\:\\:__construct\\(\\) expects string\\|Varien_Simplexml_Element\\|null, array given\\.$#"
count: 1
- path: ../app/code/core/Mage/Core/Model/Layout.php
+ path: app/code/core/Mage/Core/Model/Layout.php
-
message: "#^Parameter \\#2 \\$parent of method Mage_Core_Model_Layout\\:\\:_generateAction\\(\\) expects Mage_Core_Model_Layout_Element, Varien_Simplexml_Element given\\.$#"
count: 1
- path: ../app/code/core/Mage/Core/Model/Layout.php
+ path: app/code/core/Mage/Core/Model/Layout.php
-
message: "#^Parameter \\#2 \\$parent of method Mage_Core_Model_Layout\\:\\:_generateBlock\\(\\) expects Mage_Core_Model_Layout_Element, Varien_Simplexml_Element given\\.$#"
count: 1
- path: ../app/code/core/Mage/Core/Model/Layout.php
+ path: app/code/core/Mage/Core/Model/Layout.php
-
message: "#^Parameter \\#2 \\$value of method SimpleXMLElement\\:\\:addAttribute\\(\\) expects string, true given\\.$#"
count: 1
- path: ../app/code/core/Mage/Core/Model/Layout.php
+ path: app/code/core/Mage/Core/Model/Layout.php
-
message: "#^Method Mage_Core_Model_Layout_Update\\:\\:saveCache\\(\\) should return bool but returns Mage_Core_Model_App\\.$#"
count: 1
- path: ../app/code/core/Mage/Core/Model/Layout/Update.php
+ path: app/code/core/Mage/Core/Model/Layout/Update.php
-
message: "#^Negated boolean expression is always false\\.$#"
count: 1
- path: ../app/code/core/Mage/Core/Model/Locale.php
+ path: app/code/core/Mage/Core/Model/Locale.php
-
message: "#^Parameter \\#3 \\$value of method Zend_Locale\\:\\:getTranslationList\\(\\) expects string\\|null, int given\\.$#"
count: 1
- path: ../app/code/core/Mage/Core/Model/Locale.php
+ path: app/code/core/Mage/Core/Model/Locale.php
-
message: "#^Property Mage_Core_Model_Locale\\:\\:\\$_locale \\(Zend_Locale\\) does not accept null\\.$#"
count: 1
- path: ../app/code/core/Mage/Core/Model/Locale.php
+ path: app/code/core/Mage/Core/Model/Locale.php
-
message: "#^Method Mage_Core_Model_Message_Collection\\:\\:getMessageByIdentifier\\(\\) should return Mage_Core_Model_Message_Abstract\\|null but return statement is missing\\.$#"
count: 1
- path: ../app/code/core/Mage/Core/Model/Message/Collection.php
+ path: app/code/core/Mage/Core/Model/Message/Collection.php
-
message: "#^Call to an undefined method Mage_Core_Model_Resource_Type_Abstract\\:\\:getConnection\\(\\)\\.$#"
count: 1
- path: ../app/code/core/Mage/Core/Model/Resource.php
+ path: app/code/core/Mage/Core/Model/Resource.php
-
message: "#^Call to an undefined method SimpleXMLElement\\:\\:getClassName\\(\\)\\.$#"
count: 1
- path: ../app/code/core/Mage/Core/Model/Resource.php
+ path: app/code/core/Mage/Core/Model/Resource.php
-
message: "#^Method Mage_Core_Model_Resource\\:\\:_getDefaultConnection\\(\\) should return string but returns Varien_Db_Adapter_Interface\\|false\\.$#"
count: 2
- path: ../app/code/core/Mage/Core/Model/Resource.php
+ path: app/code/core/Mage/Core/Model/Resource.php
-
message: "#^Method Mage_Core_Model_Resource\\:\\:getConnection\\(\\) should return Varien_Db_Adapter_Interface\\|false but returns string\\.$#"
count: 1
- path: ../app/code/core/Mage/Core/Model/Resource.php
+ path: app/code/core/Mage/Core/Model/Resource.php
-
message: "#^Parameter \\#1 \\$adapter of method Varien_Db_Adapter_Interface\\:\\:setCacheAdapter\\(\\) expects Zend_Cache_Backend_Interface, Zend_Cache_Core given\\.$#"
count: 2
- path: ../app/code/core/Mage/Core/Model/Resource.php
+ path: app/code/core/Mage/Core/Model/Resource.php
-
message: "#^Parameter \\#2 \\$value of method Mage_Core_Model_Config_Element\\:\\:is\\(\\) expects string\\|true, 1 given\\.$#"
count: 1
- path: ../app/code/core/Mage/Core/Model/Resource.php
+ path: app/code/core/Mage/Core/Model/Resource.php
-
message: "#^If condition is always true\\.$#"
count: 1
- path: ../app/code/core/Mage/Core/Model/Resource/Cache.php
+ path: app/code/core/Mage/Core/Model/Resource/Cache.php
-
message: "#^Negated boolean expression is always false\\.$#"
count: 1
- path: ../app/code/core/Mage/Core/Model/Resource/Cache.php
+ path: app/code/core/Mage/Core/Model/Resource/Cache.php
-
message: "#^Negated boolean expression is always false\\.$#"
count: 1
- path: ../app/code/core/Mage/Core/Model/Resource/Config.php
+ path: app/code/core/Mage/Core/Model/Resource/Config.php
-
message: "#^Call to function is_null\\(\\) with array will always evaluate to false\\.$#"
count: 2
- path: ../app/code/core/Mage/Core/Model/Resource/Db/Abstract.php
+ path: app/code/core/Mage/Core/Model/Resource/Db/Abstract.php
-
message: "#^Call to function is_null\\(\\) with int\\|string will always evaluate to false\\.$#"
count: 2
- path: ../app/code/core/Mage/Core/Model/Resource/Db/Abstract.php
+ path: app/code/core/Mage/Core/Model/Resource/Db/Abstract.php
-
message: "#^Else branch is unreachable because previous condition is always true\\.$#"
count: 1
- path: ../app/code/core/Mage/Core/Model/Resource/Db/Abstract.php
+ path: app/code/core/Mage/Core/Model/Resource/Db/Abstract.php
-
message: "#^Left side of && is always true\\.$#"
count: 2
- path: ../app/code/core/Mage/Core/Model/Resource/Db/Abstract.php
+ path: app/code/core/Mage/Core/Model/Resource/Db/Abstract.php
-
message: "#^Method Mage_Core_Model_Resource_Db_Abstract\\:\\:_getConnection\\(\\) should return Magento_Db_Adapter_Pdo_Mysql but returns Varien_Db_Adapter_Interface\\|false\\.$#"
count: 1
- path: ../app/code/core/Mage/Core/Model/Resource/Db/Abstract.php
+ path: app/code/core/Mage/Core/Model/Resource/Db/Abstract.php
-
message: "#^Negated boolean expression is always false\\.$#"
count: 1
- path: ../app/code/core/Mage/Core/Model/Resource/Db/Abstract.php
+ path: app/code/core/Mage/Core/Model/Resource/Db/Abstract.php
-
message: "#^Left side of && is always true\\.$#"
count: 1
- path: ../app/code/core/Mage/Core/Model/Resource/Db/Collection/Abstract.php
+ path: app/code/core/Mage/Core/Model/Resource/Db/Collection/Abstract.php
-
message: "#^Parameter \\#1 \\$conn of method Varien_Data_Collection_Db\\:\\:setConnection\\(\\) expects Zend_Db_Adapter_Abstract, Varien_Db_Adapter_Interface given\\.$#"
count: 1
- path: ../app/code/core/Mage/Core/Model/Resource/Db/Collection/Abstract.php
+ path: app/code/core/Mage/Core/Model/Resource/Db/Collection/Abstract.php
-
message: "#^Parameter \\#1 \\$select of method Varien_Data_Collection_Db\\:\\:_fetchAll\\(\\) expects Zend_Db_Select, string given\\.$#"
count: 1
- path: ../app/code/core/Mage/Core/Model/Resource/Db/Collection/Abstract.php
+ path: app/code/core/Mage/Core/Model/Resource/Db/Collection/Abstract.php
-
message: "#^Property Mage_Core_Model_Resource_Db_Collection_Abstract\\:\\:\\$_resource \\(Mage_Core_Model_Resource_Db_Abstract\\) does not accept Mage_Core_Model_Resource_Db_Collection_Abstract\\|false\\.$#"
count: 1
- path: ../app/code/core/Mage/Core/Model/Resource/Db/Collection/Abstract.php
+ path: app/code/core/Mage/Core/Model/Resource/Db/Collection/Abstract.php
-
message: "#^Property Mage_Core_Model_Resource_Db_Collection_Abstract\\:\\:\\$_resource \\(Mage_Core_Model_Resource_Db_Abstract\\) in empty\\(\\) is not falsy\\.$#"
count: 1
- path: ../app/code/core/Mage/Core/Model/Resource/Db/Collection/Abstract.php
+ path: app/code/core/Mage/Core/Model/Resource/Db/Collection/Abstract.php
-
message: "#^Result of && is always false\\.$#"
count: 1
- path: ../app/code/core/Mage/Core/Model/Resource/Db/Collection/Abstract.php
+ path: app/code/core/Mage/Core/Model/Resource/Db/Collection/Abstract.php
-
message: "#^Variable \\$alias in isset\\(\\) always exists and is always null\\.$#"
count: 1
- path: ../app/code/core/Mage/Core/Model/Resource/Db/Collection/Abstract.php
+ path: app/code/core/Mage/Core/Model/Resource/Db/Collection/Abstract.php
-
message: "#^Variable \\$alias might not be defined\\.$#"
count: 3
- path: ../app/code/core/Mage/Core/Model/Resource/Db/Collection/Abstract.php
+ path: app/code/core/Mage/Core/Model/Resource/Db/Collection/Abstract.php
-
message: "#^Variable \\$columnsToSelect in isset\\(\\) always exists and is not nullable\\.$#"
count: 1
- path: ../app/code/core/Mage/Core/Model/Resource/Db/Collection/Abstract.php
+ path: app/code/core/Mage/Core/Model/Resource/Db/Collection/Abstract.php
-
message: "#^Parameter \\#1 \\$date of method Mage_Core_Model_Resource_Db_Collection_Abstract\\:\\:formatDate\\(\\) expects int\\|string\\|Zend_Date, true given\\.$#"
count: 1
- path: ../app/code/core/Mage/Core/Model/Resource/Design/Collection.php
+ path: app/code/core/Mage/Core/Model/Resource/Design/Collection.php
-
message: "#^Parameter \\#1 \\$callback of method Varien_Data_Collection\\:\\:walk\\(\\) expects callable\\(\\)\\: mixed, 'afterLoad' given\\.$#"
count: 1
- path: ../app/code/core/Mage/Core/Model/Resource/Email/Queue/Collection.php
+ path: app/code/core/Mage/Core/Model/Resource/Email/Queue/Collection.php
-
message: "#^Method Mage_Core_Model_Resource_Entity_Abstract\\:\\:getConfig\\(\\) should return bool\\|string but returns Varien_Simplexml_Config\\.$#"
count: 1
- path: ../app/code/core/Mage/Core/Model/Resource/Entity/Abstract.php
+ path: app/code/core/Mage/Core/Model/Resource/Entity/Abstract.php
-
message: "#^Property Mage_Core_Model_Resource_Entity_Abstract\\:\\:\\$_config \\(Varien_Simplexml_Config\\) does not accept default value of type array\\.$#"
count: 1
- path: ../app/code/core/Mage/Core/Model/Resource/Entity/Abstract.php
+ path: app/code/core/Mage/Core/Model/Resource/Entity/Abstract.php
-
message: "#^Method Mage_Core_Model_Resource_File_Storage_Directory_Database\\:\\:getParentId\\(\\) should return int but returns string\\.$#"
count: 1
- path: ../app/code/core/Mage/Core/Model/Resource/File/Storage/Directory/Database.php
+ path: app/code/core/Mage/Core/Model/Resource/File/Storage/Directory/Database.php
-
message: "#^Call to function is_null\\(\\) with string will always evaluate to false\\.$#"
count: 1
- path: ../app/code/core/Mage/Core/Model/Resource/File/Storage/File.php
+ path: app/code/core/Mage/Core/Model/Resource/File/Storage/File.php
-
message: "#^If condition is always true\\.$#"
count: 2
- path: ../app/code/core/Mage/Core/Model/Resource/File/Storage/File.php
+ path: app/code/core/Mage/Core/Model/Resource/File/Storage/File.php
-
message: "#^Left side of \\|\\| is always true\\.$#"
count: 1
- path: ../app/code/core/Mage/Core/Model/Resource/File/Storage/File.php
+ path: app/code/core/Mage/Core/Model/Resource/File/Storage/File.php
-
message: "#^Property Mage_Core_Model_Resource_File_Storage_File\\:\\:\\$filePointer \\(resource\\) does not accept null\\.$#"
count: 2
- path: ../app/code/core/Mage/Core/Model/Resource/File/Storage/File.php
+ path: app/code/core/Mage/Core/Model/Resource/File/Storage/File.php
-
message: "#^Result of \\|\\| is always true\\.$#"
count: 1
- path: ../app/code/core/Mage/Core/Model/Resource/File/Storage/File.php
+ path: app/code/core/Mage/Core/Model/Resource/File/Storage/File.php
-
message: "#^Unreachable statement \\- code above always terminates\\.$#"
count: 1
- path: ../app/code/core/Mage/Core/Model/Resource/File/Storage/File.php
+ path: app/code/core/Mage/Core/Model/Resource/File/Storage/File.php
-
message: "#^PHPDoc tag @param for parameter \\$callbacks with type array\\|string is not subtype of native type array\\.$#"
count: 1
- path: ../app/code/core/Mage/Core/Model/Resource/Iterator.php
+ path: app/code/core/Mage/Core/Model/Resource/Iterator.php
-
message: "#^Parameter \\#2 \\$conn of method Mage_Core_Model_Resource_Iterator\\:\\:_getStatement\\(\\) expects Zend_Db_Adapter_Abstract\\|null, Varien_Db_Adapter_Interface\\|null given\\.$#"
count: 1
- path: ../app/code/core/Mage/Core/Model/Resource/Iterator.php
+ path: app/code/core/Mage/Core/Model/Resource/Iterator.php
-
message: "#^If condition is always true\\.$#"
count: 1
- path: ../app/code/core/Mage/Core/Model/Resource/Layout.php
+ path: app/code/core/Mage/Core/Model/Resource/Layout.php
-
message: "#^Call to function is_null\\(\\) with array will always evaluate to false\\.$#"
count: 2
- path: ../app/code/core/Mage/Core/Model/Resource/Resource.php
+ path: app/code/core/Mage/Core/Model/Resource/Resource.php
-
message: "#^Negated boolean expression is always false\\.$#"
count: 2
- path: ../app/code/core/Mage/Core/Model/Resource/Resource.php
+ path: app/code/core/Mage/Core/Model/Resource/Resource.php
-
message: "#^Result of && is always false\\.$#"
count: 2
- path: ../app/code/core/Mage/Core/Model/Resource/Resource.php
+ path: app/code/core/Mage/Core/Model/Resource/Resource.php
-
message: "#^Result of \\|\\| is always false\\.$#"
count: 1
- path: ../app/code/core/Mage/Core/Model/Resource/Resource.php
+ path: app/code/core/Mage/Core/Model/Resource/Resource.php
-
message: "#^Static property Mage_Core_Model_Resource_Resource\\:\\:\\$_dataVersions \\(array\\) does not accept null\\.$#"
count: 1
- path: ../app/code/core/Mage/Core/Model/Resource/Resource.php
+ path: app/code/core/Mage/Core/Model/Resource/Resource.php
-
message: "#^Call to function is_null\\(\\) with int will always evaluate to false\\.$#"
count: 1
- path: ../app/code/core/Mage/Core/Model/Resource/Session.php
+ path: app/code/core/Mage/Core/Model/Resource/Session.php
-
message: "#^Negated boolean expression is always false\\.$#"
count: 1
- path: ../app/code/core/Mage/Core/Model/Resource/Session.php
+ path: app/code/core/Mage/Core/Model/Resource/Session.php
-
message: "#^Parameter \\#6 \\$gc of function session_set_save_handler expects callable\\(string\\)\\: bool, array\\{\\$this\\(Mage_Core_Model_Resource_Session\\), 'gc'\\} given\\.$#"
count: 1
- path: ../app/code/core/Mage/Core/Model/Resource/Session.php
+ path: app/code/core/Mage/Core/Model/Resource/Session.php
-
message: "#^Property Mage_Core_Model_Resource_Session\\:\\:\\$_lifeTime \\(int\\) does not accept string\\|false\\.$#"
count: 1
- path: ../app/code/core/Mage/Core/Model/Resource/Session.php
+ path: app/code/core/Mage/Core/Model/Resource/Session.php
-
message: "#^Call to an undefined method Varien_Simplexml_Element\\:\\:getClassName\\(\\)\\.$#"
count: 2
- path: ../app/code/core/Mage/Core/Model/Resource/Setup.php
+ path: app/code/core/Mage/Core/Model/Resource/Setup.php
-
message: "#^Negated boolean expression is always false\\.$#"
count: 1
- path: ../app/code/core/Mage/Core/Model/Resource/Setup.php
+ path: app/code/core/Mage/Core/Model/Resource/Setup.php
-
message: "#^Parameter \\#1 \\$hook of method Varien_Db_Adapter_Pdo_Mysql\\:\\:setQueryHook\\(\\) expects array, null given\\.$#"
count: 1
- path: ../app/code/core/Mage/Core/Model/Resource/Setup.php
+ path: app/code/core/Mage/Core/Model/Resource/Setup.php
-
message: "#^Property Mage_Core_Model_Resource_Setup\\:\\:\\$_conn \\(Varien_Db_Adapter_Pdo_Mysql\\) does not accept Varien_Db_Adapter_Interface\\|false\\.$#"
count: 1
- path: ../app/code/core/Mage/Core/Model/Resource/Setup.php
+ path: app/code/core/Mage/Core/Model/Resource/Setup.php
-
message: "#^Property Mage_Core_Model_Resource_Setup\\:\\:\\$_moduleConfig \\(Mage_Core_Model_Config_Element\\) does not accept SimpleXMLElement\\.$#"
count: 1
- path: ../app/code/core/Mage/Core/Model/Resource/Setup.php
+ path: app/code/core/Mage/Core/Model/Resource/Setup.php
-
message: "#^Property Mage_Core_Model_Resource_Setup\\:\\:\\$_resourceConfig \\(Mage_Core_Model_Config_Element\\) does not accept SimpleXMLElement\\.$#"
count: 1
- path: ../app/code/core/Mage/Core/Model/Resource/Setup.php
+ path: app/code/core/Mage/Core/Model/Resource/Setup.php
-
message: "#^Unreachable statement \\- code above always terminates\\.$#"
count: 1
- path: ../app/code/core/Mage/Core/Model/Resource/Setup.php
+ path: app/code/core/Mage/Core/Model/Resource/Setup.php
-
message: "#^Binary operation \"\\.\" between string and array results in an error\\.$#"
count: 1
- path: ../app/code/core/Mage/Core/Model/Resource/Setup/Query/Modifier.php
+ path: app/code/core/Mage/Core/Model/Resource/Setup/Query/Modifier.php
-
message: "#^Negated boolean expression is always false\\.$#"
count: 1
- path: ../app/code/core/Mage/Core/Model/Resource/Setup/Query/Modifier.php
+ path: app/code/core/Mage/Core/Model/Resource/Setup/Query/Modifier.php
-
message: "#^Parameter \\#3 \\$replacement of method Mage_Core_Model_Resource_Setup_Query_Modifier\\:\\:_firstReplace\\(\\) expects array, string given\\.$#"
count: 1
- path: ../app/code/core/Mage/Core/Model/Resource/Setup/Query/Modifier.php
+ path: app/code/core/Mage/Core/Model/Resource/Setup/Query/Modifier.php
-
message: "#^Negated boolean expression is always false\\.$#"
count: 2
- path: ../app/code/core/Mage/Core/Model/Resource/Translate.php
+ path: app/code/core/Mage/Core/Model/Resource/Translate.php
-
message: "#^Right side of && is always true\\.$#"
count: 1
- path: ../app/code/core/Mage/Core/Model/Resource/Type/Db/Mysqli.php
+ path: app/code/core/Mage/Core/Model/Resource/Type/Db/Mysqli.php
-
message: "#^Right side of && is always true\\.$#"
count: 1
- path: ../app/code/core/Mage/Core/Model/Resource/Type/Db/Pdo/Mysql.php
+ path: app/code/core/Mage/Core/Model/Resource/Type/Db/Pdo/Mysql.php
-
message: "#^Call to function is_null\\(\\) with int will always evaluate to false\\.$#"
count: 1
- path: ../app/code/core/Mage/Core/Model/Resource/Url/Rewrite.php
+ path: app/code/core/Mage/Core/Model/Resource/Url/Rewrite.php
-
message: "#^Parameter \\#1 \\$host of method Mage_Core_Model_Session_Abstract\\:\\:addHost\\(\\) expects string, true given\\.$#"
count: 2
- path: ../app/code/core/Mage/Core/Model/Session/Abstract.php
+ path: app/code/core/Mage/Core/Model/Session/Abstract.php
-
message: "#^Parameter \\#2 \\$clear \\(bool\\) of method Mage_Core_Model_Session_Abstract_Varien\\:\\:getData\\(\\) should be compatible with parameter \\$index \\(int\\|string\\) of method Varien_Object\\:\\:getData\\(\\)$#"
count: 1
- path: ../app/code/core/Mage/Core/Model/Session/Abstract/Varien.php
+ path: app/code/core/Mage/Core/Model/Session/Abstract/Varien.php
-
message: "#^Access to an undefined property Zend_Session_Namespace\\:\\:\\$data\\.$#"
count: 2
- path: ../app/code/core/Mage/Core/Model/Session/Abstract/Zend.php
+ path: app/code/core/Mage/Core/Model/Session/Abstract/Zend.php
-
message: "#^Parameter \\#2 \\$clear \\(bool\\) of method Mage_Core_Model_Session_Abstract_Zend\\:\\:getData\\(\\) should be compatible with parameter \\$index \\(int\\|string\\) of method Varien_Object\\:\\:getData\\(\\)$#"
count: 1
- path: ../app/code/core/Mage/Core/Model/Session/Abstract/Zend.php
+ path: app/code/core/Mage/Core/Model/Session/Abstract/Zend.php
-
message: "#^Call to function is_null\\(\\) with Mage_Core_Model_Store_Group will always evaluate to false\\.$#"
count: 1
- path: ../app/code/core/Mage/Core/Model/Store.php
+ path: app/code/core/Mage/Core/Model/Store.php
-
message: "#^Call to function is_null\\(\\) with Mage_Core_Model_Website will always evaluate to false\\.$#"
count: 1
- path: ../app/code/core/Mage/Core/Model/Store.php
+ path: app/code/core/Mage/Core/Model/Store.php
-
message: "#^Elseif condition is always true\\.$#"
count: 1
- path: ../app/code/core/Mage/Core/Model/Store.php
+ path: app/code/core/Mage/Core/Model/Store.php
-
message: "#^If condition is always true\\.$#"
count: 1
- path: ../app/code/core/Mage/Core/Model/Store.php
+ path: app/code/core/Mage/Core/Model/Store.php
-
message: "#^Left side of && is always true\\.$#"
count: 3
- path: ../app/code/core/Mage/Core/Model/Store.php
+ path: app/code/core/Mage/Core/Model/Store.php
-
message: "#^Method Mage_Core_Model_Store\\:\\:_getSession\\(\\) should return Mage_Core_Model_Session but returns Mage_Core_Model_Session_Abstract\\.$#"
count: 1
- path: ../app/code/core/Mage/Core/Model/Store.php
+ path: app/code/core/Mage/Core/Model/Store.php
-
message: "#^Method Mage_Core_Model_Store\\:\\:getPriceFilter\\(\\) should return Varien_Filter_Sprintf but returns Mage_Directory_Model_Currency_Filter\\.$#"
count: 1
- path: ../app/code/core/Mage/Core/Model/Store.php
+ path: app/code/core/Mage/Core/Model/Store.php
-
message: "#^Negated boolean expression is always false\\.$#"
count: 2
- path: ../app/code/core/Mage/Core/Model/Store.php
+ path: app/code/core/Mage/Core/Model/Store.php
-
message: "#^PHPDoc type bool of property Mage_Core_Model_Store\\:\\:\\$_cacheTag is not covariant with PHPDoc type string\\|true of overridden property Mage_Core_Model_Abstract\\:\\:\\$_cacheTag\\.$#"
count: 1
- path: ../app/code/core/Mage/Core/Model/Store.php
+ path: app/code/core/Mage/Core/Model/Store.php
-
message: "#^Property Mage_Core_Model_Store\\:\\:\\$_priceFilter \\(Mage_Directory_Model_Currency_Filter\\) does not accept Varien_Filter_Sprintf\\.$#"
count: 1
- path: ../app/code/core/Mage/Core/Model/Store.php
+ path: app/code/core/Mage/Core/Model/Store.php
-
message: "#^Right side of && is always true\\.$#"
count: 2
- path: ../app/code/core/Mage/Core/Model/Store.php
+ path: app/code/core/Mage/Core/Model/Store.php
-
message: "#^Unreachable statement \\- code above always terminates\\.$#"
count: 1
- path: ../app/code/core/Mage/Core/Model/Store.php
+ path: app/code/core/Mage/Core/Model/Store.php
-
message: "#^Variable \\$store might not be defined\\.$#"
count: 8
- path: ../app/code/core/Mage/Core/Model/Store/Api.php
+ path: app/code/core/Mage/Core/Model/Store/Api.php
-
message: "#^Call to function is_null\\(\\) with Mage_Core_Model_Website will always evaluate to false\\.$#"
count: 1
- path: ../app/code/core/Mage/Core/Model/Store/Group.php
+ path: app/code/core/Mage/Core/Model/Store/Group.php
-
message: "#^Call to function is_null\\(\\) with array will always evaluate to false\\.$#"
count: 5
- path: ../app/code/core/Mage/Core/Model/Store/Group.php
+ path: app/code/core/Mage/Core/Model/Store/Group.php
-
message: "#^Call to function is_null\\(\\) with int will always evaluate to false\\.$#"
count: 1
- path: ../app/code/core/Mage/Core/Model/Store/Group.php
+ path: app/code/core/Mage/Core/Model/Store/Group.php
-
message: "#^Call to function is_null\\(\\) with Varien_Object will always evaluate to false\\.$#"
count: 1
- path: ../app/code/core/Mage/Core/Model/Template.php
+ path: app/code/core/Mage/Core/Model/Template.php
-
message: "#^If condition is always true\\.$#"
count: 1
- path: ../app/code/core/Mage/Core/Model/Template.php
+ path: app/code/core/Mage/Core/Model/Template.php
-
message: "#^Property Mage_Core_Model_Template\\:\\:\\$_emulatedDesignConfig \\(Varien_Object\\) does not accept default value of type false\\.$#"
count: 1
- path: ../app/code/core/Mage/Core/Model/Template.php
+ path: app/code/core/Mage/Core/Model/Template.php
-
message: "#^Property Mage_Core_Model_Template\\:\\:\\$_emulatedDesignConfig \\(Varien_Object\\) does not accept false\\.$#"
count: 2
- path: ../app/code/core/Mage/Core/Model/Template.php
+ path: app/code/core/Mage/Core/Model/Template.php
-
message: "#^Property Mage_Core_Model_Template\\:\\:\\$_initialEnvironmentInfo \\(Varien_Object\\) does not accept null\\.$#"
count: 1
- path: ../app/code/core/Mage/Core/Model/Template.php
+ path: app/code/core/Mage/Core/Model/Template.php
-
message: "#^Property Mage_Core_Model_Template\\:\\:\\$_initialEnvironmentInfo \\(Varien_Object\\) in empty\\(\\) is not falsy\\.$#"
count: 1
- path: ../app/code/core/Mage/Core/Model/Template.php
+ path: app/code/core/Mage/Core/Model/Template.php
-
message: "#^Argument of an invalid type string supplied for foreach, only iterables are supported\\.$#"
count: 1
- path: ../app/code/core/Mage/Core/Model/Translate.php
+ path: app/code/core/Mage/Core/Model/Translate.php
-
message: "#^Call to function is_null\\(\\) with Zend_Translate will always evaluate to false\\.$#"
count: 1
- path: ../app/code/core/Mage/Core/Model/Translate.php
+ path: app/code/core/Mage/Core/Model/Translate.php
-
message: "#^Call to function is_null\\(\\) with array will always evaluate to false\\.$#"
count: 1
- path: ../app/code/core/Mage/Core/Model/Translate.php
+ path: app/code/core/Mage/Core/Model/Translate.php
-
message: "#^Call to function is_null\\(\\) with string will always evaluate to false\\.$#"
count: 2
- path: ../app/code/core/Mage/Core/Model/Translate.php
+ path: app/code/core/Mage/Core/Model/Translate.php
-
message: "#^Parameter \\#1 \\$options of class Zend_Translate constructor expects array\\|Zend_Config\\|Zend_Translate_Adapter, string given\\.$#"
count: 1
- path: ../app/code/core/Mage/Core/Model/Translate.php
+ path: app/code/core/Mage/Core/Model/Translate.php
-
message: "#^Parameter \\#2 \\$scope of method Mage_Core_Model_Translate\\:\\:_addData\\(\\) expects string, false given\\.$#"
count: 1
- path: ../app/code/core/Mage/Core/Model/Translate.php
+ path: app/code/core/Mage/Core/Model/Translate.php
-
message: "#^Call to function is_null\\(\\) with bool will always evaluate to false\\.$#"
count: 1
- path: ../app/code/core/Mage/Core/Model/Translate/Inline.php
+ path: app/code/core/Mage/Core/Model/Translate/Inline.php
-
message: "#^Parameter \\#1 \\$storeId of method Mage_Core_Helper_Data\\:\\:isDevAllowed\\(\\) expects int\\|null, Mage_Core_Model_Store given\\.$#"
count: 1
- path: ../app/code/core/Mage/Core/Model/Translate/Inline.php
+ path: app/code/core/Mage/Core/Model/Translate/Inline.php
-
message: "#^Parameter \\#3 \\$storeId of method Mage_Core_Model_Resource_Translate_String\\:\\:deleteTranslate\\(\\) expects int\\|null, false given\\.$#"
count: 1
- path: ../app/code/core/Mage/Core/Model/Translate/Inline.php
+ path: app/code/core/Mage/Core/Model/Translate/Inline.php
-
message: "#^Parameter \\#4 \\$flags of function preg_match expects TFlags of 0\\|256\\|512\\|768, null given\\.$#"
count: 1
- path: ../app/code/core/Mage/Core/Model/Translate/Inline.php
+ path: app/code/core/Mage/Core/Model/Translate/Inline.php
-
message: "#^Call to function is_null\\(\\) with bool will always evaluate to false\\.$#"
count: 1
- path: ../app/code/core/Mage/Core/Model/Url.php
+ path: app/code/core/Mage/Core/Model/Url.php
-
message: "#^Method Mage_Core_Model_Url\\:\\:getRequest\\(\\) should return Mage_Core_Controller_Request_Http but returns Zend_Controller_Request_Http\\.$#"
count: 1
- path: ../app/code/core/Mage/Core/Model/Url.php
+ path: app/code/core/Mage/Core/Model/Url.php
-
message: "#^Negated boolean expression is always false\\.$#"
count: 3
- path: ../app/code/core/Mage/Core/Model/Url.php
+ path: app/code/core/Mage/Core/Model/Url.php
-
message: "#^Call to function is_null\\(\\) with int will always evaluate to false\\.$#"
count: 2
- path: ../app/code/core/Mage/Core/Model/Url/Rewrite.php
+ path: app/code/core/Mage/Core/Model/Url/Rewrite.php
-
message: "#^Negated boolean expression is always true\\.$#"
count: 1
- path: ../app/code/core/Mage/Core/Model/Url/Rewrite.php
+ path: app/code/core/Mage/Core/Model/Url/Rewrite.php
-
message: "#^PHPDoc type mixed of property Mage_Core_Model_Url_Rewrite\\:\\:\\$_cacheTag is not covariant with PHPDoc type string\\|true of overridden property Mage_Core_Model_Abstract\\:\\:\\$_cacheTag\\.$#"
count: 1
- path: ../app/code/core/Mage/Core/Model/Url/Rewrite.php
+ path: app/code/core/Mage/Core/Model/Url/Rewrite.php
-
message: "#^Parameter \\#3 \\$period of method Mage_Core_Model_Cookie\\:\\:set\\(\\) expects int\\|null, true given\\.$#"
count: 1
- path: ../app/code/core/Mage/Core/Model/Url/Rewrite.php
+ path: app/code/core/Mage/Core/Model/Url/Rewrite.php
-
message: "#^Result of \\|\\| is always false\\.$#"
count: 1
- path: ../app/code/core/Mage/Core/Model/Url/Rewrite.php
+ path: app/code/core/Mage/Core/Model/Url/Rewrite.php
-
message: "#^Strict comparison using \\=\\=\\= between int and false will always evaluate to false\\.$#"
count: 1
- path: ../app/code/core/Mage/Core/Model/Url/Rewrite.php
+ path: app/code/core/Mage/Core/Model/Url/Rewrite.php
-
message: "#^Unreachable statement \\- code above always terminates\\.$#"
count: 1
- path: ../app/code/core/Mage/Core/Model/Url/Rewrite.php
+ path: app/code/core/Mage/Core/Model/Url/Rewrite.php
-
message: "#^Variable \\$targetUrl might not be defined\\.$#"
count: 3
- path: ../app/code/core/Mage/Core/Model/Url/Rewrite.php
+ path: app/code/core/Mage/Core/Model/Url/Rewrite.php
-
message: "#^If condition is always true\\.$#"
count: 1
- path: ../app/code/core/Mage/Core/Model/Url/Rewrite/Request.php
+ path: app/code/core/Mage/Core/Model/Url/Rewrite/Request.php
-
message: "#^Negated boolean expression is always true\\.$#"
count: 1
- path: ../app/code/core/Mage/Core/Model/Url/Rewrite/Request.php
+ path: app/code/core/Mage/Core/Model/Url/Rewrite/Request.php
-
message: "#^Parameter \\#3 \\$period of method Mage_Core_Model_Cookie\\:\\:set\\(\\) expects int\\|null, true given\\.$#"
count: 1
- path: ../app/code/core/Mage/Core/Model/Url/Rewrite/Request.php
+ path: app/code/core/Mage/Core/Model/Url/Rewrite/Request.php
-
message: "#^Result of \\|\\| is always false\\.$#"
count: 1
- path: ../app/code/core/Mage/Core/Model/Url/Rewrite/Request.php
+ path: app/code/core/Mage/Core/Model/Url/Rewrite/Request.php
-
message: "#^Strict comparison using \\=\\=\\= between int and false will always evaluate to false\\.$#"
count: 1
- path: ../app/code/core/Mage/Core/Model/Url/Rewrite/Request.php
+ path: app/code/core/Mage/Core/Model/Url/Rewrite/Request.php
-
message: "#^Strict comparison using \\=\\=\\= between int and null will always evaluate to false\\.$#"
count: 1
- path: ../app/code/core/Mage/Core/Model/Url/Rewrite/Request.php
+ path: app/code/core/Mage/Core/Model/Url/Rewrite/Request.php
-
message: "#^Unreachable statement \\- code above always terminates\\.$#"
count: 1
- path: ../app/code/core/Mage/Core/Model/Url/Rewrite/Request.php
+ path: app/code/core/Mage/Core/Model/Url/Rewrite/Request.php
-
message: "#^Call to function is_null\\(\\) with array will always evaluate to false\\.$#"
count: 8
- path: ../app/code/core/Mage/Core/Model/Website.php
+ path: app/code/core/Mage/Core/Model/Website.php
-
message: "#^Call to function is_null\\(\\) with bool will always evaluate to false\\.$#"
count: 1
- path: ../app/code/core/Mage/Core/Model/Website.php
+ path: app/code/core/Mage/Core/Model/Website.php
-
message: "#^Parameter \\#3 \\$value of method Mage_Core_Controller_Varien_Action\\:\\:setFlag\\(\\) expects int\\|string, true given\\.$#"
count: 1
- path: ../app/code/core/Mage/Core/controllers/AjaxController.php
+ path: app/code/core/Mage/Core/controllers/AjaxController.php
-
message: "#^Function mageCoreErrorHandler\\(\\) never returns void so it can be removed from the return type\\.$#"
count: 1
- path: ../app/code/core/Mage/Core/functions.php
+ path: app/code/core/Mage/Core/functions.php
-
message: "#^Function mageDebugBacktrace\\(\\) never returns void so it can be removed from the return type\\.$#"
count: 1
- path: ../app/code/core/Mage/Core/functions.php
+ path: app/code/core/Mage/Core/functions.php
-
message: "#^Parameter \\#1 \\$prefix of function uniqid expects string, int\\<0, max\\> given\\.$#"
count: 2
- path: ../app/code/core/Mage/Core/functions.php
+ path: app/code/core/Mage/Core/functions.php
-
message: "#^Parameter \\#1 \\$separator of function explode expects non\\-empty\\-string, string given\\.$#"
count: 1
- path: ../app/code/core/Mage/Core/functions.php
+ path: app/code/core/Mage/Core/functions.php
-
message: "#^Unreachable statement \\- code above always terminates\\.$#"
count: 2
- path: ../app/code/core/Mage/Core/functions.php
+ path: app/code/core/Mage/Core/functions.php
-
message: "#^Strict comparison using \\=\\=\\= between int\\|string and null will always evaluate to false\\.$#"
count: 1
- path: ../app/code/core/Mage/Cron/Model/Observer.php
+ path: app/code/core/Mage/Cron/Model/Observer.php
-
message: "#^Variable \\$arguments might not be defined\\.$#"
count: 1
- path: ../app/code/core/Mage/Cron/Model/Observer.php
+ path: app/code/core/Mage/Cron/Model/Observer.php
-
message: "#^Property Mage_CurrencySymbol_Block_Adminhtml_System_Currencysymbol\\:\\:\\$_controller is never read, only written\\.$#"
count: 1
- path: ../app/code/core/Mage/CurrencySymbol/Block/Adminhtml/System/Currencysymbol.php
+ path: app/code/core/Mage/CurrencySymbol/Block/Adminhtml/System/Currencysymbol.php
-
message: "#^If condition is always true\\.$#"
count: 1
- path: ../app/code/core/Mage/CurrencySymbol/Helper/Data.php
+ path: app/code/core/Mage/CurrencySymbol/Helper/Data.php
-
message: "#^Else branch is unreachable because ternary operator condition is always true\\.$#"
count: 1
- path: ../app/code/core/Mage/CurrencySymbol/Model/System/Currencysymbol.php
+ path: app/code/core/Mage/CurrencySymbol/Model/System/Currencysymbol.php
-
message: "#^Property Mage_CurrencySymbol_Model_System_Currencysymbol\\:\\:\\$_storeId \\(string\\|null\\) does not accept int\\|null\\.$#"
count: 1
- path: ../app/code/core/Mage/CurrencySymbol/Model/System/Currencysymbol.php
+ path: app/code/core/Mage/CurrencySymbol/Model/System/Currencysymbol.php
-
message: "#^Property Mage_CurrencySymbol_Model_System_Currencysymbol\\:\\:\\$_websiteId \\(string\\|null\\) does not accept int\\|null\\.$#"
count: 1
- path: ../app/code/core/Mage/CurrencySymbol/Model/System/Currencysymbol.php
+ path: app/code/core/Mage/CurrencySymbol/Model/System/Currencysymbol.php
-
message: "#^Else branch is unreachable because previous condition is always true\\.$#"
count: 2
- path: ../app/code/core/Mage/Customer/Block/Account/Dashboard/Address.php
+ path: app/code/core/Mage/Customer/Block/Account/Dashboard/Address.php
-
message: "#^Call to function is_null\\(\\) with Mage_Newsletter_Model_Subscriber will always evaluate to false\\.$#"
count: 1
- path: ../app/code/core/Mage/Customer/Block/Account/Dashboard/Info.php
+ path: app/code/core/Mage/Customer/Block/Account/Dashboard/Info.php
-
message: "#^Call to function is_null\\(\\) with Mage_Newsletter_Model_Subscriber will always evaluate to false\\.$#"
count: 1
- path: ../app/code/core/Mage/Customer/Block/Account/Dashboard/Newsletter.php
+ path: app/code/core/Mage/Customer/Block/Account/Dashboard/Newsletter.php
-
message: "#^Call to an undefined method Mage_Wishlist_Model_Resource_Item_Collection\\:\\:addAttributeToSelect\\(\\)\\.$#"
count: 1
- path: ../app/code/core/Mage/Customer/Block/Account/Dashboard/Sidebar.php
+ path: app/code/core/Mage/Customer/Block/Account/Dashboard/Sidebar.php
-
message: "#^Negated boolean expression is always false\\.$#"
count: 1
- path: ../app/code/core/Mage/Customer/Block/Account/Dashboard/Sidebar.php
+ path: app/code/core/Mage/Customer/Block/Account/Dashboard/Sidebar.php
-
message: "#^Property Mage_Customer_Block_Account_Navigation\\:\\:\\$_activeLink \\(bool\\) does not accept string\\.$#"
count: 2
- path: ../app/code/core/Mage/Customer/Block/Account/Navigation.php
+ path: app/code/core/Mage/Customer/Block/Account/Navigation.php
-
message: "#^Left side of \\|\\| is always true\\.$#"
count: 1
- path: ../app/code/core/Mage/Customer/Block/Address/Book.php
+ path: app/code/core/Mage/Customer/Block/Address/Book.php
-
message: "#^Right side of \\|\\| is always true\\.$#"
count: 1
- path: ../app/code/core/Mage/Customer/Block/Address/Book.php
+ path: app/code/core/Mage/Customer/Block/Address/Book.php
-
message: "#^Method Mage_Customer_Block_Address_Edit\\:\\:getCountryId\\(\\) should return int but returns string\\.$#"
count: 1
- path: ../app/code/core/Mage/Customer/Block/Address/Edit.php
+ path: app/code/core/Mage/Customer/Block/Address/Edit.php
-
message: "#^Return type \\(int\\) of method Mage_Customer_Block_Address_Edit\\:\\:getCountryId\\(\\) should be compatible with return type \\(string\\) of method Mage_Directory_Block_Data\\:\\:getCountryId\\(\\)$#"
count: 1
- path: ../app/code/core/Mage/Customer/Block/Address/Edit.php
+ path: app/code/core/Mage/Customer/Block/Address/Edit.php
-
message: "#^Call to function is_null\\(\\) with Mage_Customer_Model_Address will always evaluate to false\\.$#"
count: 1
- path: ../app/code/core/Mage/Customer/Block/Form/Register.php
+ path: app/code/core/Mage/Customer/Block/Form/Register.php
-
message: "#^Method Mage_Customer_Block_Form_Register\\:\\:getCountryId\\(\\) should return int but returns string\\.$#"
count: 1
- path: ../app/code/core/Mage/Customer/Block/Form/Register.php
+ path: app/code/core/Mage/Customer/Block/Form/Register.php
-
message: "#^Return type \\(int\\) of method Mage_Customer_Block_Form_Register\\:\\:getCountryId\\(\\) should be compatible with return type \\(string\\) of method Mage_Directory_Block_Data\\:\\:getCountryId\\(\\)$#"
count: 1
- path: ../app/code/core/Mage/Customer/Block/Form/Register.php
+ path: app/code/core/Mage/Customer/Block/Form/Register.php
-
message: "#^Method Mage_Customer_Block_Newsletter\\:\\:getAction\\(\\) should return Mage_Core_Controller_Varien_Action but returns string\\.$#"
count: 1
- path: ../app/code/core/Mage/Customer/Block/Newsletter.php
+ path: app/code/core/Mage/Customer/Block/Newsletter.php
-
message: "#^Call to function is_null\\(\\) with array will always evaluate to false\\.$#"
count: 1
- path: ../app/code/core/Mage/Customer/Helper/Address.php
+ path: app/code/core/Mage/Customer/Helper/Address.php
-
message: "#^Parameter \\#1 \\$entityType of method Mage_Eav_Model_Config\\:\\:getEntityAttributeCodes\\(\\) expects Mage_Eav_Model_Entity_Type, string given\\.$#"
count: 1
- path: ../app/code/core/Mage/Customer/Helper/Address.php
+ path: app/code/core/Mage/Customer/Helper/Address.php
-
message: "#^Property Mage_Customer_Helper_Data\\:\\:\\$_customer \\(Mage_Customer_Model_Customer\\) in empty\\(\\) is not falsy\\.$#"
count: 1
- path: ../app/code/core/Mage/Customer/Helper/Data.php
+ path: app/code/core/Mage/Customer/Helper/Data.php
-
message: "#^Property Mage_Customer_Helper_Data\\:\\:\\$_groups \\(Mage_Customer_Model_Entity_Group_Collection\\) does not accept Mage_Customer_Model_Resource_Group_Collection\\.$#"
count: 1
- path: ../app/code/core/Mage/Customer/Helper/Data.php
+ path: app/code/core/Mage/Customer/Helper/Data.php
-
message: "#^Property Mage_Customer_Helper_Data\\:\\:\\$_groups \\(Mage_Customer_Model_Entity_Group_Collection\\) in empty\\(\\) is not falsy\\.$#"
count: 1
- path: ../app/code/core/Mage/Customer/Helper/Data.php
+ path: app/code/core/Mage/Customer/Helper/Data.php
-
message: "#^Argument of an invalid type string supplied for foreach, only iterables are supported\\.$#"
count: 1
- path: ../app/code/core/Mage/Customer/Model/Address/Abstract.php
+ path: app/code/core/Mage/Customer/Model/Address/Abstract.php
-
message: "#^Method Mage_Customer_Model_Address_Abstract\\:\\:getStreet\\(\\) should return string but returns array\\.$#"
count: 1
- path: ../app/code/core/Mage/Customer/Model/Address/Abstract.php
+ path: app/code/core/Mage/Customer/Model/Address/Abstract.php
-
message: "#^Negated boolean expression is always false\\.$#"
count: 1
- path: ../app/code/core/Mage/Customer/Model/Address/Abstract.php
+ path: app/code/core/Mage/Customer/Model/Address/Abstract.php
-
message: "#^Parameter \\#1 \\$entity of method Mage_Customer_Model_Api_Resource\\:\\:getAllowedAttributes\\(\\) expects Mage_Eav_Model_Entity_Abstract, Mage_Customer_Model_Address given\\.$#"
count: 4
- path: ../app/code/core/Mage/Customer/Model/Address/Api.php
+ path: app/code/core/Mage/Customer/Model/Address/Api.php
-
message: "#^Cannot access property \\$is_default_billing on array\\.$#"
count: 2
- path: ../app/code/core/Mage/Customer/Model/Address/Api/V2.php
+ path: app/code/core/Mage/Customer/Model/Address/Api/V2.php
-
message: "#^Cannot access property \\$is_default_shipping on array\\.$#"
count: 2
- path: ../app/code/core/Mage/Customer/Model/Address/Api/V2.php
+ path: app/code/core/Mage/Customer/Model/Address/Api/V2.php
-
message: "#^Parameter \\#1 \\$entity of method Mage_Customer_Model_Api_Resource\\:\\:getAllowedAttributes\\(\\) expects Mage_Eav_Model_Entity_Abstract, Mage_Customer_Model_Address given\\.$#"
count: 3
- path: ../app/code/core/Mage/Customer/Model/Address/Api/V2.php
+ path: app/code/core/Mage/Customer/Model/Address/Api/V2.php
-
message: "#^Call to function is_null\\(\\) with Mage_Core_Model_Store will always evaluate to false\\.$#"
count: 1
- path: ../app/code/core/Mage/Customer/Model/Address/Config.php
+ path: app/code/core/Mage/Customer/Model/Address/Config.php
-
message: "#^Call to an undefined method Mage_Eav_Model_Entity_Abstract\\:\\:getResource\\(\\)\\.$#"
count: 1
- path: ../app/code/core/Mage/Customer/Model/Api/Resource.php
+ path: app/code/core/Mage/Customer/Model/Api/Resource.php
-
message: "#^Call to an undefined method Mage_Customer_Model_Api2_Customer_Address\\:\\:_getDefaultAddressesInfo\\(\\)\\.$#"
count: 1
- path: ../app/code/core/Mage/Customer/Model/Api2/Customer/Address.php
+ path: app/code/core/Mage/Customer/Model/Api2/Customer/Address.php
-
message: "#^Parameter \\#2 \\$condition of method Mage_Eav_Model_Entity_Collection_Abstract\\:\\:addAttributeToFilter\\(\\) expects array\\|string\\|null, int given\\.$#"
count: 1
- path: ../app/code/core/Mage/Customer/Model/Api2/Customer/Rest/Customer/V1.php
+ path: app/code/core/Mage/Customer/Model/Api2/Customer/Rest/Customer/V1.php
-
message: "#^Call to function is_null\\(\\) with Mage_Customer_Model_Customer will always evaluate to false\\.$#"
count: 1
- path: ../app/code/core/Mage/Customer/Model/Convert/Adapter/Customer.php
+ path: app/code/core/Mage/Customer/Model/Convert/Adapter/Customer.php
-
message: "#^Method Mage_Eav_Model_Entity_Attribute_Source_Interface\\:\\:getAllOptions\\(\\) invoked with 1 parameter, 0 required\\.$#"
count: 1
- path: ../app/code/core/Mage/Customer/Model/Convert/Adapter/Customer.php
+ path: app/code/core/Mage/Customer/Model/Convert/Adapter/Customer.php
-
message: "#^Negated boolean expression is always false\\.$#"
count: 1
- path: ../app/code/core/Mage/Customer/Model/Convert/Adapter/Customer.php
+ path: app/code/core/Mage/Customer/Model/Convert/Adapter/Customer.php
-
message: "#^Property Mage_Customer_Model_Convert_Adapter_Customer\\:\\:\\$_customerModel \\(Mage_Customer_Model_Customer\\) does not accept string\\.$#"
count: 1
- path: ../app/code/core/Mage/Customer/Model/Convert/Adapter/Customer.php
+ path: app/code/core/Mage/Customer/Model/Convert/Adapter/Customer.php
-
message: "#^Call to an undefined method Mage_Eav_Model_Entity_Abstract\\:\\:setStore\\(\\)\\.$#"
count: 1
- path: ../app/code/core/Mage/Customer/Model/Convert/Parser/Customer.php
+ path: app/code/core/Mage/Customer/Model/Convert/Parser/Customer.php
-
message: "#^Call to function is_array\\(\\) with bool\\|string will always evaluate to false\\.$#"
count: 1
- path: ../app/code/core/Mage/Customer/Model/Convert/Parser/Customer.php
+ path: app/code/core/Mage/Customer/Model/Convert/Parser/Customer.php
-
message: "#^Call to function is_null\\(\\) with array will always evaluate to false\\.$#"
count: 1
- path: ../app/code/core/Mage/Customer/Model/Convert/Parser/Customer.php
+ path: app/code/core/Mage/Customer/Model/Convert/Parser/Customer.php
-
message: "#^If condition is always true\\.$#"
count: 2
- path: ../app/code/core/Mage/Customer/Model/Convert/Parser/Customer.php
+ path: app/code/core/Mage/Customer/Model/Convert/Parser/Customer.php
-
message: "#^Negated boolean expression is always false\\.$#"
count: 1
- path: ../app/code/core/Mage/Customer/Model/Convert/Parser/Customer.php
+ path: app/code/core/Mage/Customer/Model/Convert/Parser/Customer.php
-
message: "#^Variable \\$regionId might not be defined\\.$#"
count: 2
- path: ../app/code/core/Mage/Customer/Model/Convert/Parser/Customer.php
+ path: app/code/core/Mage/Customer/Model/Convert/Parser/Customer.php
-
message: "#^If condition is always true\\.$#"
count: 4
- path: ../app/code/core/Mage/Customer/Model/Customer.php
+ path: app/code/core/Mage/Customer/Model/Customer.php
-
message: "#^Left side of && is always true\\.$#"
count: 1
- path: ../app/code/core/Mage/Customer/Model/Customer.php
+ path: app/code/core/Mage/Customer/Model/Customer.php
-
message: "#^Method Mage_Directory_Model_Region\\:\\:loadByName\\(\\) invoked with 1 parameter, 2 required\\.$#"
count: 1
- path: ../app/code/core/Mage/Customer/Model/Customer.php
+ path: app/code/core/Mage/Customer/Model/Customer.php
-
message: "#^Property Mage_Customer_Model_Customer\\:\\:\\$_addresses \\(array\\\\) does not accept null\\.$#"
count: 1
- path: ../app/code/core/Mage/Customer/Model/Customer.php
+ path: app/code/core/Mage/Customer/Model/Customer.php
-
message: "#^Property Mage_Customer_Model_Customer\\:\\:\\$_addressesCollection \\(Mage_Customer_Model_Entity_Address_Collection\\) does not accept Mage_Customer_Model_Resource_Address_Collection\\.$#"
count: 1
- path: ../app/code/core/Mage/Customer/Model/Customer.php
+ path: app/code/core/Mage/Customer/Model/Customer.php
-
message: "#^Property Mage_Customer_Model_Customer\\:\\:\\$_addressesCollection \\(Mage_Customer_Model_Entity_Address_Collection\\) does not accept null\\.$#"
count: 1
- path: ../app/code/core/Mage/Customer/Model/Customer.php
+ path: app/code/core/Mage/Customer/Model/Customer.php
-
message: "#^Property Mage_Customer_Model_Customer\\:\\:\\$_attributes \\(array\\) does not accept null\\.$#"
count: 1
- path: ../app/code/core/Mage/Customer/Model/Customer.php
+ path: app/code/core/Mage/Customer/Model/Customer.php
-
message: "#^Ternary operator condition is always true\\.$#"
count: 1
- path: ../app/code/core/Mage/Customer/Model/Customer.php
+ path: app/code/core/Mage/Customer/Model/Customer.php
-
message: "#^Parameter \\#1 \\$entity of method Mage_Customer_Model_Api_Resource\\:\\:getAllowedAttributes\\(\\) expects Mage_Eav_Model_Entity_Abstract, Mage_Customer_Model_Customer given\\.$#"
count: 3
- path: ../app/code/core/Mage/Customer/Model/Customer/Api.php
+ path: app/code/core/Mage/Customer/Model/Customer/Api.php
-
message: "#^Parameter \\#1 \\$data \\(stdClass\\) of method Mage_Customer_Model_Customer_Api_V2\\:\\:_prepareData\\(\\) should be compatible with parameter \\$data \\(array\\) of method Mage_Customer_Model_Customer_Api\\:\\:_prepareData\\(\\)$#"
count: 1
- path: ../app/code/core/Mage/Customer/Model/Customer/Api/V2.php
+ path: app/code/core/Mage/Customer/Model/Customer/Api/V2.php
-
message: "#^Unreachable statement \\- code above always terminates\\.$#"
count: 1
- path: ../app/code/core/Mage/Customer/Model/Customer/Api/V2.php
+ path: app/code/core/Mage/Customer/Model/Customer/Api/V2.php
-
message: "#^Unreachable statement \\- code above always terminates\\.$#"
count: 1
- path: ../app/code/core/Mage/Customer/Model/Customer/Attribute/Source/Store.php
+ path: app/code/core/Mage/Customer/Model/Customer/Attribute/Source/Store.php
-
message: "#^Parameter \\#1 \\$read of method Mage_Eav_Model_Entity_Abstract\\:\\:setConnection\\(\\) expects string\\|Zend_Db_Adapter_Abstract, Varien_Db_Adapter_Interface\\|false given\\.$#"
count: 1
- path: ../app/code/core/Mage/Customer/Model/Resource/Address.php
+ path: app/code/core/Mage/Customer/Model/Resource/Address.php
-
message: "#^Parameter \\#2 \\$write of method Mage_Eav_Model_Entity_Abstract\\:\\:setConnection\\(\\) expects string\\|Zend_Db_Adapter_Abstract\\|null, Varien_Db_Adapter_Interface\\|false given\\.$#"
count: 1
- path: ../app/code/core/Mage/Customer/Model/Resource/Address.php
+ path: app/code/core/Mage/Customer/Model/Resource/Address.php
-
message: "#^Method Mage_Customer_Model_Resource_Customer\\:\\:getWebsiteId\\(\\) should return int but returns string\\.$#"
count: 1
- path: ../app/code/core/Mage/Customer/Model/Resource/Customer.php
+ path: app/code/core/Mage/Customer/Model/Resource/Customer.php
-
message: "#^Parameter \\#1 \\$alias of method Mage_Eav_Model_Entity_Abstract\\:\\:getTable\\(\\) expects string, array\\ given\\.$#"
count: 1
- path: ../app/code/core/Mage/Customer/Model/Resource/Customer.php
+ path: app/code/core/Mage/Customer/Model/Resource/Customer.php
-
message: "#^Parameter \\#1 \\$customer of method Mage_Customer_Model_Resource_Customer\\:\\:_saveAddresses\\(\\) expects Mage_Customer_Model_Customer, Varien_Object given\\.$#"
count: 1
- path: ../app/code/core/Mage/Customer/Model/Resource/Customer.php
+ path: app/code/core/Mage/Customer/Model/Resource/Customer.php
-
message: "#^Parameter \\#2 \\$entityId of method Mage_Eav_Model_Entity_Abstract\\:\\:load\\(\\) expects int, string given\\.$#"
count: 1
- path: ../app/code/core/Mage/Customer/Model/Resource/Customer.php
+ path: app/code/core/Mage/Customer/Model/Resource/Customer.php
-
message: "#^Parameter \\#3 \\$attribute of method Mage_Eav_Model_Entity_Collection_Abstract\\:\\:addExpressionAttributeToSelect\\(\\) expects string, array\\ given\\.$#"
count: 1
- path: ../app/code/core/Mage/Customer/Model/Resource/Customer/Collection.php
+ path: app/code/core/Mage/Customer/Model/Resource/Customer/Collection.php
-
message: "#^Parameter \\#2 \\$resourceModel of method Mage_Core_Model_Resource_Db_Collection_Abstract\\:\\:_init\\(\\) expects Mage_Core_Model_Resource_Db_Abstract\\|null, string given\\.$#"
count: 1
- path: ../app/code/core/Mage/Customer/Model/Resource/Form/Attribute/Collection.php
+ path: app/code/core/Mage/Customer/Model/Resource/Form/Attribute/Collection.php
-
message: "#^Parameter \\#3 \\$default of method Mage_Eav_Model_Entity_Setup\\:\\:_getValue\\(\\) expects string\\|null, int given\\.$#"
count: 4
- path: ../app/code/core/Mage/Customer/Model/Resource/Setup.php
+ path: app/code/core/Mage/Customer/Model/Resource/Setup.php
-
message: "#^If condition is always true\\.$#"
count: 1
- path: ../app/code/core/Mage/Customer/Model/Session.php
+ path: app/code/core/Mage/Customer/Model/Session.php
-
message: "#^Parameter \\#1 \\$url of method Mage_Core_Controller_Response_Http\\:\\:setRedirect\\(\\) expects string, bool given\\.$#"
count: 1
- path: ../app/code/core/Mage/Customer/Model/Session.php
+ path: app/code/core/Mage/Customer/Model/Session.php
-
message: "#^Right side of && is always true\\.$#"
count: 1
- path: ../app/code/core/Mage/Customer/Model/Session.php
+ path: app/code/core/Mage/Customer/Model/Session.php
-
message: "#^Unreachable statement \\- code above always terminates\\.$#"
count: 2
- path: ../app/code/core/Mage/Customer/Model/Session.php
+ path: app/code/core/Mage/Customer/Model/Session.php
-
message: "#^Cannot call method addAttributeToSelect\\(\\) on Mage_Core_Model_Resource_Db_Collection_Abstract\\|false\\.$#"
count: 1
- path: ../app/code/core/Mage/Customer/controllers/AccountController.php
+ path: app/code/core/Mage/Customer/controllers/AccountController.php
-
message: "#^Cannot call method sendNewAccountEmail\\(\\) on Mage_Core_Model_Abstract\\|false\\.$#"
count: 1
- path: ../app/code/core/Mage/Customer/controllers/AccountController.php
+ path: app/code/core/Mage/Customer/controllers/AccountController.php
-
message: "#^Method Mage_Customer_AccountController\\:\\:postDispatch\\(\\) should return \\$this\\(Mage_Customer_AccountController\\) but return statement is missing\\.$#"
count: 1
- path: ../app/code/core/Mage/Customer/controllers/AccountController.php
+ path: app/code/core/Mage/Customer/controllers/AccountController.php
-
message: "#^Method Mage_Customer_AccountController\\:\\:preDispatch\\(\\) should return \\$this\\(Mage_Customer_AccountController\\) but empty return statement found\\.$#"
count: 1
- path: ../app/code/core/Mage/Customer/controllers/AccountController.php
+ path: app/code/core/Mage/Customer/controllers/AccountController.php
-
message: "#^Parameter \\#3 \\$storeId of method Mage_Customer_Model_Customer\\:\\:sendNewAccountEmail\\(\\) expects string, int given\\.$#"
count: 2
- path: ../app/code/core/Mage/Customer/controllers/AccountController.php
+ path: app/code/core/Mage/Customer/controllers/AccountController.php
-
message: "#^Parameter \\#3 \\$value of method Mage_Core_Controller_Varien_Action\\:\\:setFlag\\(\\) expects int\\|string, true given\\.$#"
count: 1
- path: ../app/code/core/Mage/Customer/controllers/AccountController.php
+ path: app/code/core/Mage/Customer/controllers/AccountController.php
-
message: "#^Parameter \\#3 \\$value of method Mage_Core_Controller_Varien_Action\\:\\:setFlag\\(\\) expects int\\|string, true given\\.$#"
count: 1
- path: ../app/code/core/Mage/Customer/controllers/AddressController.php
+ path: app/code/core/Mage/Customer/controllers/AddressController.php
-
message: "#^Variable \\$address might not be defined\\.$#"
count: 1
- path: ../app/code/core/Mage/Customer/controllers/AddressController.php
+ path: app/code/core/Mage/Customer/controllers/AddressController.php
-
message: "#^Call to function is_null\\(\\) with Mage_Dataflow_Model_Batch_Export will always evaluate to false\\.$#"
count: 1
- path: ../app/code/core/Mage/Dataflow/Model/Batch.php
+ path: app/code/core/Mage/Dataflow/Model/Batch.php
-
message: "#^Call to function is_null\\(\\) with Mage_Dataflow_Model_Batch_Import will always evaluate to false\\.$#"
count: 1
- path: ../app/code/core/Mage/Dataflow/Model/Batch.php
+ path: app/code/core/Mage/Dataflow/Model/Batch.php
-
message: "#^Call to function is_null\\(\\) with Mage_Dataflow_Model_Batch_Io will always evaluate to false\\.$#"
count: 1
- path: ../app/code/core/Mage/Dataflow/Model/Batch.php
+ path: app/code/core/Mage/Dataflow/Model/Batch.php
-
message: "#^Method Mage_Dataflow_Model_Batch\\:\\:setParams\\(\\) should return Mage_Dataflow_Model_Batch_Abstract but returns \\$this\\(Mage_Dataflow_Model_Batch\\)\\.$#"
count: 1
- path: ../app/code/core/Mage/Dataflow/Model/Batch.php
+ path: app/code/core/Mage/Dataflow/Model/Batch.php
-
message: "#^Property Mage_Dataflow_Model_Batch\\:\\:\\$_batchExport \\(Mage_Dataflow_Model_Batch_Export\\) does not accept string\\.$#"
count: 1
- path: ../app/code/core/Mage/Dataflow/Model/Batch.php
+ path: app/code/core/Mage/Dataflow/Model/Batch.php
-
message: "#^Property Mage_Dataflow_Model_Batch\\:\\:\\$_batchImport \\(Mage_Dataflow_Model_Batch_Import\\) does not accept string\\.$#"
count: 1
- path: ../app/code/core/Mage/Dataflow/Model/Batch.php
+ path: app/code/core/Mage/Dataflow/Model/Batch.php
-
message: "#^Call to an undefined method Mage_Core_Model_Resource_Db_Abstract\\:\\:deleteCollection\\(\\)\\.$#"
count: 1
- path: ../app/code/core/Mage/Dataflow/Model/Batch/Abstract.php
+ path: app/code/core/Mage/Dataflow/Model/Batch/Abstract.php
-
message: "#^Call to an undefined method Mage_Core_Model_Resource_Db_Abstract\\:\\:getIdCollection\\(\\)\\.$#"
count: 1
- path: ../app/code/core/Mage/Dataflow/Model/Batch/Abstract.php
+ path: app/code/core/Mage/Dataflow/Model/Batch/Abstract.php
-
message: "#^Call to function is_null\\(\\) with Varien_Io_File will always evaluate to false\\.$#"
count: 1
- path: ../app/code/core/Mage/Dataflow/Model/Batch/Io.php
+ path: app/code/core/Mage/Dataflow/Model/Batch/Io.php
-
message: "#^Call to function is_null\\(\\) with string will always evaluate to false\\.$#"
count: 2
- path: ../app/code/core/Mage/Dataflow/Model/Batch/Io.php
+ path: app/code/core/Mage/Dataflow/Model/Batch/Io.php
-
message: "#^Call to an undefined method Mage_Dataflow_Model_Convert_Action\\:\\:getData\\(\\)\\.$#"
count: 1
- path: ../app/code/core/Mage/Dataflow/Model/Convert.php
+ path: app/code/core/Mage/Dataflow/Model/Convert.php
-
message: "#^Call to an undefined method Mage_Dataflow_Model_Convert_Action_Abstract\\:\\:getClassNameByType\\(\\)\\.$#"
count: 1
- path: ../app/code/core/Mage/Dataflow/Model/Convert/Action/Abstract.php
+ path: app/code/core/Mage/Dataflow/Model/Convert/Action/Abstract.php
-
message: "#^Call to an undefined method Mage_Dataflow_Model_Convert_Container_Interface\\:\\:setAction\\(\\)\\.$#"
count: 1
- path: ../app/code/core/Mage/Dataflow/Model/Convert/Action/Abstract.php
+ path: app/code/core/Mage/Dataflow/Model/Convert/Action/Abstract.php
-
message: "#^Call to an undefined method Mage_Dataflow_Model_Convert_Container_Interface\\:\\:setProfile\\(\\)\\.$#"
count: 1
- path: ../app/code/core/Mage/Dataflow/Model/Convert/Action/Abstract.php
+ path: app/code/core/Mage/Dataflow/Model/Convert/Action/Abstract.php
-
message: "#^Negated boolean expression is always false\\.$#"
count: 1
- path: ../app/code/core/Mage/Dataflow/Model/Convert/Action/Abstract.php
+ path: app/code/core/Mage/Dataflow/Model/Convert/Action/Abstract.php
-
message: "#^Property Mage_Dataflow_Model_Convert_Action_Abstract\\:\\:\\$_container \\(Mage_Dataflow_Model_Convert_Container_Abstract\\) does not accept Mage_Dataflow_Model_Convert_Container_Interface\\.$#"
count: 1
- path: ../app/code/core/Mage/Dataflow/Model/Convert/Action/Abstract.php
+ path: app/code/core/Mage/Dataflow/Model/Convert/Action/Abstract.php
-
message: "#^Undefined variable\\: \\$action$#"
count: 1
- path: ../app/code/core/Mage/Dataflow/Model/Convert/Action/Abstract.php
+ path: app/code/core/Mage/Dataflow/Model/Convert/Action/Abstract.php
-
message: "#^Negated boolean expression is always false\\.$#"
count: 1
- path: ../app/code/core/Mage/Dataflow/Model/Convert/Adapter/Db/Table.php
+ path: app/code/core/Mage/Dataflow/Model/Convert/Adapter/Db/Table.php
-
message: "#^If condition is always false\\.$#"
count: 1
- path: ../app/code/core/Mage/Dataflow/Model/Convert/Adapter/Io.php
+ path: app/code/core/Mage/Dataflow/Model/Convert/Adapter/Io.php
-
message: "#^Negated boolean expression is always false\\.$#"
count: 1
- path: ../app/code/core/Mage/Dataflow/Model/Convert/Adapter/Io.php
+ path: app/code/core/Mage/Dataflow/Model/Convert/Adapter/Io.php
-
message: "#^Negated boolean expression is always true\\.$#"
count: 3
- path: ../app/code/core/Mage/Dataflow/Model/Convert/Adapter/Io.php
+ path: app/code/core/Mage/Dataflow/Model/Convert/Adapter/Io.php
-
message: "#^Unreachable statement \\- code above always terminates\\.$#"
count: 1
- path: ../app/code/core/Mage/Dataflow/Model/Convert/Adapter/Io.php
+ path: app/code/core/Mage/Dataflow/Model/Convert/Adapter/Io.php
-
message: "#^Negated boolean expression is always false\\.$#"
count: 1
- path: ../app/code/core/Mage/Dataflow/Model/Convert/Adapter/Zend/Cache.php
+ path: app/code/core/Mage/Dataflow/Model/Convert/Adapter/Zend/Cache.php
-
message: "#^Negated boolean expression is always false\\.$#"
count: 1
- path: ../app/code/core/Mage/Dataflow/Model/Convert/Adapter/Zend/Db.php
+ path: app/code/core/Mage/Dataflow/Model/Convert/Adapter/Zend/Db.php
-
message: "#^Call to an undefined method Mage_Dataflow_Model_Convert_Container_Interface\\:\\:getName\\(\\)\\.$#"
count: 2
- path: ../app/code/core/Mage/Dataflow/Model/Convert/Container/Collection.php
+ path: app/code/core/Mage/Dataflow/Model/Convert/Container/Collection.php
-
message: "#^Call to function is_null\\(\\) with Mage_Dataflow_Model_Batch will always evaluate to false\\.$#"
count: 1
- path: ../app/code/core/Mage/Dataflow/Model/Convert/Mapper/Column.php
+ path: app/code/core/Mage/Dataflow/Model/Convert/Mapper/Column.php
-
message: "#^Call to function is_null\\(\\) with Mage_Dataflow_Model_Batch_Export will always evaluate to false\\.$#"
count: 1
- path: ../app/code/core/Mage/Dataflow/Model/Convert/Mapper/Column.php
+ path: app/code/core/Mage/Dataflow/Model/Convert/Mapper/Column.php
-
message: "#^Call to function is_null\\(\\) with Mage_Dataflow_Model_Batch_Import will always evaluate to false\\.$#"
count: 1
- path: ../app/code/core/Mage/Dataflow/Model/Convert/Mapper/Column.php
+ path: app/code/core/Mage/Dataflow/Model/Convert/Mapper/Column.php
-
message: "#^Method Mage_Dataflow_Model_Convert_Mapper_Column\\:\\:getBatchImportModel\\(\\) has invalid return type Mage_Dataflow_Model_Import_Export\\.$#"
count: 1
- path: ../app/code/core/Mage/Dataflow/Model/Convert/Mapper/Column.php
+ path: app/code/core/Mage/Dataflow/Model/Convert/Mapper/Column.php
-
message: "#^Property Mage_Dataflow_Model_Convert_Mapper_Column\\:\\:\\$_batchExport \\(Mage_Dataflow_Model_Batch_Export\\) does not accept string\\.$#"
count: 1
- path: ../app/code/core/Mage/Dataflow/Model/Convert/Mapper/Column.php
+ path: app/code/core/Mage/Dataflow/Model/Convert/Mapper/Column.php
-
message: "#^Property Mage_Dataflow_Model_Convert_Mapper_Column\\:\\:\\$_batchImport \\(Mage_Dataflow_Model_Batch_Import\\) does not accept string\\.$#"
count: 1
- path: ../app/code/core/Mage/Dataflow/Model/Convert/Mapper/Column.php
+ path: app/code/core/Mage/Dataflow/Model/Convert/Mapper/Column.php
-
message: "#^Call to function is_null\\(\\) with Mage_Dataflow_Model_Batch will always evaluate to false\\.$#"
count: 1
- path: ../app/code/core/Mage/Dataflow/Model/Convert/Parser/Abstract.php
+ path: app/code/core/Mage/Dataflow/Model/Convert/Parser/Abstract.php
-
message: "#^Call to function is_null\\(\\) with Mage_Dataflow_Model_Batch_Export will always evaluate to false\\.$#"
count: 1
- path: ../app/code/core/Mage/Dataflow/Model/Convert/Parser/Abstract.php
+ path: app/code/core/Mage/Dataflow/Model/Convert/Parser/Abstract.php
-
message: "#^Call to function is_null\\(\\) with Mage_Dataflow_Model_Batch_Import will always evaluate to false\\.$#"
count: 1
- path: ../app/code/core/Mage/Dataflow/Model/Convert/Parser/Abstract.php
+ path: app/code/core/Mage/Dataflow/Model/Convert/Parser/Abstract.php
-
message: "#^Property Mage_Dataflow_Model_Convert_Parser_Abstract\\:\\:\\$_batchExport \\(Mage_Dataflow_Model_Batch_Export\\) does not accept string\\.$#"
count: 1
- path: ../app/code/core/Mage/Dataflow/Model/Convert/Parser/Abstract.php
+ path: app/code/core/Mage/Dataflow/Model/Convert/Parser/Abstract.php
-
message: "#^Property Mage_Dataflow_Model_Convert_Parser_Abstract\\:\\:\\$_batchImport \\(Mage_Dataflow_Model_Batch_Import\\) does not accept string\\.$#"
count: 1
- path: ../app/code/core/Mage/Dataflow/Model/Convert/Parser/Abstract.php
+ path: app/code/core/Mage/Dataflow/Model/Convert/Parser/Abstract.php
-
message: "#^Argument of an invalid type string\\|false supplied for foreach, only iterables are supported\\.$#"
count: 1
- path: ../app/code/core/Mage/Dataflow/Model/Convert/Parser/Csv.php
+ path: app/code/core/Mage/Dataflow/Model/Convert/Parser/Csv.php
-
message: "#^Parameter \\#1 \\$value of function count expects array\\|Countable, string given\\.$#"
count: 1
- path: ../app/code/core/Mage/Dataflow/Model/Convert/Parser/Csv.php
+ path: app/code/core/Mage/Dataflow/Model/Convert/Parser/Csv.php
-
message: "#^Result of && is always false\\.$#"
count: 1
- path: ../app/code/core/Mage/Dataflow/Model/Convert/Parser/Csv.php
+ path: app/code/core/Mage/Dataflow/Model/Convert/Parser/Csv.php
-
message: "#^Strict comparison using \\=\\=\\= between string and null will always evaluate to false\\.$#"
count: 1
- path: ../app/code/core/Mage/Dataflow/Model/Convert/Parser/Csv.php
+ path: app/code/core/Mage/Dataflow/Model/Convert/Parser/Csv.php
-
message: "#^Call to function is_null\\(\\) with SimpleXMLElement will always evaluate to false\\.$#"
count: 1
- path: ../app/code/core/Mage/Dataflow/Model/Convert/Parser/Xml/Excel.php
+ path: app/code/core/Mage/Dataflow/Model/Convert/Parser/Xml/Excel.php
-
message: "#^Call to function is_null\\(\\) with array will always evaluate to false\\.$#"
count: 2
- path: ../app/code/core/Mage/Dataflow/Model/Convert/Parser/Xml/Excel.php
+ path: app/code/core/Mage/Dataflow/Model/Convert/Parser/Xml/Excel.php
-
message: "#^Unreachable statement \\- code above always terminates\\.$#"
count: 1
- path: ../app/code/core/Mage/Dataflow/Model/Convert/Parser/Xml/Excel.php
+ path: app/code/core/Mage/Dataflow/Model/Convert/Parser/Xml/Excel.php
-
message: "#^Method Mage_Dataflow_Model_Convert_Profile_Abstract\\:\\:run\\(\\) should return Mage_Dataflow_Model_Convert_Profile_Abstract but empty return statement found\\.$#"
count: 2
- path: ../app/code/core/Mage/Dataflow/Model/Convert/Profile/Abstract.php
+ path: app/code/core/Mage/Dataflow/Model/Convert/Profile/Abstract.php
-
message: "#^Undefined variable\\: \\$profile$#"
count: 1
- path: ../app/code/core/Mage/Dataflow/Model/Convert/Profile/Abstract.php
+ path: app/code/core/Mage/Dataflow/Model/Convert/Profile/Abstract.php
-
message: "#^Comparison operation \"\\<\" between int\\<0, max\\> and 0 is always false\\.$#"
count: 1
- path: ../app/code/core/Mage/Dataflow/Model/Profile.php
+ path: app/code/core/Mage/Dataflow/Model/Profile.php
-
message: "#^Result of && is always false\\.$#"
count: 1
- path: ../app/code/core/Mage/Dataflow/Model/Profile.php
+ path: app/code/core/Mage/Dataflow/Model/Profile.php
-
message: "#^Right side of && is always true\\.$#"
count: 1
- path: ../app/code/core/Mage/Dataflow/Model/Profile.php
+ path: app/code/core/Mage/Dataflow/Model/Profile.php
-
message: "#^Variable \\$parseFileXml might not be defined\\.$#"
count: 1
- path: ../app/code/core/Mage/Dataflow/Model/Profile.php
+ path: app/code/core/Mage/Dataflow/Model/Profile.php
-
message: "#^Variable \\$path might not be defined\\.$#"
count: 2
- path: ../app/code/core/Mage/Dataflow/Model/Profile.php
+ path: app/code/core/Mage/Dataflow/Model/Profile.php
-
message: "#^Parameter \\#1 \\$date of method Mage_Core_Model_Resource_Abstract\\:\\:formatDate\\(\\) expects string\\|Zend_Date\\|true\\|null, int\\<1, max\\> given\\.$#"
count: 2
- path: ../app/code/core/Mage/Dataflow/Model/Resource/Profile.php
+ path: app/code/core/Mage/Dataflow/Model/Resource/Profile.php
-
message: "#^Parameter \\#1 \\$date of method Mage_Core_Model_Resource_Abstract\\:\\:formatDate\\(\\) expects string\\|Zend_Date\\|true\\|null, int\\<1, max\\> given\\.$#"
count: 1
- path: ../app/code/core/Mage/Dataflow/Model/Resource/Profile/History.php
+ path: app/code/core/Mage/Dataflow/Model/Resource/Profile/History.php
-
message: "#^Parameter \\#1 \\$currency of method Mage_Directory_Model_Currency\\:\\:getCurrencyRates\\(\\) expects string, Mage_Directory_Model_Currency given\\.$#"
count: 1
- path: ../app/code/core/Mage/Directory/Block/Currency.php
+ path: app/code/core/Mage/Directory/Block/Currency.php
-
message: "#^Negated boolean expression is always false\\.$#"
count: 2
- path: ../app/code/core/Mage/Directory/Helper/Data.php
+ path: app/code/core/Mage/Directory/Helper/Data.php
-
message: "#^Parameter \\#1 \\$storeId of method Mage_Directory_Helper_Data\\:\\:_getRegions\\(\\) expects string, int\\|null given\\.$#"
count: 1
- path: ../app/code/core/Mage/Directory/Helper/Data.php
+ path: app/code/core/Mage/Directory/Helper/Data.php
-
message: "#^Property Mage_Directory_Helper_Data\\:\\:\\$_countryCollection \\(Mage_Directory_Model_Resource_Country_Collection\\) does not accept Mage_Core_Model_Resource_Db_Collection_Abstract\\.$#"
count: 1
- path: ../app/code/core/Mage/Directory/Helper/Data.php
+ path: app/code/core/Mage/Directory/Helper/Data.php
-
message: "#^If condition is always true\\.$#"
count: 1
- path: ../app/code/core/Mage/Directory/Model/Country.php
+ path: app/code/core/Mage/Directory/Model/Country.php
-
message: "#^Method Mage_Directory_Model_Country\\:\\:getFormat\\(\\) should return Mage_Directory_Model_Country_Format but returns null\\.$#"
count: 1
- path: ../app/code/core/Mage/Directory/Model/Country.php
+ path: app/code/core/Mage/Directory/Model/Country.php
-
message: "#^Negated boolean expression is always false\\.$#"
count: 1
- path: ../app/code/core/Mage/Directory/Model/Currency.php
+ path: app/code/core/Mage/Directory/Model/Currency.php
-
message: "#^Parameter \\#1 \\$value of method Zend_Currency\\:\\:toCurrency\\(\\) expects float\\|int\\|null, string given\\.$#"
count: 1
- path: ../app/code/core/Mage/Directory/Model/Currency/Filter.php
+ path: app/code/core/Mage/Directory/Model/Currency/Filter.php
-
message: "#^Variable \\$response might not be defined\\.$#"
count: 1
- path: ../app/code/core/Mage/Directory/Model/Currency/Import/Fixerio.php
+ path: app/code/core/Mage/Directory/Model/Currency/Import/Fixerio.php
-
message: "#^Method Mage_Directory_Model_Currency_Import_Webservicex\\:\\:_convert\\(\\) should return float\\|null but return statement is missing\\.$#"
count: 1
- path: ../app/code/core/Mage/Directory/Model/Currency/Import/Webservicex.php
+ path: app/code/core/Mage/Directory/Model/Currency/Import/Webservicex.php
-
message: "#^Parameter \\#1 \\$modelClass of static method Mage\\:\\:getModel\\(\\) expects string, array given\\.$#"
count: 1
- path: ../app/code/core/Mage/Directory/Model/Observer.php
+ path: app/code/core/Mage/Directory/Model/Observer.php
-
message: "#^Variable \\$importModel might not be defined\\.$#"
count: 2
- path: ../app/code/core/Mage/Directory/Model/Observer.php
+ path: app/code/core/Mage/Directory/Model/Observer.php
-
message: "#^Variable \\$allowCountries in empty\\(\\) always exists and is not falsy\\.$#"
count: 1
- path: ../app/code/core/Mage/Directory/Model/Resource/Country/Collection.php
+ path: app/code/core/Mage/Directory/Model/Resource/Country/Collection.php
-
message: "#^Strict comparison using \\=\\=\\= between string and false will always evaluate to false\\.$#"
count: 1
- path: ../app/code/core/Mage/Directory/Model/Resource/Currency.php
+ path: app/code/core/Mage/Directory/Model/Resource/Currency.php
-
message: "#^Parameter \\#2 \\$countryId of method Mage_Directory_Model_Resource_Region\\:\\:_loadByCountry\\(\\) expects int, string given\\.$#"
count: 2
- path: ../app/code/core/Mage/Directory/Model/Resource/Region.php
+ path: app/code/core/Mage/Directory/Model/Resource/Region.php
-
message: "#^Call to function is_null\\(\\) with Mage_Catalog_Model_Resource_Eav_Attribute will always evaluate to false\\.$#"
count: 1
- path: ../app/code/core/Mage/Downloadable/Block/Adminhtml/Catalog/Product/Edit/Tab/Downloadable/Links.php
+ path: app/code/core/Mage/Downloadable/Block/Adminhtml/Catalog/Product/Edit/Tab/Downloadable/Links.php
-
message: "#^Property Mage_Downloadable_Block_Adminhtml_Catalog_Product_Edit_Tab_Downloadable_Links\\:\\:\\$_purchasedSeparatelyAttribute \\(Mage_Catalog_Model_Resource_Eav_Attribute\\) does not accept Mage_Eav_Model_Entity_Attribute\\.$#"
count: 1
- path: ../app/code/core/Mage/Downloadable/Block/Adminhtml/Catalog/Product/Edit/Tab/Downloadable/Links.php
+ path: app/code/core/Mage/Downloadable/Block/Adminhtml/Catalog/Product/Edit/Tab/Downloadable/Links.php
-
message: "#^Left side of && is always true\\.$#"
count: 1
- path: ../app/code/core/Mage/Downloadable/Block/Adminhtml/Catalog/Product/Edit/Tab/Downloadable/Samples.php
+ path: app/code/core/Mage/Downloadable/Block/Adminhtml/Catalog/Product/Edit/Tab/Downloadable/Samples.php
-
message: "#^Left side of && is always true\\.$#"
count: 1
- path: ../app/code/core/Mage/Downloadable/Block/Adminhtml/Sales/Items/Column/Downloadable/Name.php
+ path: app/code/core/Mage/Downloadable/Block/Adminhtml/Sales/Items/Column/Downloadable/Name.php
-
message: "#^Left side of && is always true\\.$#"
count: 1
- path: ../app/code/core/Mage/Downloadable/Block/Catalog/Product/Links.php
+ path: app/code/core/Mage/Downloadable/Block/Catalog/Product/Links.php
-
message: "#^If condition is always true\\.$#"
count: 1
- path: ../app/code/core/Mage/Downloadable/Helper/Catalog/Product/Configuration.php
+ path: app/code/core/Mage/Downloadable/Helper/Catalog/Product/Configuration.php
-
message: "#^Call to function is_null\\(\\) with resource will always evaluate to false\\.$#"
count: 1
- path: ../app/code/core/Mage/Downloadable/Helper/Download.php
+ path: app/code/core/Mage/Downloadable/Helper/Download.php
-
message: "#^Cannot call method streamRead\\(\\) on resource\\.$#"
count: 1
- path: ../app/code/core/Mage/Downloadable/Helper/Download.php
+ path: app/code/core/Mage/Downloadable/Helper/Download.php
-
message: "#^Cannot call method streamStat\\(\\) on resource\\.$#"
count: 1
- path: ../app/code/core/Mage/Downloadable/Helper/Download.php
+ path: app/code/core/Mage/Downloadable/Helper/Download.php
-
message: "#^Parameter \\#1 \\$string of function strtolower expects string, bool given\\.$#"
count: 2
- path: ../app/code/core/Mage/Downloadable/Helper/Download.php
+ path: app/code/core/Mage/Downloadable/Helper/Download.php
-
message: "#^Property Mage_Downloadable_Helper_Download\\:\\:\\$_handle \\(resource\\) does not accept Varien_Io_File\\.$#"
count: 1
- path: ../app/code/core/Mage/Downloadable/Helper/Download.php
+ path: app/code/core/Mage/Downloadable/Helper/Download.php
-
message: "#^Negated boolean expression is always false\\.$#"
count: 1
- path: ../app/code/core/Mage/Downloadable/Helper/File.php
+ path: app/code/core/Mage/Downloadable/Helper/File.php
-
message: "#^Call to function is_null\\(\\) with int\\|string will always evaluate to false\\.$#"
count: 1
- path: ../app/code/core/Mage/Downloadable/Model/Link/Api.php
+ path: app/code/core/Mage/Downloadable/Model/Link/Api.php
-
message: "#^Cannot access offset 'file' on bool\\|void\\.$#"
count: 1
- path: ../app/code/core/Mage/Downloadable/Model/Link/Api.php
+ path: app/code/core/Mage/Downloadable/Model/Link/Api.php
-
message: "#^Offset 'file' does not exist on array\\{status\\: 'new'\\}\\.$#"
count: 2
- path: ../app/code/core/Mage/Downloadable/Model/Link/Api.php
+ path: app/code/core/Mage/Downloadable/Model/Link/Api.php
-
message: "#^Variable \\$downloadableModel might not be defined\\.$#"
count: 3
- path: ../app/code/core/Mage/Downloadable/Model/Link/Api.php
+ path: app/code/core/Mage/Downloadable/Model/Link/Api.php
-
message: "#^Parameter \\#2 \\$code of class Exception constructor expects int, string given\\.$#"
count: 2
- path: ../app/code/core/Mage/Downloadable/Model/Link/Api/Uploader.php
+ path: app/code/core/Mage/Downloadable/Model/Link/Api/Uploader.php
-
message: "#^Property Varien_File_Uploader\\:\\:\\$_uploadType \\(string\\) does not accept int\\.$#"
count: 1
- path: ../app/code/core/Mage/Downloadable/Model/Link/Api/Uploader.php
+ path: app/code/core/Mage/Downloadable/Model/Link/Api/Uploader.php
-
message: "#^Parameter \\#2 \\$resource \\(object\\) of method Mage_Downloadable_Model_Link_Api_V2\\:\\:add\\(\\) should be compatible with parameter \\$resource \\(array\\) of method Mage_Downloadable_Model_Link_Api\\:\\:add\\(\\)$#"
count: 1
- path: ../app/code/core/Mage/Downloadable/Model/Link/Api/V2.php
+ path: app/code/core/Mage/Downloadable/Model/Link/Api/V2.php
-
message: "#^Left side of && is always true\\.$#"
count: 2
- path: ../app/code/core/Mage/Downloadable/Model/Observer.php
+ path: app/code/core/Mage/Downloadable/Model/Observer.php
-
message: "#^Negated boolean expression is always false\\.$#"
count: 1
- path: ../app/code/core/Mage/Downloadable/Model/Observer.php
+ path: app/code/core/Mage/Downloadable/Model/Observer.php
-
message: "#^Call to function is_null\\(\\) with float will always evaluate to false\\.$#"
count: 1
- path: ../app/code/core/Mage/Downloadable/Model/Product/Price.php
+ path: app/code/core/Mage/Downloadable/Model/Product/Price.php
-
message: "#^If condition is always true\\.$#"
count: 1
- path: ../app/code/core/Mage/Downloadable/Model/Resource/Link.php
+ path: app/code/core/Mage/Downloadable/Model/Resource/Link.php
-
message: "#^If condition is always true\\.$#"
count: 1
- path: ../app/code/core/Mage/Downloadable/Model/Resource/Sample.php
+ path: app/code/core/Mage/Downloadable/Model/Resource/Sample.php
-
message: "#^Parameter \\#1 \\$item of method Mage_Sales_Model_Order_Pdf_Items_Abstract\\:\\:getSku\\(\\) expects Mage_Sales_Model_Order_Creditmemo_Item\\|Mage_Sales_Model_Order_Invoice_Item, Varien_Object given\\.$#"
count: 1
- path: ../app/code/core/Mage/Downloadable/Model/Sales/Order/Pdf/Items/Creditmemo.php
+ path: app/code/core/Mage/Downloadable/Model/Sales/Order/Pdf/Items/Creditmemo.php
-
message: "#^Parameter \\#1 \\$item of method Mage_Sales_Model_Order_Pdf_Items_Abstract\\:\\:getSku\\(\\) expects Mage_Sales_Model_Order_Creditmemo_Item\\|Mage_Sales_Model_Order_Invoice_Item, Varien_Object given\\.$#"
count: 1
- path: ../app/code/core/Mage/Downloadable/Model/Sales/Order/Pdf/Items/Invoice.php
+ path: app/code/core/Mage/Downloadable/Model/Sales/Order/Pdf/Items/Invoice.php
-
message: "#^Cannot access offset 'tmp_name' on bool\\|void\\.$#"
count: 2
- path: ../app/code/core/Mage/Downloadable/controllers/Adminhtml/Downloadable/FileController.php
+ path: app/code/core/Mage/Downloadable/controllers/Adminhtml/Downloadable/FileController.php
-
message: "#^Offset 'file' on array\\{path\\: \\(array\\\\|string\\)\\} in isset\\(\\) does not exist\\.$#"
count: 1
- path: ../app/code/core/Mage/Downloadable/controllers/Adminhtml/Downloadable/FileController.php
+ path: app/code/core/Mage/Downloadable/controllers/Adminhtml/Downloadable/FileController.php
-
message: "#^Parameter \\#2 \\$loginUrl of method Mage_Customer_Model_Session\\:\\:authenticate\\(\\) expects bool\\|null, string given\\.$#"
count: 1
- path: ../app/code/core/Mage/Downloadable/controllers/CustomerController.php
+ path: app/code/core/Mage/Downloadable/controllers/CustomerController.php
-
message: "#^Parameter \\#3 \\$value of method Mage_Core_Controller_Varien_Action\\:\\:setFlag\\(\\) expects int\\|string, true given\\.$#"
count: 1
- path: ../app/code/core/Mage/Downloadable/controllers/CustomerController.php
+ path: app/code/core/Mage/Downloadable/controllers/CustomerController.php
-
message: "#^Dead catch \\- Mage_Core_Exception is never thrown in the try block\\.$#"
count: 2
- path: ../app/code/core/Mage/Downloadable/controllers/DownloadController.php
+ path: app/code/core/Mage/Downloadable/controllers/DownloadController.php
-
message: "#^Method Mage_Customer_Model_Session\\:\\:setBeforeAuthUrl\\(\\) invoked with 2 parameters, 1 required\\.$#"
count: 1
- path: ../app/code/core/Mage/Downloadable/controllers/DownloadController.php
+ path: app/code/core/Mage/Downloadable/controllers/DownloadController.php
-
message: "#^Return type \\(void\\) of method Mage_Downloadable_FileController\\:\\:preDispatch\\(\\) should be compatible with return type \\(\\$this\\(Mage_Adminhtml_Controller_Action\\)\\) of method Mage_Adminhtml_Controller_Action\\:\\:preDispatch\\(\\)$#"
count: 1
- path: ../app/code/core/Mage/Downloadable/controllers/FileController.php
+ path: app/code/core/Mage/Downloadable/controllers/FileController.php
-
message: "#^Return type \\(void\\) of method Mage_Downloadable_Product_EditController\\:\\:preDispatch\\(\\) should be compatible with return type \\(Mage_Adminhtml_Controller_Action\\) of method Mage_Adminhtml_Catalog_ProductController\\:\\:preDispatch\\(\\)$#"
count: 1
- path: ../app/code/core/Mage/Downloadable/controllers/Product/EditController.php
+ path: app/code/core/Mage/Downloadable/controllers/Product/EditController.php
-
message: "#^Parameter \\#1 \\$readonly of method Varien_Data_Form_Abstract\\:\\:setReadonly\\(\\) expects bool, int given\\.$#"
count: 1
- path: ../app/code/core/Mage/Eav/Block/Adminhtml/Attribute/Edit/Main/Abstract.php
+ path: app/code/core/Mage/Eav/Block/Adminhtml/Attribute/Edit/Main/Abstract.php
-
message: "#^Call to function is_array\\(\\) with string will always evaluate to false\\.$#"
count: 1
- path: ../app/code/core/Mage/Eav/Block/Adminhtml/Attribute/Edit/Options/Abstract.php
+ path: app/code/core/Mage/Eav/Block/Adminhtml/Attribute/Edit/Options/Abstract.php
-
message: "#^Property Zend_Validate_InArray\\:\\:\\$_messageTemplates \\(array\\) does not accept null\\.$#"
count: 1
- path: ../app/code/core/Mage/Eav/Model/Adminhtml/System/Config/Source/Inputtype/Validator.php
+ path: app/code/core/Mage/Eav/Model/Adminhtml/System/Config/Source/Inputtype/Validator.php
-
message: "#^Call to an undefined method Mage_Eav_Model_Resource_Entity_Attribute\\:\\:getUsedInForms\\(\\)\\.$#"
count: 1
- path: ../app/code/core/Mage/Eav/Model/Attribute.php
+ path: app/code/core/Mage/Eav/Model/Attribute.php
-
message: "#^Call to function is_null\\(\\) with Mage_Core_Model_Website will always evaluate to false\\.$#"
count: 1
- path: ../app/code/core/Mage/Eav/Model/Attribute.php
+ path: app/code/core/Mage/Eav/Model/Attribute.php
-
message: "#^Call to function is_null\\(\\) with string will always evaluate to false\\.$#"
count: 1
- path: ../app/code/core/Mage/Eav/Model/Attribute/Data/Abstract.php
+ path: app/code/core/Mage/Eav/Model/Attribute/Data/Abstract.php
-
message: "#^Method Mage_Eav_Model_Attribute_Data_Abstract\\:\\:setRequestScope\\(\\) should return string but returns \\$this\\(Mage_Eav_Model_Attribute_Data_Abstract\\)\\.$#"
count: 1
- path: ../app/code/core/Mage/Eav/Model/Attribute/Data/Abstract.php
+ path: app/code/core/Mage/Eav/Model/Attribute/Data/Abstract.php
-
message: "#^Negated boolean expression is always false\\.$#"
count: 2
- path: ../app/code/core/Mage/Eav/Model/Attribute/Data/Abstract.php
+ path: app/code/core/Mage/Eav/Model/Attribute/Data/Abstract.php
-
message: "#^Property Mage_Eav_Model_Attribute_Data_Abstract\\:\\:\\$_attribite \\(Mage_Eav_Model_Attribute\\) does not accept Mage_Eav_Model_Entity_Attribute_Abstract\\.$#"
count: 1
- path: ../app/code/core/Mage/Eav/Model/Attribute/Data/Abstract.php
+ path: app/code/core/Mage/Eav/Model/Attribute/Data/Abstract.php
-
message: "#^Property Mage_Eav_Model_Attribute_Data_Abstract\\:\\:\\$_dateFilterFormat \\(string\\) does not accept null\\.$#"
count: 1
- path: ../app/code/core/Mage/Eav/Model/Attribute/Data/Abstract.php
+ path: app/code/core/Mage/Eav/Model/Attribute/Data/Abstract.php
-
message: "#^Call to an undefined method Mage_Eav_Model_Entity_Abstract\\:\\:getEntityTypeCode\\(\\)\\.$#"
count: 1
- path: ../app/code/core/Mage/Eav/Model/Attribute/Data/File.php
+ path: app/code/core/Mage/Eav/Model/Attribute/Data/File.php
-
message: "#^Call to an undefined method Mage_Core_Model_Resource_Abstract\\:\\:getDefaultAttributes\\(\\)\\.$#"
count: 1
- path: ../app/code/core/Mage/Eav/Model/Config.php
+ path: app/code/core/Mage/Eav/Model/Config.php
-
message: "#^Cannot call method loadByCode\\(\\) on Mage_Core_Model_Abstract\\|false\\.$#"
count: 1
- path: ../app/code/core/Mage/Eav/Model/Config.php
+ path: app/code/core/Mage/Eav/Model/Config.php
-
message: "#^Left side of && is always true\\.$#"
count: 1
- path: ../app/code/core/Mage/Eav/Model/Config.php
+ path: app/code/core/Mage/Eav/Model/Config.php
-
message: "#^Method Mage_Eav_Model_Config\\:\\:getAttribute\\(\\) should return Mage_Eav_Model_Entity_Attribute_Abstract\\|false but returns Mage_Eav_Model_Entity_Attribute_Interface\\.$#"
count: 1
- path: ../app/code/core/Mage/Eav/Model/Config.php
+ path: app/code/core/Mage/Eav/Model/Config.php
-
message: "#^Negated boolean expression is always true\\.$#"
count: 1
- path: ../app/code/core/Mage/Eav/Model/Config.php
+ path: app/code/core/Mage/Eav/Model/Config.php
-
message: "#^Parameter \\#1 \\$entityType of method Mage_Eav_Model_Config\\:\\:_createAttribute\\(\\) expects string, Mage_Eav_Model_Entity_Type given\\.$#"
count: 4
- path: ../app/code/core/Mage/Eav/Model/Config.php
+ path: app/code/core/Mage/Eav/Model/Config.php
-
message: "#^Parameter \\#1 \\$entityType of method Mage_Eav_Model_Config\\:\\:_initAttributes\\(\\) expects string, Mage_Eav_Model_Entity_Type given\\.$#"
count: 1
- path: ../app/code/core/Mage/Eav/Model/Config.php
+ path: app/code/core/Mage/Eav/Model/Config.php
-
message: "#^Parameter \\#1 \\$id of method Mage_Eav_Model_Config\\:\\:_getAttributeReference\\(\\) expects int, string given\\.$#"
count: 1
- path: ../app/code/core/Mage/Eav/Model/Config.php
+ path: app/code/core/Mage/Eav/Model/Config.php
-
message: "#^Property Mage_Eav_Model_Config\\:\\:\\$_attributeData \\(array\\) does not accept null\\.$#"
count: 1
- path: ../app/code/core/Mage/Eav/Model/Config.php
+ path: app/code/core/Mage/Eav/Model/Config.php
-
message: "#^Property Mage_Eav_Model_Config\\:\\:\\$_entityData \\(array\\) does not accept null\\.$#"
count: 1
- path: ../app/code/core/Mage/Eav/Model/Config.php
+ path: app/code/core/Mage/Eav/Model/Config.php
-
message: "#^Property Mage_Eav_Model_Config\\:\\:\\$_objects \\(array\\) does not accept null\\.$#"
count: 1
- path: ../app/code/core/Mage/Eav/Model/Config.php
+ path: app/code/core/Mage/Eav/Model/Config.php
-
message: "#^Property Mage_Eav_Model_Config\\:\\:\\$_references \\(array\\) does not accept null\\.$#"
count: 1
- path: ../app/code/core/Mage/Eav/Model/Config.php
+ path: app/code/core/Mage/Eav/Model/Config.php
-
message: "#^Unreachable statement \\- code above always terminates\\.$#"
count: 1
- path: ../app/code/core/Mage/Eav/Model/Config.php
+ path: app/code/core/Mage/Eav/Model/Config.php
-
message: "#^Call to function is_null\\(\\) with Mage_Core_Model_Store will always evaluate to false\\.$#"
count: 1
- path: ../app/code/core/Mage/Eav/Model/Convert/Adapter/Entity.php
+ path: app/code/core/Mage/Eav/Model/Convert/Adapter/Entity.php
-
message: "#^Method Mage_Eav_Model_Convert_Adapter_Entity\\:\\:_getCollectionForLoad\\(\\) should return Mage_Eav_Model_Entity_Collection but returns Mage_Core_Model_Resource_Db_Collection_Abstract\\|false\\.$#"
count: 1
- path: ../app/code/core/Mage/Eav/Model/Convert/Adapter/Entity.php
+ path: app/code/core/Mage/Eav/Model/Convert/Adapter/Entity.php
-
message: "#^Parameter \\#1 \\$joinAttr of method Mage_Eav_Model_Convert_Adapter_Entity\\:\\:setJoinAttr\\(\\) expects string, array\\ given\\.$#"
count: 1
- path: ../app/code/core/Mage/Eav/Model/Convert/Adapter/Entity.php
+ path: app/code/core/Mage/Eav/Model/Convert/Adapter/Entity.php
-
message: "#^Variable \\$defBind might not be defined\\.$#"
count: 1
- path: ../app/code/core/Mage/Eav/Model/Convert/Adapter/Entity.php
+ path: app/code/core/Mage/Eav/Model/Convert/Adapter/Entity.php
-
message: "#^Variable \\$entityIds might not be defined\\.$#"
count: 1
- path: ../app/code/core/Mage/Eav/Model/Convert/Adapter/Entity.php
+ path: app/code/core/Mage/Eav/Model/Convert/Adapter/Entity.php
-
message: "#^Parameter \\#2 \\$string of function explode expects string, array given\\.$#"
count: 1
- path: ../app/code/core/Mage/Eav/Model/Convert/Parser/Abstract.php
+ path: app/code/core/Mage/Eav/Model/Convert/Parser/Abstract.php
-
message: "#^Parameter \\#1 \\$read of method Mage_Eav_Model_Entity_Abstract\\:\\:setConnection\\(\\) expects string\\|Zend_Db_Adapter_Abstract, Varien_Db_Adapter_Interface\\|false given\\.$#"
count: 1
- path: ../app/code/core/Mage/Eav/Model/Entity.php
+ path: app/code/core/Mage/Eav/Model/Entity.php
-
message: "#^Call to function is_string\\(\\) with Varien_Db_Adapter_Pdo_Mysql will always evaluate to false\\.$#"
count: 2
- path: ../app/code/core/Mage/Eav/Model/Entity/Abstract.php
+ path: app/code/core/Mage/Eav/Model/Entity/Abstract.php
-
message: "#^Method Mage_Eav_Model_Entity_Abstract\\:\\:_getReadAdapter\\(\\) should return Magento_Db_Adapter_Pdo_Mysql but returns Varien_Db_Adapter_Pdo_Mysql\\.$#"
count: 1
- path: ../app/code/core/Mage/Eav/Model/Entity/Abstract.php
+ path: app/code/core/Mage/Eav/Model/Entity/Abstract.php
-
message: "#^Method Mage_Eav_Model_Entity_Abstract\\:\\:_getWriteAdapter\\(\\) should return Magento_Db_Adapter_Pdo_Mysql but returns Varien_Db_Adapter_Pdo_Mysql\\.$#"
count: 1
- path: ../app/code/core/Mage/Eav/Model/Entity/Abstract.php
+ path: app/code/core/Mage/Eav/Model/Entity/Abstract.php
-
message: "#^Parameter \\#1 \\$object of method Mage_Eav_Model_Entity_Abstract\\:\\:_saveAttribute\\(\\) expects Mage_Core_Model_Abstract, Varien_Object given\\.$#"
count: 2
- path: ../app/code/core/Mage/Eav/Model/Entity/Abstract.php
+ path: app/code/core/Mage/Eav/Model/Entity/Abstract.php
-
message: "#^Parameter \\#1 \\$object of method Mage_Eav_Model_Entity_Abstract\\:\\:load\\(\\) expects Mage_Core_Model_Abstract, Varien_Object given\\.$#"
count: 1
- path: ../app/code/core/Mage/Eav/Model/Entity/Abstract.php
+ path: app/code/core/Mage/Eav/Model/Entity/Abstract.php
-
message: "#^Parameter \\#1 \\$select of method Mage_Eav_Model_Entity_Abstract\\:\\:_addLoadAttributesSelectFields\\(\\) expects Varien_Db_Select, Zend_Db_Select given\\.$#"
count: 1
- path: ../app/code/core/Mage/Eav/Model/Entity/Abstract.php
+ path: app/code/core/Mage/Eav/Model/Entity/Abstract.php
-
message: "#^Parameter \\#2 \\$arguments of static method Mage\\:\\:getModel\\(\\) expects array\\|object, string given\\.$#"
count: 1
- path: ../app/code/core/Mage/Eav/Model/Entity/Abstract.php
+ path: app/code/core/Mage/Eav/Model/Entity/Abstract.php
-
message: "#^Property Mage_Eav_Model_Entity_Abstract\\:\\:\\$_read \\(Varien_Db_Adapter_Pdo_Mysql\\) does not accept Varien_Db_Adapter_Interface\\|false\\.$#"
count: 1
- path: ../app/code/core/Mage/Eav/Model/Entity/Abstract.php
+ path: app/code/core/Mage/Eav/Model/Entity/Abstract.php
-
message: "#^Property Mage_Eav_Model_Entity_Abstract\\:\\:\\$_read \\(Varien_Db_Adapter_Pdo_Mysql\\) does not accept string\\|Zend_Db_Adapter_Abstract\\.$#"
count: 1
- path: ../app/code/core/Mage/Eav/Model/Entity/Abstract.php
+ path: app/code/core/Mage/Eav/Model/Entity/Abstract.php
-
message: "#^Property Mage_Eav_Model_Entity_Abstract\\:\\:\\$_type \\(Mage_Eav_Model_Entity_Type\\) in empty\\(\\) is not falsy\\.$#"
count: 1
- path: ../app/code/core/Mage/Eav/Model/Entity/Abstract.php
+ path: app/code/core/Mage/Eav/Model/Entity/Abstract.php
-
message: "#^Property Mage_Eav_Model_Entity_Abstract\\:\\:\\$_write \\(Varien_Db_Adapter_Pdo_Mysql\\) does not accept Varien_Db_Adapter_Interface\\|false\\.$#"
count: 1
- path: ../app/code/core/Mage/Eav/Model/Entity/Abstract.php
+ path: app/code/core/Mage/Eav/Model/Entity/Abstract.php
-
message: "#^Property Mage_Eav_Model_Entity_Abstract\\:\\:\\$_write \\(Varien_Db_Adapter_Pdo_Mysql\\) does not accept string\\|Zend_Db_Adapter_Abstract\\.$#"
count: 1
- path: ../app/code/core/Mage/Eav/Model/Entity/Abstract.php
+ path: app/code/core/Mage/Eav/Model/Entity/Abstract.php
-
message: "#^Result of && is always false\\.$#"
count: 1
- path: ../app/code/core/Mage/Eav/Model/Entity/Abstract.php
+ path: app/code/core/Mage/Eav/Model/Entity/Abstract.php
-
message: "#^Strict comparison using \\=\\=\\= between string and false will always evaluate to false\\.$#"
count: 1
- path: ../app/code/core/Mage/Eav/Model/Entity/Abstract.php
+ path: app/code/core/Mage/Eav/Model/Entity/Abstract.php
-
message: "#^Variable \\$attributeCode might not be defined\\.$#"
count: 1
- path: ../app/code/core/Mage/Eav/Model/Entity/Abstract.php
+ path: app/code/core/Mage/Eav/Model/Entity/Abstract.php
-
message: "#^Variable \\$id might not be defined\\.$#"
count: 1
- path: ../app/code/core/Mage/Eav/Model/Entity/Abstract.php
+ path: app/code/core/Mage/Eav/Model/Entity/Abstract.php
-
message: "#^Variable \\$instance might not be defined\\.$#"
count: 2
- path: ../app/code/core/Mage/Eav/Model/Entity/Abstract.php
+ path: app/code/core/Mage/Eav/Model/Entity/Abstract.php
-
message: "#^Variable \\$method might not be defined\\.$#"
count: 2
- path: ../app/code/core/Mage/Eav/Model/Entity/Abstract.php
+ path: app/code/core/Mage/Eav/Model/Entity/Abstract.php
-
message: "#^Variable \\$part might not be defined\\.$#"
count: 2
- path: ../app/code/core/Mage/Eav/Model/Entity/Abstract.php
+ path: app/code/core/Mage/Eav/Model/Entity/Abstract.php
-
message: "#^Call to an undefined method Mage_Core_Model_Resource_Db_Abstract\\:\\:getIdByCode\\(\\)\\.$#"
count: 1
- path: ../app/code/core/Mage/Eav/Model/Entity/Attribute/Abstract.php
+ path: app/code/core/Mage/Eav/Model/Entity/Attribute/Abstract.php
-
message: "#^Method Mage_Eav_Model_Entity_Attribute_Abstract\\:\\:getFlatUpdateSelect\\(\\) should return \\$this\\(Mage_Eav_Model_Entity_Attribute_Abstract\\)\\|Varien_Db_Select but returns null\\.$#"
count: 1
- path: ../app/code/core/Mage/Eav/Model/Entity/Attribute/Abstract.php
+ path: app/code/core/Mage/Eav/Model/Entity/Attribute/Abstract.php
-
message: "#^Negated boolean expression is always false\\.$#"
count: 1
- path: ../app/code/core/Mage/Eav/Model/Entity/Attribute/Abstract.php
+ path: app/code/core/Mage/Eav/Model/Entity/Attribute/Abstract.php
-
message: "#^Property Mage_Eav_Model_Entity_Attribute_Abstract\\:\\:\\$_backend \\(Mage_Eav_Model_Entity_Attribute_Backend_Abstract\\) in empty\\(\\) is not falsy\\.$#"
count: 1
- path: ../app/code/core/Mage/Eav/Model/Entity/Attribute/Abstract.php
+ path: app/code/core/Mage/Eav/Model/Entity/Attribute/Abstract.php
-
message: "#^Property Mage_Eav_Model_Entity_Attribute_Abstract\\:\\:\\$_entity \\(Mage_Eav_Model_Entity_Abstract\\) does not accept Mage_Eav_Model_Entity_Type\\.$#"
count: 1
- path: ../app/code/core/Mage/Eav/Model/Entity/Attribute/Abstract.php
+ path: app/code/core/Mage/Eav/Model/Entity/Attribute/Abstract.php
-
message: "#^Property Mage_Eav_Model_Entity_Attribute_Abstract\\:\\:\\$_frontend \\(Mage_Eav_Model_Entity_Attribute_Frontend_Abstract\\) in empty\\(\\) is not falsy\\.$#"
count: 1
- path: ../app/code/core/Mage/Eav/Model/Entity/Attribute/Abstract.php
+ path: app/code/core/Mage/Eav/Model/Entity/Attribute/Abstract.php
-
message: "#^Property Mage_Eav_Model_Entity_Attribute_Abstract\\:\\:\\$_source \\(Mage_Eav_Model_Entity_Attribute_Source_Abstract\\) in empty\\(\\) is not falsy\\.$#"
count: 1
- path: ../app/code/core/Mage/Eav/Model/Entity/Attribute/Abstract.php
+ path: app/code/core/Mage/Eav/Model/Entity/Attribute/Abstract.php
-
message: "#^Return type \\(\\$this\\(Mage_Eav_Model_Entity_Attribute_Backend_Abstract\\)\\) of method Mage_Eav_Model_Entity_Attribute_Backend_Abstract\\:\\:setValueId\\(\\) should be compatible with return type \\(int\\) of method Mage_Eav_Model_Entity_Attribute_Backend_Interface\\:\\:setValueId\\(\\)$#"
count: 1
- path: ../app/code/core/Mage/Eav/Model/Entity/Attribute/Backend/Abstract.php
+ path: app/code/core/Mage/Eav/Model/Entity/Attribute/Backend/Abstract.php
-
message: "#^If condition is always true\\.$#"
count: 1
- path: ../app/code/core/Mage/Eav/Model/Entity/Attribute/Frontend/Abstract.php
+ path: app/code/core/Mage/Eav/Model/Entity/Attribute/Frontend/Abstract.php
-
message: "#^Unreachable statement \\- code above always terminates\\.$#"
count: 1
- path: ../app/code/core/Mage/Eav/Model/Entity/Attribute/Frontend/Abstract.php
+ path: app/code/core/Mage/Eav/Model/Entity/Attribute/Frontend/Abstract.php
-
message: "#^Variable \\$out in empty\\(\\) always exists and is not falsy\\.$#"
count: 1
- path: ../app/code/core/Mage/Eav/Model/Entity/Attribute/Frontend/Abstract.php
+ path: app/code/core/Mage/Eav/Model/Entity/Attribute/Frontend/Abstract.php
-
message: "#^Call to an undefined method Mage_Eav_Model_Resource_Entity_Attribute_Group\\:\\:deleteGroups\\(\\)\\.$#"
count: 1
- path: ../app/code/core/Mage/Eav/Model/Entity/Attribute/Group.php
+ path: app/code/core/Mage/Eav/Model/Entity/Attribute/Group.php
-
message: "#^Call to function is_null\\(\\) with array will always evaluate to false\\.$#"
count: 1
- path: ../app/code/core/Mage/Eav/Model/Entity/Attribute/Source/Boolean.php
+ path: app/code/core/Mage/Eav/Model/Entity/Attribute/Source/Boolean.php
-
message: "#^Call to an undefined method Mage_Eav_Model_Entity_Collection_Abstract\\:\\:getStoreId\\(\\)\\.$#"
count: 1
- path: ../app/code/core/Mage/Eav/Model/Entity/Attribute/Source/Table.php
+ path: app/code/core/Mage/Eav/Model/Entity/Attribute/Source/Table.php
-
message: "#^Parameter \\#2 \\$attribute of method Mage_Eav_Model_Resource_Entity_Attribute_Option\\:\\:addOptionValueToCollection\\(\\) expects Mage_Eav_Model_Entity_Attribute, Mage_Eav_Model_Entity_Attribute_Abstract given\\.$#"
count: 1
- path: ../app/code/core/Mage/Eav/Model/Entity/Attribute/Source/Table.php
+ path: app/code/core/Mage/Eav/Model/Entity/Attribute/Source/Table.php
-
message: "#^Parameter \\#1 \\$resource of method Mage_Eav_Model_Entity_Collection_Abstract\\:\\:__construct\\(\\) expects Mage_Core_Model_Resource_Abstract\\|null, Varien_Db_Adapter_Interface\\|false given\\.$#"
count: 1
- path: ../app/code/core/Mage/Eav/Model/Entity/Collection.php
+ path: app/code/core/Mage/Eav/Model/Entity/Collection.php
-
message: "#^Call to an undefined method Mage_Eav_Model_Entity_Attribute_Interface\\:\\:getAttributeCode\\(\\)\\.$#"
count: 1
- path: ../app/code/core/Mage/Eav/Model/Entity/Collection/Abstract.php
+ path: app/code/core/Mage/Eav/Model/Entity/Collection/Abstract.php
-
message: "#^Constructor of class Mage_Eav_Model_Entity_Collection_Abstract has an unused parameter \\$resource\\.$#"
count: 1
- path: ../app/code/core/Mage/Eav/Model/Entity/Collection/Abstract.php
+ path: app/code/core/Mage/Eav/Model/Entity/Collection/Abstract.php
-
message: "#^Negated boolean expression is always false\\.$#"
count: 2
- path: ../app/code/core/Mage/Eav/Model/Entity/Collection/Abstract.php
+ path: app/code/core/Mage/Eav/Model/Entity/Collection/Abstract.php
-
message: "#^Parameter \\#1 \\$className of method Varien_Data_Collection\\:\\:setItemObjectClass\\(\\) expects string, null given\\.$#"
count: 1
- path: ../app/code/core/Mage/Eav/Model/Entity/Collection/Abstract.php
+ path: app/code/core/Mage/Eav/Model/Entity/Collection/Abstract.php
-
message: "#^Parameter \\#1 \\$select of method Varien_Data_Collection_Db\\:\\:_fetchAll\\(\\) expects Zend_Db_Select, string given\\.$#"
count: 1
- path: ../app/code/core/Mage/Eav/Model/Entity/Collection/Abstract.php
+ path: app/code/core/Mage/Eav/Model/Entity/Collection/Abstract.php
-
message: "#^Parameter \\#2 \\$alias of method Varien_Db_Adapter_Interface\\:\\:quoteColumnAs\\(\\) expects string, null given\\.$#"
count: 4
- path: ../app/code/core/Mage/Eav/Model/Entity/Collection/Abstract.php
+ path: app/code/core/Mage/Eav/Model/Entity/Collection/Abstract.php
-
message: "#^Parameter \\#2 \\$array of function implode expects array\\, array\\\\|string\\> given\\.$#"
count: 1
- path: ../app/code/core/Mage/Eav/Model/Entity/Collection/Abstract.php
+ path: app/code/core/Mage/Eav/Model/Entity/Collection/Abstract.php
-
message: "#^Parameter \\#2 \\$condition of method Mage_Eav_Model_Entity_Collection_Abstract\\:\\:addAttributeToFilter\\(\\) expects array\\|string\\|null, int\\\\|int\\<1, max\\> given\\.$#"
count: 1
- path: ../app/code/core/Mage/Eav/Model/Entity/Collection/Abstract.php
+ path: app/code/core/Mage/Eav/Model/Entity/Collection/Abstract.php
-
message: "#^Parameter \\#2 \\$return of function print_r expects bool, int given\\.$#"
count: 1
- path: ../app/code/core/Mage/Eav/Model/Entity/Collection/Abstract.php
+ path: app/code/core/Mage/Eav/Model/Entity/Collection/Abstract.php
-
message: "#^Property Mage_Eav_Model_Entity_Collection_Abstract\\:\\:\\$_entity \\(Mage_Eav_Model_Entity_Abstract\\) in empty\\(\\) is not falsy\\.$#"
count: 1
- path: ../app/code/core/Mage/Eav/Model/Entity/Collection/Abstract.php
+ path: app/code/core/Mage/Eav/Model/Entity/Collection/Abstract.php
-
message: "#^Variable \\$attrArr might not be defined\\.$#"
count: 1
- path: ../app/code/core/Mage/Eav/Model/Entity/Collection/Abstract.php
+ path: app/code/core/Mage/Eav/Model/Entity/Collection/Abstract.php
-
message: "#^Variable \\$bindAttribute might not be defined\\.$#"
count: 1
- path: ../app/code/core/Mage/Eav/Model/Entity/Collection/Abstract.php
+ path: app/code/core/Mage/Eav/Model/Entity/Collection/Abstract.php
-
message: "#^Variable \\$entity might not be defined\\.$#"
count: 1
- path: ../app/code/core/Mage/Eav/Model/Entity/Collection/Abstract.php
+ path: app/code/core/Mage/Eav/Model/Entity/Collection/Abstract.php
-
message: "#^Variable \\$query might not be defined\\.$#"
count: 2
- path: ../app/code/core/Mage/Eav/Model/Entity/Collection/Abstract.php
+ path: app/code/core/Mage/Eav/Model/Entity/Collection/Abstract.php
-
message: "#^Variable \\$select might not be defined\\.$#"
count: 2
- path: ../app/code/core/Mage/Eav/Model/Entity/Collection/Abstract.php
+ path: app/code/core/Mage/Eav/Model/Entity/Collection/Abstract.php
-
message: "#^Argument of an invalid type string supplied for foreach, only iterables are supported\\.$#"
count: 1
- path: ../app/code/core/Mage/Eav/Model/Entity/Setup.php
+ path: app/code/core/Mage/Eav/Model/Entity/Setup.php
-
message: "#^Binary operation \"\\+\" between string and 1 results in an error\\.$#"
count: 3
- path: ../app/code/core/Mage/Eav/Model/Entity/Setup.php
+ path: app/code/core/Mage/Eav/Model/Entity/Setup.php
-
message: "#^Binary operation \"\\+\" between string and 10 results in an error\\.$#"
count: 1
- path: ../app/code/core/Mage/Eav/Model/Entity/Setup.php
+ path: app/code/core/Mage/Eav/Model/Entity/Setup.php
-
message: "#^Call to an undefined method Varien_Db_Adapter_Interface\\:\\:lastInsertId\\(\\)\\.$#"
count: 1
- path: ../app/code/core/Mage/Eav/Model/Entity/Setup.php
+ path: app/code/core/Mage/Eav/Model/Entity/Setup.php
-
message: "#^Left side of && is always true\\.$#"
count: 2
- path: ../app/code/core/Mage/Eav/Model/Entity/Setup.php
+ path: app/code/core/Mage/Eav/Model/Entity/Setup.php
-
message: "#^Method Mage_Eav_Model_Entity_Setup\\:\\:getDefaultAttributeGroupId\\(\\) should return int but returns string\\.$#"
count: 1
- path: ../app/code/core/Mage/Eav/Model/Entity/Setup.php
+ path: app/code/core/Mage/Eav/Model/Entity/Setup.php
-
message: "#^Method Mage_Eav_Model_Entity_Setup\\:\\:getDefaultAttributeSetId\\(\\) should return int but returns string\\.$#"
count: 1
- path: ../app/code/core/Mage/Eav/Model/Entity/Setup.php
+ path: app/code/core/Mage/Eav/Model/Entity/Setup.php
-
message: "#^Parameter \\#1 \\$code of method Mage_Eav_Model_Entity_Setup\\:\\:updateEntityType\\(\\) expects string, int given\\.$#"
count: 1
- path: ../app/code/core/Mage/Eav/Model/Entity/Setup.php
+ path: app/code/core/Mage/Eav/Model/Entity/Setup.php
-
message: "#^Parameter \\#1 \\$priTableName of method Mage_Core_Model_Resource_Setup\\:\\:getFkName\\(\\) expects string, array\\ given\\.$#"
count: 3
- path: ../app/code/core/Mage/Eav/Model/Entity/Setup.php
+ path: app/code/core/Mage/Eav/Model/Entity/Setup.php
-
message: "#^Parameter \\#1 \\$tableName of method Mage_Core_Model_Resource_Setup\\:\\:getIdxName\\(\\) expects string, array\\ given\\.$#"
count: 6
- path: ../app/code/core/Mage/Eav/Model/Entity/Setup.php
+ path: app/code/core/Mage/Eav/Model/Entity/Setup.php
-
message: "#^Parameter \\#2 \\$field of method Mage_Eav_Model_Entity_Setup\\:\\:updateEntityType\\(\\) expects string, array\\ given\\.$#"
count: 1
- path: ../app/code/core/Mage/Eav/Model/Entity/Setup.php
+ path: app/code/core/Mage/Eav/Model/Entity/Setup.php
-
message: "#^Parameter \\#3 \\$default of method Mage_Eav_Model_Entity_Setup\\:\\:_getValue\\(\\) expects string\\|null, array given\\.$#"
count: 1
- path: ../app/code/core/Mage/Eav/Model/Entity/Setup.php
+ path: app/code/core/Mage/Eav/Model/Entity/Setup.php
-
message: "#^Parameter \\#3 \\$default of method Mage_Eav_Model_Entity_Setup\\:\\:_getValue\\(\\) expects string\\|null, false given\\.$#"
count: 2
- path: ../app/code/core/Mage/Eav/Model/Entity/Setup.php
+ path: app/code/core/Mage/Eav/Model/Entity/Setup.php
-
message: "#^Parameter \\#3 \\$default of method Mage_Eav_Model_Entity_Setup\\:\\:_getValue\\(\\) expects string\\|null, int given\\.$#"
count: 7
- path: ../app/code/core/Mage/Eav/Model/Entity/Setup.php
+ path: app/code/core/Mage/Eav/Model/Entity/Setup.php
-
message: "#^Parameter \\#3 \\$field of method Mage_Eav_Model_Entity_Setup\\:\\:updateAttribute\\(\\) expects string, array given\\.$#"
count: 1
- path: ../app/code/core/Mage/Eav/Model/Entity/Setup.php
+ path: app/code/core/Mage/Eav/Model/Entity/Setup.php
-
message: "#^Parameter \\#3 \\$value of method Mage_Eav_Model_Entity_Setup\\:\\:updateEntityType\\(\\) expects string\\|null, int given\\.$#"
count: 1
- path: ../app/code/core/Mage/Eav/Model/Entity/Setup.php
+ path: app/code/core/Mage/Eav/Model/Entity/Setup.php
-
message: "#^Variable \\$connection might not be defined\\.$#"
count: 2
- path: ../app/code/core/Mage/Eav/Model/Entity/Setup.php
+ path: app/code/core/Mage/Eav/Model/Entity/Setup.php
-
message: "#^Property Mage_Eav_Model_Entity_Type\\:\\:\\$_sets \\(Mage_Eav_Model_Resource_Entity_Attribute_Set_Collection\\) in empty\\(\\) is not falsy\\.$#"
count: 1
- path: ../app/code/core/Mage/Eav/Model/Entity/Type.php
+ path: app/code/core/Mage/Eav/Model/Entity/Type.php
-
message: "#^Call to function is_null\\(\\) with Mage_Core_Model_Abstract will always evaluate to false\\.$#"
count: 1
- path: ../app/code/core/Mage/Eav/Model/Form.php
+ path: app/code/core/Mage/Eav/Model/Form.php
-
message: "#^Call to function is_null\\(\\) with Mage_Core_Model_Store will always evaluate to false\\.$#"
count: 1
- path: ../app/code/core/Mage/Eav/Model/Form.php
+ path: app/code/core/Mage/Eav/Model/Form.php
-
message: "#^Call to function is_null\\(\\) with Mage_Eav_Model_Entity_Type will always evaluate to false\\.$#"
count: 1
- path: ../app/code/core/Mage/Eav/Model/Form.php
+ path: app/code/core/Mage/Eav/Model/Form.php
-
message: "#^Call to function is_null\\(\\) with array will always evaluate to false\\.$#"
count: 3
- path: ../app/code/core/Mage/Eav/Model/Form.php
+ path: app/code/core/Mage/Eav/Model/Form.php
-
message: "#^Parameter \\#1 \\$attribute of static method Mage_Eav_Model_Attribute_Data\\:\\:factory\\(\\) expects Mage_Eav_Model_Attribute, Mage_Eav_Model_Entity_Attribute given\\.$#"
count: 1
- path: ../app/code/core/Mage/Eav/Model/Form.php
+ path: app/code/core/Mage/Eav/Model/Form.php
-
message: "#^Parameter \\#2 \\.\\.\\.\\$arrays of function array_merge expects array, false given\\.$#"
count: 1
- path: ../app/code/core/Mage/Eav/Model/Form.php
+ path: app/code/core/Mage/Eav/Model/Form.php
-
message: "#^Ternary operator condition is always true\\.$#"
count: 1
- path: ../app/code/core/Mage/Eav/Model/Resource/Attribute/Collection.php
+ path: app/code/core/Mage/Eav/Model/Resource/Attribute/Collection.php
-
message: "#^Negated boolean expression is always false\\.$#"
count: 1
- path: ../app/code/core/Mage/Eav/Model/Resource/Config.php
+ path: app/code/core/Mage/Eav/Model/Resource/Config.php
-
message: "#^Method Mage_Eav_Model_Resource_Entity_Attribute\\:\\:_getMaxSortOrder\\(\\) should return int but returns string\\.$#"
count: 1
- path: ../app/code/core/Mage/Eav/Model/Resource/Entity/Attribute.php
+ path: app/code/core/Mage/Eav/Model/Resource/Entity/Attribute.php
-
message: "#^Method Mage_Eav_Model_Resource_Entity_Attribute\\:\\:getIdByCode\\(\\) should return int but returns string\\.$#"
count: 1
- path: ../app/code/core/Mage/Eav/Model/Resource/Entity/Attribute.php
+ path: app/code/core/Mage/Eav/Model/Resource/Entity/Attribute.php
-
message: "#^Method Mage_Eav_Model_Resource_Entity_Attribute_Group\\:\\:_getMaxSortOrder\\(\\) should return int but returns string\\.$#"
count: 1
- path: ../app/code/core/Mage/Eav/Model/Resource/Entity/Attribute/Group.php
+ path: app/code/core/Mage/Eav/Model/Resource/Entity/Attribute/Group.php
-
message: "#^Call to an undefined method Mage_Eav_Model_Entity_Collection_Abstract\\:\\:getStoreId\\(\\)\\.$#"
count: 1
- path: ../app/code/core/Mage/Eav/Model/Resource/Entity/Attribute/Option.php
+ path: app/code/core/Mage/Eav/Model/Resource/Entity/Attribute/Option.php
-
message: "#^Method Mage_Eav_Model_Resource_Entity_Attribute_Set\\:\\:getDefaultGroupId\\(\\) should return int\\|null but returns string\\.$#"
count: 1
- path: ../app/code/core/Mage/Eav/Model/Resource/Entity/Attribute/Set.php
+ path: app/code/core/Mage/Eav/Model/Resource/Entity/Attribute/Set.php
-
message: "#^Variable \\$store might not be defined\\.$#"
count: 2
- path: ../app/code/core/Mage/Eav/Model/Resource/Form/Attribute/Collection.php
+ path: app/code/core/Mage/Eav/Model/Resource/Form/Attribute/Collection.php
-
message: "#^Call to function is_null\\(\\) with int will always evaluate to false\\.$#"
count: 1
- path: ../app/code/core/Mage/Eav/Model/Resource/Form/Fieldset/Collection.php
+ path: app/code/core/Mage/Eav/Model/Resource/Form/Fieldset/Collection.php
-
message: "#^PHPDoc tag @param for parameter \\$object with type Mage_Eav_Model_Resource_Form_Type is incompatible with native type Mage_Core_Model_Abstract\\.$#"
count: 2
- path: ../app/code/core/Mage/Eav/Model/Resource/Form/Type.php
+ path: app/code/core/Mage/Eav/Model/Resource/Form/Type.php
-
message: "#^Parameter \\#1 \\$object of method Mage_Eav_Model_Resource_Form_Type\\:\\:getEntityTypes\\(\\) expects Mage_Eav_Model_Form_Type, Mage_Core_Model_Abstract given\\.$#"
count: 1
- path: ../app/code/core/Mage/Eav/Model/Resource/Form/Type.php
+ path: app/code/core/Mage/Eav/Model/Resource/Form/Type.php
-
message: "#^Negated boolean expression is always false\\.$#"
count: 1
- path: ../app/code/core/Mage/GiftMessage/Block/Adminhtml/Sales/Order/Create/Items.php
+ path: app/code/core/Mage/GiftMessage/Block/Adminhtml/Sales/Order/Create/Items.php
-
message: "#^If condition is always true\\.$#"
count: 2
- path: ../app/code/core/Mage/GiftMessage/Block/Adminhtml/Sales/Order/View/Items.php
+ path: app/code/core/Mage/GiftMessage/Block/Adminhtml/Sales/Order/View/Items.php
-
message: "#^Negated boolean expression is always false\\.$#"
count: 2
- path: ../app/code/core/Mage/GiftMessage/Block/Adminhtml/Sales/Order/View/Items.php
+ path: app/code/core/Mage/GiftMessage/Block/Adminhtml/Sales/Order/View/Items.php
-
message: "#^Unreachable statement \\- code above always terminates\\.$#"
count: 1
- path: ../app/code/core/Mage/GiftMessage/Block/Adminhtml/Sales/Order/View/Items.php
+ path: app/code/core/Mage/GiftMessage/Block/Adminhtml/Sales/Order/View/Items.php
-
message: "#^Call to function is_null\\(\\) with Mage_GiftMessage_Model_Message will always evaluate to false\\.$#"
count: 1
- path: ../app/code/core/Mage/GiftMessage/Block/Message/Form.php
+ path: app/code/core/Mage/GiftMessage/Block/Message/Form.php
-
message: "#^If condition is always true\\.$#"
count: 1
- path: ../app/code/core/Mage/GiftMessage/Helper/Message.php
+ path: app/code/core/Mage/GiftMessage/Helper/Message.php
-
message: "#^Unreachable statement \\- code above always terminates\\.$#"
count: 1
- path: ../app/code/core/Mage/GiftMessage/Helper/Message.php
+ path: app/code/core/Mage/GiftMessage/Helper/Message.php
-
message: "#^Call to function is_null\\(\\) with int\\|string will always evaluate to false\\.$#"
count: 1
- path: ../app/code/core/Mage/GiftMessage/Model/Api.php
+ path: app/code/core/Mage/GiftMessage/Model/Api.php
-
message: "#^Method Mage_GiftMessage_Model_Api_V2\\:\\:_prepareData\\(\\) should return array but returns mixed\\.$#"
count: 1
- path: ../app/code/core/Mage/GiftMessage/Model/Api/V2.php
+ path: app/code/core/Mage/GiftMessage/Model/Api/V2.php
-
message: "#^Return type \\(stdClass\\) of method Mage_GiftMessage_Model_Api_V2\\:\\:_setGiftMessage\\(\\) should be compatible with return type \\(array\\) of method Mage_GiftMessage_Model_Api\\:\\:_setGiftMessage\\(\\)$#"
count: 1
- path: ../app/code/core/Mage/GiftMessage/Model/Api/V2.php
+ path: app/code/core/Mage/GiftMessage/Model/Api/V2.php
-
message: "#^Method Mage_GiftMessage_Model_Message\\:\\:getEntityModelByType\\(\\) should return Mage_Eav_Model_Entity_Abstract but returns Mage_Core_Model_Abstract\\|false\\.$#"
count: 1
- path: ../app/code/core/Mage/GiftMessage/Model/Message.php
+ path: app/code/core/Mage/GiftMessage/Model/Message.php
-
message: "#^Left side of && is always true\\.$#"
count: 1
- path: ../app/code/core/Mage/GiftMessage/Model/Observer.php
+ path: app/code/core/Mage/GiftMessage/Model/Observer.php
-
message: "#^Call to an undefined method Mage_Eav_Model_Entity_Abstract\\:\\:setGiftMessageId\\(\\)\\.$#"
count: 1
- path: ../app/code/core/Mage/GiftMessage/controllers/IndexController.php
+ path: app/code/core/Mage/GiftMessage/controllers/IndexController.php
-
message: "#^Call to an undefined method Mage_GiftMessage_IndexController\\:\\:_getMappedType\\(\\)\\.$#"
count: 1
- path: ../app/code/core/Mage/GiftMessage/controllers/IndexController.php
+ path: app/code/core/Mage/GiftMessage/controllers/IndexController.php
-
message: "#^Method Mage_Eav_Model_Entity_Abstract\\:\\:load\\(\\) invoked with 1 parameter, 2\\-3 required\\.$#"
count: 1
- path: ../app/code/core/Mage/GiftMessage/controllers/IndexController.php
+ path: app/code/core/Mage/GiftMessage/controllers/IndexController.php
-
message: "#^Method Mage_GoogleAnalytics_Block_Ga\\:\\:_getOrdersTrackingCodeAnalytics\\(\\) should return string but empty return statement found\\.$#"
count: 1
- path: ../app/code/core/Mage/GoogleAnalytics/Block/Ga.php
+ path: app/code/core/Mage/GoogleAnalytics/Block/Ga.php
-
message: "#^Method Mage_GoogleAnalytics_Block_Ga\\:\\:_getOrdersTrackingCodeUniversal\\(\\) should return string but empty return statement found\\.$#"
count: 1
- path: ../app/code/core/Mage/GoogleAnalytics/Block/Ga.php
+ path: app/code/core/Mage/GoogleAnalytics/Block/Ga.php
-
message: "#^Method Mage_GoogleAnalytics_Helper_Data\\:\\:isUseUniversalAnalytics\\(\\) should return string but returns bool\\.$#"
count: 1
- path: ../app/code/core/Mage/GoogleAnalytics/Helper/Data.php
+ path: app/code/core/Mage/GoogleAnalytics/Helper/Data.php
-
message: "#^Return type \\(void\\) of method Mage_GoogleCheckout_Model_Payment\\:\\:authorize\\(\\) should be compatible with return type \\(\\$this\\(Mage_Payment_Model_Method_Abstract\\)\\) of method Mage_Payment_Model_Method_Abstract\\:\\:authorize\\(\\)$#"
count: 1
- path: ../app/code/core/Mage/GoogleCheckout/Model/Payment.php
+ path: app/code/core/Mage/GoogleCheckout/Model/Payment.php
-
message: "#^Return type \\(void\\) of method Mage_GoogleCheckout_Model_Payment\\:\\:cancel\\(\\) should be compatible with return type \\(\\$this\\(Mage_Payment_Model_Method_Abstract\\)\\) of method Mage_Payment_Model_Method_Abstract\\:\\:cancel\\(\\)$#"
count: 1
- path: ../app/code/core/Mage/GoogleCheckout/Model/Payment.php
+ path: app/code/core/Mage/GoogleCheckout/Model/Payment.php
-
message: "#^Return type \\(void\\) of method Mage_GoogleCheckout_Model_Payment\\:\\:capture\\(\\) should be compatible with return type \\(\\$this\\(Mage_Payment_Model_Method_Abstract\\)\\) of method Mage_Payment_Model_Method_Abstract\\:\\:capture\\(\\)$#"
count: 1
- path: ../app/code/core/Mage/GoogleCheckout/Model/Payment.php
+ path: app/code/core/Mage/GoogleCheckout/Model/Payment.php
-
message: "#^Return type \\(void\\) of method Mage_GoogleCheckout_Model_Payment\\:\\:refund\\(\\) should be compatible with return type \\(\\$this\\(Mage_Payment_Model_Method_Abstract\\)\\) of method Mage_Payment_Model_Method_Abstract\\:\\:refund\\(\\)$#"
count: 1
- path: ../app/code/core/Mage/GoogleCheckout/Model/Payment.php
+ path: app/code/core/Mage/GoogleCheckout/Model/Payment.php
-
message: "#^Return type \\(void\\) of method Mage_GoogleCheckout_Model_Payment\\:\\:void\\(\\) should be compatible with return type \\(\\$this\\(Mage_Payment_Model_Method_Abstract\\)\\) of method Mage_Payment_Model_Method_Abstract\\:\\:void\\(\\)$#"
count: 1
- path: ../app/code/core/Mage/GoogleCheckout/Model/Payment.php
+ path: app/code/core/Mage/GoogleCheckout/Model/Payment.php
-
message: "#^Method Mage_Eav_Model_Entity_Attribute_Source_Interface\\:\\:getAllOptions\\(\\) invoked with 1 parameter, 0 required\\.$#"
count: 4
- path: ../app/code/core/Mage/ImportExport/Block/Adminhtml/Export/Filter.php
+ path: app/code/core/Mage/ImportExport/Block/Adminhtml/Export/Filter.php
-
message: "#^Parameter \\#1 \\$limit of method Mage_Adminhtml_Block_Widget_Grid\\:\\:setDefaultLimit\\(\\) expects int, null given\\.$#"
count: 1
- path: ../app/code/core/Mage/ImportExport/Block/Adminhtml/Export/Filter.php
+ path: app/code/core/Mage/ImportExport/Block/Adminhtml/Export/Filter.php
-
message: "#^Return type \\(false\\) of method Mage_ImportExport_Block_Adminhtml_Export_Filter\\:\\:getRowUrl\\(\\) should be compatible with return type \\(string\\) of method Mage_Adminhtml_Block_Widget_Grid\\:\\:getRowUrl\\(\\)$#"
count: 1
- path: ../app/code/core/Mage/ImportExport/Block/Adminhtml/Export/Filter.php
+ path: app/code/core/Mage/ImportExport/Block/Adminhtml/Export/Filter.php
-
message: "#^Method Mage_ImportExport_Helper_Data\\:\\:getMaxUploadSize\\(\\) should return int but returns string\\|false\\.$#"
count: 1
- path: ../app/code/core/Mage/ImportExport/Helper/Data.php
+ path: app/code/core/Mage/ImportExport/Helper/Data.php
-
message: "#^Negated boolean expression is always false\\.$#"
count: 1
- path: ../app/code/core/Mage/ImportExport/Model/Abstract.php
+ path: app/code/core/Mage/ImportExport/Model/Abstract.php
-
message: "#^Parameter \\#2 \\$arguments of static method Mage\\:\\:getModel\\(\\) expects array\\|object, string given\\.$#"
count: 1
- path: ../app/code/core/Mage/ImportExport/Model/Abstract.php
+ path: app/code/core/Mage/ImportExport/Model/Abstract.php
-
message: "#^If condition is always true\\.$#"
count: 1
- path: ../app/code/core/Mage/ImportExport/Model/Export.php
+ path: app/code/core/Mage/ImportExport/Model/Export.php
-
message: "#^Instanceof between Mage_Core_Model_Abstract\\|false and Mage_ImportExport_Model_Export_Adapter_Abstract will always evaluate to false\\.$#"
count: 1
- path: ../app/code/core/Mage/ImportExport/Model/Export.php
+ path: app/code/core/Mage/ImportExport/Model/Export.php
-
message: "#^Instanceof between Mage_Core_Model_Abstract\\|false and Mage_ImportExport_Model_Export_Entity_Abstract will always evaluate to false\\.$#"
count: 1
- path: ../app/code/core/Mage/ImportExport/Model/Export.php
+ path: app/code/core/Mage/ImportExport/Model/Export.php
-
message: "#^Negated boolean expression is always false\\.$#"
count: 2
- path: ../app/code/core/Mage/ImportExport/Model/Export.php
+ path: app/code/core/Mage/ImportExport/Model/Export.php
-
message: "#^Property Mage_ImportExport_Model_Export\\:\\:\\$_entityAdapter \\(Mage_ImportExport_Model_Export_Entity_Abstract\\) does not accept Mage_Core_Model_Abstract\\|false\\.$#"
count: 1
- path: ../app/code/core/Mage/ImportExport/Model/Export.php
+ path: app/code/core/Mage/ImportExport/Model/Export.php
-
message: "#^Property Mage_ImportExport_Model_Export\\:\\:\\$_writer \\(Mage_ImportExport_Model_Export_Adapter_Abstract\\) does not accept Mage_Core_Model_Abstract\\|false\\.$#"
count: 1
- path: ../app/code/core/Mage/ImportExport/Model/Export.php
+ path: app/code/core/Mage/ImportExport/Model/Export.php
-
message: "#^Unreachable statement \\- code above always terminates\\.$#"
count: 1
- path: ../app/code/core/Mage/ImportExport/Model/Export.php
+ path: app/code/core/Mage/ImportExport/Model/Export.php
-
message: "#^Method Mage_Eav_Model_Entity_Attribute_Source_Interface\\:\\:getAllOptions\\(\\) invoked with 1 parameter, 0 required\\.$#"
count: 1
- path: ../app/code/core/Mage/ImportExport/Model/Export/Entity/Abstract.php
+ path: app/code/core/Mage/ImportExport/Model/Export/Entity/Abstract.php
-
message: "#^Negated boolean expression is always false\\.$#"
count: 1
- path: ../app/code/core/Mage/ImportExport/Model/Export/Entity/Abstract.php
+ path: app/code/core/Mage/ImportExport/Model/Export/Entity/Abstract.php
-
message: "#^Property Mage_ImportExport_Model_Export_Entity_Abstract\\:\\:\\$_connection \\(Varien_Db_Adapter_Pdo_Mysql\\) does not accept Varien_Db_Adapter_Interface\\|false\\.$#"
count: 1
- path: ../app/code/core/Mage/ImportExport/Model/Export/Entity/Abstract.php
+ path: app/code/core/Mage/ImportExport/Model/Export/Entity/Abstract.php
-
message: "#^Property Mage_ImportExport_Model_Export_Entity_Abstract\\:\\:\\$_entityTypeId \\(int\\) does not accept string\\|null\\.$#"
count: 1
- path: ../app/code/core/Mage/ImportExport/Model/Export/Entity/Abstract.php
+ path: app/code/core/Mage/ImportExport/Model/Export/Entity/Abstract.php
-
message: "#^Call to an undefined method Mage_Customer_Model_Entity_Attribute\\:\\:getFrontendInput\\(\\)\\.$#"
count: 1
- path: ../app/code/core/Mage/ImportExport/Model/Export/Entity/Customer.php
+ path: app/code/core/Mage/ImportExport/Model/Export/Entity/Customer.php
-
message: "#^Call to an undefined method Mage_Customer_Model_Entity_Attribute\\:\\:getSource\\(\\)\\.$#"
count: 1
- path: ../app/code/core/Mage/ImportExport/Model/Export/Entity/Customer.php
+ path: app/code/core/Mage/ImportExport/Model/Export/Entity/Customer.php
-
message: "#^Method Mage_Eav_Model_Entity_Attribute_Source_Interface\\:\\:getAllOptions\\(\\) invoked with 1 parameter, 0 required\\.$#"
count: 1
- path: ../app/code/core/Mage/ImportExport/Model/Export/Entity/Customer.php
+ path: app/code/core/Mage/ImportExport/Model/Export/Entity/Customer.php
-
message: "#^Call to an undefined method Mage_Eav_Model_Entity_Collection_Abstract\\:\\:addCategoryIds\\(\\)\\.$#"
count: 1
- path: ../app/code/core/Mage/ImportExport/Model/Export/Entity/Product.php
+ path: app/code/core/Mage/ImportExport/Model/Export/Entity/Product.php
-
message: "#^Call to an undefined method Mage_Eav_Model_Entity_Collection_Abstract\\:\\:setStoreId\\(\\)\\.$#"
count: 1
- path: ../app/code/core/Mage/ImportExport/Model/Export/Entity/Product.php
+ path: app/code/core/Mage/ImportExport/Model/Export/Entity/Product.php
-
message: "#^If condition is always true\\.$#"
count: 1
- path: ../app/code/core/Mage/ImportExport/Model/Export/Entity/Product.php
+ path: app/code/core/Mage/ImportExport/Model/Export/Entity/Product.php
-
message: "#^Instanceof between Mage_Core_Model_Abstract and Mage_ImportExport_Model_Export_Entity_Product_Type_Abstract will always evaluate to false\\.$#"
count: 1
- path: ../app/code/core/Mage/ImportExport/Model/Export/Entity/Product.php
+ path: app/code/core/Mage/ImportExport/Model/Export/Entity/Product.php
-
message: "#^Offset int\\|string on non\\-empty\\-array\\ in isset\\(\\) always exists and is not nullable\\.$#"
count: 2
- path: ../app/code/core/Mage/ImportExport/Model/Export/Entity/Product.php
+ path: app/code/core/Mage/ImportExport/Model/Export/Entity/Product.php
-
message: "#^Parameter \\#1 \\$value of method Mage_Catalog_Model_Resource_Category_Collection\\:\\:getItemById\\(\\) expects int, string given\\.$#"
count: 1
- path: ../app/code/core/Mage/ImportExport/Model/Export/Entity/Product.php
+ path: app/code/core/Mage/ImportExport/Model/Export/Entity/Product.php
-
message: "#^Unreachable statement \\- code above always terminates\\.$#"
count: 1
- path: ../app/code/core/Mage/ImportExport/Model/Export/Entity/Product.php
+ path: app/code/core/Mage/ImportExport/Model/Export/Entity/Product.php
-
message: "#^Variable \\$collection might not be defined\\.$#"
count: 1
- path: ../app/code/core/Mage/ImportExport/Model/Export/Entity/Product.php
+ path: app/code/core/Mage/ImportExport/Model/Export/Entity/Product.php
-
message: "#^Binary operation \"\\+\" between string and 50\\|int\\<100, max\\> results in an error\\.$#"
count: 1
- path: ../app/code/core/Mage/ImportExport/Model/Import.php
+ path: app/code/core/Mage/ImportExport/Model/Import.php
-
message: "#^Cannot access offset 'file' on bool\\|void\\.$#"
count: 2
- path: ../app/code/core/Mage/ImportExport/Model/Import.php
+ path: app/code/core/Mage/ImportExport/Model/Import.php
-
message: "#^Cannot access offset 'path' on bool\\|void\\.$#"
count: 1
- path: ../app/code/core/Mage/ImportExport/Model/Import.php
+ path: app/code/core/Mage/ImportExport/Model/Import.php
-
message: "#^Instanceof between Mage_Core_Model_Abstract\\|false and Mage_ImportExport_Model_Import_Entity_Abstract will always evaluate to false\\.$#"
count: 1
- path: ../app/code/core/Mage/ImportExport/Model/Import.php
+ path: app/code/core/Mage/ImportExport/Model/Import.php
-
message: "#^Negated boolean expression is always false\\.$#"
count: 1
- path: ../app/code/core/Mage/ImportExport/Model/Import.php
+ path: app/code/core/Mage/ImportExport/Model/Import.php
-
message: "#^Parameter \\#2 \\$arguments of static method Mage\\:\\:getModel\\(\\) expects array\\|object, string given\\.$#"
count: 3
- path: ../app/code/core/Mage/ImportExport/Model/Import.php
+ path: app/code/core/Mage/ImportExport/Model/Import.php
-
message: "#^Property Mage_ImportExport_Model_Import\\:\\:\\$_entityAdapter \\(Mage_ImportExport_Model_Import_Entity_Abstract\\) does not accept Mage_Core_Model_Abstract\\|false\\.$#"
count: 1
- path: ../app/code/core/Mage/ImportExport/Model/Import.php
+ path: app/code/core/Mage/ImportExport/Model/Import.php
-
message: "#^Static property Mage_ImportExport_Model_Import\\:\\:\\$_entityInvalidatedIndexes \\(Mage_ImportExport_Model_Import_Entity_Abstract\\) does not accept default value of type array\\\\>\\.$#"
count: 1
- path: ../app/code/core/Mage/ImportExport/Model/Import.php
+ path: app/code/core/Mage/ImportExport/Model/Import.php
-
message: "#^Unreachable statement \\- code above always terminates\\.$#"
count: 1
- path: ../app/code/core/Mage/ImportExport/Model/Import.php
+ path: app/code/core/Mage/ImportExport/Model/Import.php
-
message: "#^Method Mage_Eav_Model_Entity_Attribute_Source_Interface\\:\\:getAllOptions\\(\\) invoked with 1 parameter, 0 required\\.$#"
count: 1
- path: ../app/code/core/Mage/ImportExport/Model/Import/Entity/Abstract.php
+ path: app/code/core/Mage/ImportExport/Model/Import/Entity/Abstract.php
-
message: "#^Negated boolean expression is always false\\.$#"
count: 2
- path: ../app/code/core/Mage/ImportExport/Model/Import/Entity/Abstract.php
+ path: app/code/core/Mage/ImportExport/Model/Import/Entity/Abstract.php
-
message: "#^Property Mage_ImportExport_Model_Import_Entity_Abstract\\:\\:\\$_connection \\(Varien_Convert_Adapter_Interface\\) does not accept Varien_Db_Adapter_Interface\\|false\\.$#"
count: 1
- path: ../app/code/core/Mage/ImportExport/Model/Import/Entity/Abstract.php
+ path: app/code/core/Mage/ImportExport/Model/Import/Entity/Abstract.php
-
message: "#^Property Mage_ImportExport_Model_Import_Entity_Abstract\\:\\:\\$_entityTypeId \\(int\\) does not accept string\\|null\\.$#"
count: 1
- path: ../app/code/core/Mage/ImportExport/Model/Import/Entity/Abstract.php
+ path: app/code/core/Mage/ImportExport/Model/Import/Entity/Abstract.php
-
message: "#^Call to an undefined method Mage_Customer_Model_Entity_Attribute\\:\\:getBackend\\(\\)\\.$#"
count: 3
- path: ../app/code/core/Mage/ImportExport/Model/Import/Entity/Customer.php
+ path: app/code/core/Mage/ImportExport/Model/Import/Entity/Customer.php
-
message: "#^Call to an undefined method Varien_Convert_Adapter_Interface\\:\\:insertMultiple\\(\\)\\.$#"
count: 1
- path: ../app/code/core/Mage/ImportExport/Model/Import/Entity/Customer.php
+ path: app/code/core/Mage/ImportExport/Model/Import/Entity/Customer.php
-
message: "#^Call to an undefined method Varien_Convert_Adapter_Interface\\:\\:insertOnDuplicate\\(\\)\\.$#"
count: 2
- path: ../app/code/core/Mage/ImportExport/Model/Import/Entity/Customer.php
+ path: app/code/core/Mage/ImportExport/Model/Import/Entity/Customer.php
-
message: "#^Call to an undefined method Varien_Convert_Adapter_Interface\\:\\:query\\(\\)\\.$#"
count: 1
- path: ../app/code/core/Mage/ImportExport/Model/Import/Entity/Customer.php
+ path: app/code/core/Mage/ImportExport/Model/Import/Entity/Customer.php
-
message: "#^Call to an undefined method Varien_Convert_Adapter_Interface\\:\\:quoteInto\\(\\)\\.$#"
count: 1
- path: ../app/code/core/Mage/ImportExport/Model/Import/Entity/Customer.php
+ path: app/code/core/Mage/ImportExport/Model/Import/Entity/Customer.php
-
message: "#^Parameter \\#1 \\$str of method Mage_Core_Helper_UnserializeArray\\:\\:unserialize\\(\\) expects string, array given\\.$#"
count: 1
- path: ../app/code/core/Mage/ImportExport/Model/Import/Entity/Customer.php
+ path: app/code/core/Mage/ImportExport/Model/Import/Entity/Customer.php
-
message: "#^Variable \\$entityId might not be defined\\.$#"
count: 4
- path: ../app/code/core/Mage/ImportExport/Model/Import/Entity/Customer.php
+ path: app/code/core/Mage/ImportExport/Model/Import/Entity/Customer.php
-
message: "#^Call to an undefined method Mage_Customer_Model_Entity_Attribute\\:\\:getBackend\\(\\)\\.$#"
count: 1
- path: ../app/code/core/Mage/ImportExport/Model/Import/Entity/Customer/Address.php
+ path: app/code/core/Mage/ImportExport/Model/Import/Entity/Customer/Address.php
-
message: "#^Call to an undefined method Varien_Convert_Adapter_Interface\\:\\:delete\\(\\)\\.$#"
count: 1
- path: ../app/code/core/Mage/ImportExport/Model/Import/Entity/Customer/Address.php
+ path: app/code/core/Mage/ImportExport/Model/Import/Entity/Customer/Address.php
-
message: "#^Call to an undefined method Varien_Convert_Adapter_Interface\\:\\:insertMultiple\\(\\)\\.$#"
count: 2
- path: ../app/code/core/Mage/ImportExport/Model/Import/Entity/Customer/Address.php
+ path: app/code/core/Mage/ImportExport/Model/Import/Entity/Customer/Address.php
-
message: "#^Call to an undefined method Varien_Convert_Adapter_Interface\\:\\:insertOnDuplicate\\(\\)\\.$#"
count: 1
- path: ../app/code/core/Mage/ImportExport/Model/Import/Entity/Customer/Address.php
+ path: app/code/core/Mage/ImportExport/Model/Import/Entity/Customer/Address.php
-
message: "#^Call to an undefined method Varien_Convert_Adapter_Interface\\:\\:quoteInto\\(\\)\\.$#"
count: 1
- path: ../app/code/core/Mage/ImportExport/Model/Import/Entity/Customer/Address.php
+ path: app/code/core/Mage/ImportExport/Model/Import/Entity/Customer/Address.php
-
message: "#^Call to an undefined method Varien_Convert_Adapter_Interface\\:\\:delete\\(\\)\\.$#"
count: 8
- path: ../app/code/core/Mage/ImportExport/Model/Import/Entity/Product.php
+ path: app/code/core/Mage/ImportExport/Model/Import/Entity/Product.php
-
message: "#^Call to an undefined method Varien_Convert_Adapter_Interface\\:\\:fetchPairs\\(\\)\\.$#"
count: 2
- path: ../app/code/core/Mage/ImportExport/Model/Import/Entity/Product.php
+ path: app/code/core/Mage/ImportExport/Model/Import/Entity/Product.php
-
message: "#^Call to an undefined method Varien_Convert_Adapter_Interface\\:\\:insertMultiple\\(\\)\\.$#"
count: 3
- path: ../app/code/core/Mage/ImportExport/Model/Import/Entity/Product.php
+ path: app/code/core/Mage/ImportExport/Model/Import/Entity/Product.php
-
message: "#^Call to an undefined method Varien_Convert_Adapter_Interface\\:\\:insertOnDuplicate\\(\\)\\.$#"
count: 14
- path: ../app/code/core/Mage/ImportExport/Model/Import/Entity/Product.php
+ path: app/code/core/Mage/ImportExport/Model/Import/Entity/Product.php
-
message: "#^Call to an undefined method Varien_Convert_Adapter_Interface\\:\\:query\\(\\)\\.$#"
count: 1
- path: ../app/code/core/Mage/ImportExport/Model/Import/Entity/Product.php
+ path: app/code/core/Mage/ImportExport/Model/Import/Entity/Product.php
-
message: "#^Call to an undefined method Varien_Convert_Adapter_Interface\\:\\:quoteInto\\(\\)\\.$#"
count: 12
- path: ../app/code/core/Mage/ImportExport/Model/Import/Entity/Product.php
+ path: app/code/core/Mage/ImportExport/Model/Import/Entity/Product.php
-
message: "#^Call to an undefined method Varien_Convert_Adapter_Interface\\:\\:select\\(\\)\\.$#"
count: 2
- path: ../app/code/core/Mage/ImportExport/Model/Import/Entity/Product.php
+ path: app/code/core/Mage/ImportExport/Model/Import/Entity/Product.php
-
message: "#^Call to function is_null\\(\\) with Mage_ImportExport_Model_Import_Uploader will always evaluate to false\\.$#"
count: 1
- path: ../app/code/core/Mage/ImportExport/Model/Import/Entity/Product.php
+ path: app/code/core/Mage/ImportExport/Model/Import/Entity/Product.php
-
message: "#^Instanceof between Mage_Core_Model_Abstract and Mage_ImportExport_Model_Import_Entity_Product_Type_Abstract will always evaluate to false\\.$#"
count: 1
- path: ../app/code/core/Mage/ImportExport/Model/Import/Entity/Product.php
+ path: app/code/core/Mage/ImportExport/Model/Import/Entity/Product.php
-
message: "#^Method Mage_ImportExport_Model_Import_Entity_Product\\:\\:getConnection\\(\\) should return Varien_Db_Adapter_Pdo_Mysql but returns Varien_Convert_Adapter_Interface\\.$#"
count: 1
- path: ../app/code/core/Mage/ImportExport/Model/Import/Entity/Product.php
+ path: app/code/core/Mage/ImportExport/Model/Import/Entity/Product.php
-
message: "#^Negated boolean expression is always true\\.$#"
count: 1
- path: ../app/code/core/Mage/ImportExport/Model/Import/Entity/Product.php
+ path: app/code/core/Mage/ImportExport/Model/Import/Entity/Product.php
-
message: "#^Parameter \\#1 \\$value of method Mage_Catalog_Model_Resource_Category_Collection\\:\\:getItemById\\(\\) expects int, string given\\.$#"
count: 1
- path: ../app/code/core/Mage/ImportExport/Model/Import/Entity/Product.php
+ path: app/code/core/Mage/ImportExport/Model/Import/Entity/Product.php
-
message: "#^Parameter \\#2 \\$increment of method Varien_Db_Adapter_Interface\\:\\:changeTableAutoIncrement\\(\\) expects string, int given\\.$#"
count: 1
- path: ../app/code/core/Mage/ImportExport/Model/Import/Entity/Product.php
+ path: app/code/core/Mage/ImportExport/Model/Import/Entity/Product.php
-
message: "#^Property Mage_ImportExport_Model_Import_Entity_Product\\:\\:\\$_urlKeyAttributeId \\(int\\) does not accept string\\.$#"
count: 1
- path: ../app/code/core/Mage/ImportExport/Model/Import/Entity/Product.php
+ path: app/code/core/Mage/ImportExport/Model/Import/Entity/Product.php
-
message: "#^Result of \\|\\| is always true\\.$#"
count: 1
- path: ../app/code/core/Mage/ImportExport/Model/Import/Entity/Product.php
+ path: app/code/core/Mage/ImportExport/Model/Import/Entity/Product.php
-
message: "#^Unreachable statement \\- code above always terminates\\.$#"
count: 1
- path: ../app/code/core/Mage/ImportExport/Model/Import/Entity/Product.php
+ path: app/code/core/Mage/ImportExport/Model/Import/Entity/Product.php
-
message: "#^Variable \\$prevOptionId might not be defined\\.$#"
count: 4
- path: ../app/code/core/Mage/ImportExport/Model/Import/Entity/Product.php
+ path: app/code/core/Mage/ImportExport/Model/Import/Entity/Product.php
-
message: "#^Variable \\$rowSku might not be defined\\.$#"
count: 1
- path: ../app/code/core/Mage/ImportExport/Model/Import/Entity/Product.php
+ path: app/code/core/Mage/ImportExport/Model/Import/Entity/Product.php
-
message: "#^Variable \\$sku might not be defined\\.$#"
count: 2
- path: ../app/code/core/Mage/ImportExport/Model/Import/Entity/Product.php
+ path: app/code/core/Mage/ImportExport/Model/Import/Entity/Product.php
-
message: "#^Variable \\$productId might not be defined\\.$#"
count: 4
- path: ../app/code/core/Mage/ImportExport/Model/Import/Entity/Product/Type/Configurable.php
+ path: app/code/core/Mage/ImportExport/Model/Import/Entity/Product/Type/Configurable.php
-
message: "#^Variable \\$productSuperAttrId might not be defined\\.$#"
count: 1
- path: ../app/code/core/Mage/ImportExport/Model/Import/Entity/Product/Type/Configurable.php
+ path: app/code/core/Mage/ImportExport/Model/Import/Entity/Product/Type/Configurable.php
-
message: "#^Call to function is_null\\(\\) with string will always evaluate to false\\.$#"
count: 1
- path: ../app/code/core/Mage/ImportExport/Model/Import/Entity/Product/Type/Grouped.php
+ path: app/code/core/Mage/ImportExport/Model/Import/Entity/Product/Type/Grouped.php
-
message: "#^Variable \\$productData might not be defined\\.$#"
count: 3
- path: ../app/code/core/Mage/ImportExport/Model/Import/Entity/Product/Type/Grouped.php
+ path: app/code/core/Mage/ImportExport/Model/Import/Entity/Product/Type/Grouped.php
-
message: "#^Cannot access offset 'name' on bool\\|void\\.$#"
count: 2
- path: ../app/code/core/Mage/ImportExport/Model/Import/Uploader.php
+ path: app/code/core/Mage/ImportExport/Model/Import/Uploader.php
-
message: "#^Property Varien_File_Uploader\\:\\:\\$_uploadType \\(string\\) does not accept int\\.$#"
count: 1
- path: ../app/code/core/Mage/ImportExport/Model/Import/Uploader.php
+ path: app/code/core/Mage/ImportExport/Model/Import/Uploader.php
-
message: "#^Else branch is unreachable because previous condition is always true\\.$#"
count: 1
- path: ../app/code/core/Mage/ImportExport/Model/Resource/Import/Data.php
+ path: app/code/core/Mage/ImportExport/Model/Resource/Import/Data.php
-
message: "#^Property Mage_ImportExport_Model_Resource_Import_Data\\:\\:\\$_iterator \\(IteratorIterator\\) does not accept null\\.$#"
count: 1
- path: ../app/code/core/Mage/ImportExport/Model/Resource/Import/Data.php
+ path: app/code/core/Mage/ImportExport/Model/Resource/Import/Data.php
-
message: "#^Parameter \\#2 \\$elementId of method Mage_ImportExport_Block_Adminhtml_Import_Frame_Result\\:\\:addAction\\(\\) expects string, array\\ given\\.$#"
count: 2
- path: ../app/code/core/Mage/ImportExport/controllers/Adminhtml/ImportController.php
+ path: app/code/core/Mage/ImportExport/controllers/Adminhtml/ImportController.php
-
message: "#^Parameter \\#1 \\$date of method Mage_Core_Model_Resource_Abstract\\:\\:formatDate\\(\\) expects string\\|Zend_Date\\|true\\|null, int\\<1, max\\> given\\.$#"
count: 1
- path: ../app/code/core/Mage/Index/Model/Event.php
+ path: app/code/core/Mage/Index/Model/Event.php
-
message: "#^Call to function is_null\\(\\) with Mage_Index_Model_Resource_Process_Collection will always evaluate to false\\.$#"
count: 1
- path: ../app/code/core/Mage/Index/Model/Indexer.php
+ path: app/code/core/Mage/Index/Model/Indexer.php
-
message: "#^Method Mage_Index_Model_Lock\\:\\:getInstance\\(\\) should return \\$this\\(Mage_Index_Model_Lock\\) but returns Mage_Index_Model_Lock\\.$#"
count: 1
- path: ../app/code/core/Mage/Index/Model/Lock.php
+ path: app/code/core/Mage/Index/Model/Lock.php
-
message: "#^Property Mage_Index_Model_Lock\\:\\:\\$_storage \\(Mage_Index_Model_Lock_Storage_Interface\\) does not accept Mage_Core_Model_Abstract\\|false\\.$#"
count: 1
- path: ../app/code/core/Mage/Index/Model/Lock.php
+ path: app/code/core/Mage/Index/Model/Lock.php
-
message: "#^Strict comparison using \\=\\=\\= between mixed and null will always evaluate to false\\.$#"
count: 1
- path: ../app/code/core/Mage/Index/Model/Lock.php
+ path: app/code/core/Mage/Index/Model/Lock.php
-
message: "#^Method Mage_Core_Model_Resource\\:\\:getConnection\\(\\) invoked with 2 parameters, 1 required\\.$#"
count: 1
- path: ../app/code/core/Mage/Index/Model/Lock/Storage/Db.php
+ path: app/code/core/Mage/Index/Model/Lock/Storage/Db.php
-
message: "#^Method Mage_Index_Model_Lock_Storage_Db\\:\\:releaseLock\\(\\) should return int\\|null but returns bool\\.$#"
count: 1
- path: ../app/code/core/Mage/Index/Model/Lock/Storage/Db.php
+ path: app/code/core/Mage/Index/Model/Lock/Storage/Db.php
-
message: "#^Property Mage_Index_Model_Lock_Storage_Db\\:\\:\\$_helper \\(Mage_Index_Model_Resource_Helper_Mysql4\\) does not accept Mage_Core_Model_Resource_Helper_Abstract\\.$#"
count: 1
- path: ../app/code/core/Mage/Index/Model/Lock/Storage/Db.php
+ path: app/code/core/Mage/Index/Model/Lock/Storage/Db.php
-
message: "#^Return type \\(int\\|null\\) of method Mage_Index_Model_Lock_Storage_Db\\:\\:releaseLock\\(\\) should be compatible with return type \\(bool\\) of method Mage_Index_Model_Lock_Storage_Interface\\:\\:releaseLock\\(\\)$#"
count: 1
- path: ../app/code/core/Mage/Index/Model/Lock/Storage/Db.php
+ path: app/code/core/Mage/Index/Model/Lock/Storage/Db.php
-
message: "#^Call to function is_null\\(\\) with Mage_Index_Model_Lock will always evaluate to false\\.$#"
count: 1
- path: ../app/code/core/Mage/Index/Model/Process.php
+ path: app/code/core/Mage/Index/Model/Process.php
-
message: "#^If condition is always true\\.$#"
count: 2
- path: ../app/code/core/Mage/Index/Model/Process.php
+ path: app/code/core/Mage/Index/Model/Process.php
-
message: "#^Parameter \\#1 \\$namespace of method Mage_Index_Model_Event\\:\\:setDataNamespace\\(\\) expects string, null given\\.$#"
count: 1
- path: ../app/code/core/Mage/Index/Model/Process.php
+ path: app/code/core/Mage/Index/Model/Process.php
-
message: "#^Parameter \\#1 \\$process of method Mage_Index_Model_Event\\:\\:setProcess\\(\\) expects Mage_Index_Model_Process, null given\\.$#"
count: 1
- path: ../app/code/core/Mage/Index/Model/Process.php
+ path: app/code/core/Mage/Index/Model/Process.php
-
message: "#^Parameter \\#2 \\$status of method Mage_Index_Model_Event\\:\\:addProcessId\\(\\) expects string, null given\\.$#"
count: 1
- path: ../app/code/core/Mage/Index/Model/Process.php
+ path: app/code/core/Mage/Index/Model/Process.php
-
message: "#^Call to function is_array\\(\\) with '' will always evaluate to false\\.$#"
count: 1
- path: ../app/code/core/Mage/Index/Model/Resource/Event.php
+ path: app/code/core/Mage/Index/Model/Resource/Event.php
-
message: "#^Property Varien_Data_Collection\\:\\:\\$_totalRecords \\(int\\) does not accept null\\.$#"
count: 1
- path: ../app/code/core/Mage/Index/Model/Resource/Event/Collection.php
+ path: app/code/core/Mage/Index/Model/Resource/Event/Collection.php
-
message: "#^Property Varien_Data_Collection_Db\\:\\:\\$_data \\(array\\) does not accept null\\.$#"
count: 1
- path: ../app/code/core/Mage/Index/Model/Resource/Event/Collection.php
+ path: app/code/core/Mage/Index/Model/Resource/Event/Collection.php
-
message: "#^Parameter \\#1 \\$adapter of method Varien_Db_Adapter_Interface\\:\\:setCacheAdapter\\(\\) expects Zend_Cache_Backend_Interface, Zend_Cache_Core given\\.$#"
count: 2
- path: ../app/code/core/Mage/Index/Model/Resource/Lock/Resource.php
+ path: app/code/core/Mage/Index/Model/Resource/Lock/Resource.php
-
message: "#^Return type \\(Varien_Db_Adapter_Interface\\|false\\) of method Mage_Index_Model_Resource_Lock_Resource\\:\\:_getDefaultConnection\\(\\) should be compatible with return type \\(string\\) of method Mage_Core_Model_Resource\\:\\:_getDefaultConnection\\(\\)$#"
count: 1
- path: ../app/code/core/Mage/Index/Model/Resource/Lock/Resource.php
+ path: app/code/core/Mage/Index/Model/Resource/Lock/Resource.php
-
message: "#^Parameter \\#1 \\$date of method Mage_Core_Model_Resource_Abstract\\:\\:formatDate\\(\\) expects string\\|Zend_Date\\|true\\|null, int\\<1, max\\> given\\.$#"
count: 5
- path: ../app/code/core/Mage/Index/Model/Resource/Process.php
+ path: app/code/core/Mage/Index/Model/Resource/Process.php
-
message: "#^Parameter \\#2 \\$true of method Varien_Db_Adapter_Interface\\:\\:getCheckSql\\(\\) expects string, int given\\.$#"
count: 1
- path: ../app/code/core/Mage/Index/Model/Resource/Process/Collection.php
+ path: app/code/core/Mage/Index/Model/Resource/Process/Collection.php
-
message: "#^Method Mage_Index_Model_Resource_Setup\\:\\:_syncIndexes\\(\\) should return \\$this\\(Mage_Index_Model_Resource_Setup\\) but return statement is missing\\.$#"
count: 1
- path: ../app/code/core/Mage/Index/Model/Resource/Setup.php
+ path: app/code/core/Mage/Index/Model/Resource/Setup.php
-
message: "#^Negated boolean expression is always false\\.$#"
count: 1
- path: ../app/code/core/Mage/Index/Model/Resource/Setup.php
+ path: app/code/core/Mage/Index/Model/Resource/Setup.php
-
message: "#^Return type \\(void\\) of method Mage_Index_Model_Resource_Setup\\:\\:applyUpdates\\(\\) should be compatible with return type \\(\\$this\\(Mage_Core_Model_Resource_Setup\\)\\|true\\) of method Mage_Core_Model_Resource_Setup\\:\\:applyUpdates\\(\\)$#"
count: 1
- path: ../app/code/core/Mage/Index/Model/Resource/Setup.php
+ path: app/code/core/Mage/Index/Model/Resource/Setup.php
-
message: "#^Parameter \\#3 \\$value of method Mage_Core_Controller_Varien_Action\\:\\:setFlag\\(\\) expects int\\|string, true given\\.$#"
count: 1
- path: ../app/code/core/Mage/Install/Controller/Action.php
+ path: app/code/core/Mage/Install/Controller/Action.php
-
message: "#^Offset 'path' does not exist on array\\{\\000\\*\\000_parent\\: Varien_Simplexml_Element\\}\\.$#"
count: 1
- path: ../app/code/core/Mage/Install/Model/Config.php
+ path: app/code/core/Mage/Install/Model/Config.php
-
message: "#^Parameter \\#2 \\$mergeToObject of method Mage_Core_Model_Config\\:\\:loadModulesConfiguration\\(\\) expects Mage_Core_Model_Config_Base\\|null, \\$this\\(Mage_Install_Model_Config\\) given\\.$#"
count: 1
- path: ../app/code/core/Mage/Install/Model/Config.php
+ path: app/code/core/Mage/Install/Model/Config.php
-
message: "#^Call to function is_null\\(\\) with Mage_Install_Model_Session will always evaluate to false\\.$#"
count: 1
- path: ../app/code/core/Mage/Install/Model/Installer.php
+ path: app/code/core/Mage/Install/Model/Installer.php
-
message: "#^Constant data not found\\.$#"
count: 1
- path: ../app/code/core/Mage/Install/Model/Installer.php
+ path: app/code/core/Mage/Install/Model/Installer.php
-
message: "#^Left side of && is always true\\.$#"
count: 1
- path: ../app/code/core/Mage/Install/Model/Installer.php
+ path: app/code/core/Mage/Install/Model/Installer.php
-
message: "#^Parameter \\#2 \\$value of method Mage_Core_Model_Resource_Setup\\:\\:setConfigData\\(\\) expects string, int given\\.$#"
count: 5
- path: ../app/code/core/Mage/Install/Model/Installer.php
+ path: app/code/core/Mage/Install/Model/Installer.php
-
message: "#^Property Mage_Install_Model_Installer\\:\\:\\$_dataModel \\(Mage_Install_Model_Session\\) does not accept Varien_Object\\.$#"
count: 1
- path: ../app/code/core/Mage/Install/Model/Installer.php
+ path: app/code/core/Mage/Install/Model/Installer.php
-
message: "#^Call to function is_null\\(\\) with Mage_Install_Model_Installer will always evaluate to false\\.$#"
count: 1
- path: ../app/code/core/Mage/Install/Model/Installer/Abstract.php
+ path: app/code/core/Mage/Install/Model/Installer/Abstract.php
-
message: "#^Call to function is_null\\(\\) with Mage_Install_Model_Installer_Data\\|Mage_Install_Model_Session will always evaluate to false\\.$#"
count: 1
- path: ../app/code/core/Mage/Install/Model/Installer/Console.php
+ path: app/code/core/Mage/Install/Model/Installer/Console.php
-
message: "#^Call to function is_null\\(\\) with array will always evaluate to false\\.$#"
count: 1
- path: ../app/code/core/Mage/Install/Model/Installer/Console.php
+ path: app/code/core/Mage/Install/Model/Installer/Console.php
-
message: "#^If condition is always false\\.$#"
count: 7
- path: ../app/code/core/Mage/Install/Model/Installer/Console.php
+ path: app/code/core/Mage/Install/Model/Installer/Console.php
-
message: "#^Call to an undefined method Mage_Install_Model_Installer_Db_Abstract\\:\\:getVersion\\(\\)\\.$#"
count: 1
- path: ../app/code/core/Mage/Install/Model/Installer/Db.php
+ path: app/code/core/Mage/Install/Model/Installer/Db.php
-
message: "#^Method Mage_Install_Model_Installer_Db\\:\\:_getDbResource\\(\\) should return Mage_Install_Model_Installer_Db_Abstract but returns resource\\.$#"
count: 1
- path: ../app/code/core/Mage/Install/Model/Installer/Db.php
+ path: app/code/core/Mage/Install/Model/Installer/Db.php
-
message: "#^Negated boolean expression is always false\\.$#"
count: 2
- path: ../app/code/core/Mage/Install/Model/Installer/Db.php
+ path: app/code/core/Mage/Install/Model/Installer/Db.php
-
message: "#^Property Mage_Install_Model_Installer_Db\\:\\:\\$_dbResource \\(resource\\) does not accept Mage_Core_Model_Abstract\\.$#"
count: 1
- path: ../app/code/core/Mage/Install/Model/Installer/Db.php
+ path: app/code/core/Mage/Install/Model/Installer/Db.php
-
message: "#^Property Mage_Install_Model_Installer_Db\\:\\:\\$_dbResource \\(resource\\) in isset\\(\\) is not nullable\\.$#"
count: 1
- path: ../app/code/core/Mage/Install/Model/Installer/Db.php
+ path: app/code/core/Mage/Install/Model/Installer/Db.php
-
message: "#^Property Mage_Install_Model_Installer_Db_Abstract\\:\\:\\$_connection \\(Varien_Db_Adapter_Interface\\) in isset\\(\\) is not nullable\\.$#"
count: 1
- path: ../app/code/core/Mage/Install/Model/Installer/Db/Abstract.php
+ path: app/code/core/Mage/Install/Model/Installer/Db/Abstract.php
-
message: "#^Method Mage_Install_IndexController\\:\\:preDispatch\\(\\) with return type void returns void but should not return anything\\.$#"
count: 1
- path: ../app/code/core/Mage/Install/controllers/IndexController.php
+ path: app/code/core/Mage/Install/controllers/IndexController.php
-
message: "#^Parameter \\#3 \\$value of method Mage_Core_Controller_Varien_Action\\:\\:setFlag\\(\\) expects int\\|string, true given\\.$#"
count: 1
- path: ../app/code/core/Mage/Install/controllers/IndexController.php
+ path: app/code/core/Mage/Install/controllers/IndexController.php
-
message: "#^Result of method Mage_Core_Controller_Varien_Action\\:\\:preDispatch\\(\\) \\(void\\) is used\\.$#"
count: 1
- path: ../app/code/core/Mage/Install/controllers/IndexController.php
+ path: app/code/core/Mage/Install/controllers/IndexController.php
-
message: "#^Method Mage_Install_WizardController\\:\\:preDispatch\\(\\) with return type void returns void but should not return anything\\.$#"
count: 1
- path: ../app/code/core/Mage/Install/controllers/WizardController.php
+ path: app/code/core/Mage/Install/controllers/WizardController.php
-
message: "#^Parameter \\#3 \\$value of method Mage_Core_Controller_Varien_Action\\:\\:setFlag\\(\\) expects int\\|string, true given\\.$#"
count: 8
- path: ../app/code/core/Mage/Install/controllers/WizardController.php
+ path: app/code/core/Mage/Install/controllers/WizardController.php
-
message: "#^Result of method Mage_Core_Controller_Varien_Action\\:\\:preDispatch\\(\\) \\(void\\) is used\\.$#"
count: 1
- path: ../app/code/core/Mage/Install/controllers/WizardController.php
+ path: app/code/core/Mage/Install/controllers/WizardController.php
-
message: "#^Method Mage_Log_Model_Aggregation\\:\\:_date\\(\\) never returns false so it can be removed from the return type\\.$#"
count: 1
- path: ../app/code/core/Mage/Log/Model/Aggregation.php
+ path: app/code/core/Mage/Log/Model/Aggregation.php
-
message: "#^Method Mage_Log_Model_Aggregation\\:\\:_removeEmpty\\(\\) is unused\\.$#"
count: 1
- path: ../app/code/core/Mage/Log/Model/Aggregation.php
+ path: app/code/core/Mage/Log/Model/Aggregation.php
-
message: "#^Parameter \\#1 \\$id of method Mage_Log_Model_Aggregation\\:\\:_update\\(\\) expects int, string given\\.$#"
count: 1
- path: ../app/code/core/Mage/Log/Model/Aggregation.php
+ path: app/code/core/Mage/Log/Model/Aggregation.php
-
message: "#^Property Mage_Log_Model_Aggregation\\:\\:\\$_lastRecord \\(string\\) does not accept int\\|false\\.$#"
count: 1
- path: ../app/code/core/Mage/Log/Model/Aggregation.php
+ path: app/code/core/Mage/Log/Model/Aggregation.php
-
message: "#^Binary operation \"\\+\" between non\\-falsy\\-string and 1 results in an error\\.$#"
count: 2
- path: ../app/code/core/Mage/Log/Model/Resource/Log.php
+ path: app/code/core/Mage/Log/Model/Resource/Log.php
-
message: "#^Method Mage_Media_Model_File_Image\\:\\:getImage\\(\\) should return bool\\|resource but returns GdImage\\.$#"
count: 1
- path: ../app/code/core/Mage/Media/Model/File/Image.php
+ path: app/code/core/Mage/Media/Model/File/Image.php
-
message: "#^Method Mage_Media_Model_File_Image\\:\\:getTmpImage\\(\\) should return resource but returns GdImage\\|false\\.$#"
count: 1
- path: ../app/code/core/Mage/Media/Model/File/Image.php
+ path: app/code/core/Mage/Media/Model/File/Image.php
-
message: "#^Parameter \\#1 \\$dst_image of function imagecopyresampled expects GdImage, resource given\\.$#"
count: 1
- path: ../app/code/core/Mage/Media/Model/File/Image.php
+ path: app/code/core/Mage/Media/Model/File/Image.php
-
message: "#^Parameter \\#1 \\$image of function imagedestroy expects GdImage, resource given\\.$#"
count: 1
- path: ../app/code/core/Mage/Media/Model/File/Image.php
+ path: app/code/core/Mage/Media/Model/File/Image.php
-
message: "#^Parameter \\#1 \\$image of function imagegif expects GdImage, resource given\\.$#"
count: 1
- path: ../app/code/core/Mage/Media/Model/File/Image.php
+ path: app/code/core/Mage/Media/Model/File/Image.php
-
message: "#^Parameter \\#1 \\$image of function imagejpeg expects GdImage, resource given\\.$#"
count: 1
- path: ../app/code/core/Mage/Media/Model/File/Image.php
+ path: app/code/core/Mage/Media/Model/File/Image.php
-
message: "#^Parameter \\#1 \\$image of function imagepng expects GdImage, resource given\\.$#"
count: 1
- path: ../app/code/core/Mage/Media/Model/File/Image.php
+ path: app/code/core/Mage/Media/Model/File/Image.php
-
message: "#^Parameter \\#2 \\$src_image of function imagecopyresampled expects GdImage, resource given\\.$#"
count: 1
- path: ../app/code/core/Mage/Media/Model/File/Image.php
+ path: app/code/core/Mage/Media/Model/File/Image.php
-
message: "#^Call to function is_null\\(\\) with resource will always evaluate to false\\.$#"
count: 2
- path: ../app/code/core/Mage/Media/Model/Image.php
+ path: app/code/core/Mage/Media/Model/Image.php
-
message: "#^If condition is always true\\.$#"
count: 2
- path: ../app/code/core/Mage/Media/Model/Image.php
+ path: app/code/core/Mage/Media/Model/Image.php
-
message: "#^Property Mage_Media_Model_Image\\:\\:\\$_image \\(resource\\) does not accept null\\.$#"
count: 1
- path: ../app/code/core/Mage/Media/Model/Image.php
+ path: app/code/core/Mage/Media/Model/Image.php
-
message: "#^Property Mage_Media_Model_Image\\:\\:\\$_tmpImage \\(resource\\) does not accept null\\.$#"
count: 1
- path: ../app/code/core/Mage/Media/Model/Image.php
+ path: app/code/core/Mage/Media/Model/Image.php
-
message: "#^Parameter \\#1 \\$callback of method Varien_Data_Collection\\:\\:walk\\(\\) expects callable\\(\\)\\: mixed, 'sendPerSubscriber' given\\.$#"
count: 1
- path: ../app/code/core/Mage/Newsletter/Model/Observer.php
+ path: app/code/core/Mage/Newsletter/Model/Observer.php
-
message: "#^Call to function is_null\\(\\) with Mage_Newsletter_Model_Subscriber will always evaluate to false\\.$#"
count: 1
- path: ../app/code/core/Mage/Newsletter/Model/Problem.php
+ path: app/code/core/Mage/Newsletter/Model/Problem.php
-
message: "#^If condition is always true\\.$#"
count: 1
- path: ../app/code/core/Mage/Newsletter/Model/Problem.php
+ path: app/code/core/Mage/Newsletter/Model/Problem.php
-
message: "#^Method Mage_Newsletter_Model_Problem\\:\\:getSubscriber\\(\\) should return Mage_Newsletter_Model_Subscriber but returns null\\.$#"
count: 1
- path: ../app/code/core/Mage/Newsletter/Model/Problem.php
+ path: app/code/core/Mage/Newsletter/Model/Problem.php
-
message: "#^Call to function is_null\\(\\) with Mage_Newsletter_Model_Resource_Subscriber_Collection will always evaluate to false\\.$#"
count: 1
- path: ../app/code/core/Mage/Newsletter/Model/Queue.php
+ path: app/code/core/Mage/Newsletter/Model/Queue.php
-
message: "#^Call to function is_null\\(\\) with Mage_Newsletter_Model_Template will always evaluate to false\\.$#"
count: 1
- path: ../app/code/core/Mage/Newsletter/Model/Queue.php
+ path: app/code/core/Mage/Newsletter/Model/Queue.php
-
message: "#^Parameter \\#1 \\$queue of method Mage_Newsletter_Model_Resource_Queue\\:\\:setStores\\(\\) expects Mage_Newsletter_Model_Queue, Mage_Core_Model_Abstract given\\.$#"
count: 1
- path: ../app/code/core/Mage/Newsletter/Model/Resource/Queue.php
+ path: app/code/core/Mage/Newsletter/Model/Resource/Queue.php
-
message: "#^Call to an undefined method Mage_Customer_Model_Entity_Attribute\\:\\:getAttributeId\\(\\)\\.$#"
count: 3
- path: ../app/code/core/Mage/Newsletter/Model/Resource/Subscriber/Collection.php
+ path: app/code/core/Mage/Newsletter/Model/Resource/Subscriber/Collection.php
-
message: "#^Call to an undefined method Mage_Customer_Model_Entity_Attribute\\:\\:getBackend\\(\\)\\.$#"
count: 3
- path: ../app/code/core/Mage/Newsletter/Model/Resource/Subscriber/Collection.php
+ path: app/code/core/Mage/Newsletter/Model/Resource/Subscriber/Collection.php
-
message: "#^Parameter \\#2 \\$true of method Varien_Db_Adapter_Interface\\:\\:getCheckSql\\(\\) expects string, int given\\.$#"
count: 2
- path: ../app/code/core/Mage/Newsletter/Model/Resource/Subscriber/Collection.php
+ path: app/code/core/Mage/Newsletter/Model/Resource/Subscriber/Collection.php
-
message: "#^Parameter \\#3 \\$false of method Varien_Db_Adapter_Interface\\:\\:getCheckSql\\(\\) expects string, int given\\.$#"
count: 2
- path: ../app/code/core/Mage/Newsletter/Model/Resource/Subscriber/Collection.php
+ path: app/code/core/Mage/Newsletter/Model/Resource/Subscriber/Collection.php
-
message: "#^Left side of && is always true\\.$#"
count: 1
- path: ../app/code/core/Mage/Newsletter/Model/Resource/Template.php
+ path: app/code/core/Mage/Newsletter/Model/Resource/Template.php
-
message: "#^Call to function is_null\\(\\) with bool will always evaluate to false\\.$#"
count: 1
- path: ../app/code/core/Mage/Newsletter/Model/Subscriber.php
+ path: app/code/core/Mage/Newsletter/Model/Subscriber.php
-
message: "#^Parameter \\#1 \\$scope of method Mage_Newsletter_Model_Resource_Subscriber\\:\\:setMessagesScope\\(\\) expects string, bool given\\.$#"
count: 1
- path: ../app/code/core/Mage/Newsletter/Model/Subscriber.php
+ path: app/code/core/Mage/Newsletter/Model/Subscriber.php
-
message: "#^Call to function is_null\\(\\) with Zend_Mail will always evaluate to false\\.$#"
count: 1
- path: ../app/code/core/Mage/Newsletter/Model/Template.php
+ path: app/code/core/Mage/Newsletter/Model/Template.php
-
message: "#^Parameter \\#1 \\$storeId of method Mage_Core_Model_Email_Template_Filter\\:\\:setStoreId\\(\\) expects int, Mage_Core_Model_Store given\\.$#"
count: 1
- path: ../app/code/core/Mage/Newsletter/Model/Template.php
+ path: app/code/core/Mage/Newsletter/Model/Template.php
-
message: "#^Parameter \\#1 \\$string of function strlen expects string, bool given\\.$#"
count: 1
- path: ../app/code/core/Mage/Newsletter/Model/Template.php
+ path: app/code/core/Mage/Newsletter/Model/Template.php
-
message: "#^Property Mage_Newsletter_Model_Template\\:\\:\\$_mail \\(Zend_Mail\\) does not accept null\\.$#"
count: 1
- path: ../app/code/core/Mage/Newsletter/Model/Template.php
+ path: app/code/core/Mage/Newsletter/Model/Template.php
-
message: "#^Method Mage_Newsletter_ManageController\\:\\:saveAction\\(\\) should return Mage_Newsletter_ManageController but return statement is missing\\.$#"
count: 1
- path: ../app/code/core/Mage/Newsletter/controllers/ManageController.php
+ path: app/code/core/Mage/Newsletter/controllers/ManageController.php
-
message: "#^Parameter \\#3 \\$value of method Mage_Core_Controller_Varien_Action\\:\\:setFlag\\(\\) expects int\\|string, true given\\.$#"
count: 1
- path: ../app/code/core/Mage/Newsletter/controllers/ManageController.php
+ path: app/code/core/Mage/Newsletter/controllers/ManageController.php
-
message: "#^Negated boolean expression is always false\\.$#"
count: 1
- path: ../app/code/core/Mage/Oauth/Block/Adminhtml/Oauth/Consumer/Edit.php
+ path: app/code/core/Mage/Oauth/Block/Adminhtml/Oauth/Consumer/Edit.php
-
message: "#^Parameter \\#1 \\$length of function openssl_random_pseudo_bytes expects int, float given\\.$#"
count: 1
- path: ../app/code/core/Mage/Oauth/Helper/Data.php
+ path: app/code/core/Mage/Oauth/Helper/Data.php
-
message: "#^Parameter \\#2 \\$idFieldName of method Mage_Core_Model_Resource_Db_Abstract\\:\\:_init\\(\\) expects string, null given\\.$#"
count: 1
- path: ../app/code/core/Mage/Oauth/Model/Resource/Nonce.php
+ path: app/code/core/Mage/Oauth/Model/Resource/Nonce.php
-
message: "#^Parameter \\#1 \\$date of static method Varien_Date\\:\\:formatDate\\(\\) expects string\\|Zend_Date\\|true\\|null, int given\\.$#"
count: 1
- path: ../app/code/core/Mage/Oauth/Model/Resource/Token.php
+ path: app/code/core/Mage/Oauth/Model/Resource/Token.php
-
message: "#^Parameter \\#2 \\$value of method Varien_Data_Collection\\:\\:addFilter\\(\\) expects array\\|string, int given\\.$#"
count: 4
- path: ../app/code/core/Mage/Oauth/Model/Resource/Token/Collection.php
+ path: app/code/core/Mage/Oauth/Model/Resource/Token/Collection.php
-
message: "#^Parameter \\#3 \\$value of method Mage_Core_Controller_Varien_Action\\:\\:setFlag\\(\\) expects int\\|string, true given\\.$#"
count: 2
- path: ../app/code/core/Mage/Oauth/controllers/Adminhtml/Oauth/AuthorizeController.php
+ path: app/code/core/Mage/Oauth/controllers/Adminhtml/Oauth/AuthorizeController.php
-
message: "#^Return type \\(void\\) of method Mage_Oauth_Adminhtml_Oauth_AuthorizeController\\:\\:preDispatch\\(\\) should be compatible with return type \\(\\$this\\(Mage_Adminhtml_Controller_Action\\)\\) of method Mage_Adminhtml_Controller_Action\\:\\:preDispatch\\(\\)$#"
count: 1
- path: ../app/code/core/Mage/Oauth/controllers/Adminhtml/Oauth/AuthorizeController.php
+ path: app/code/core/Mage/Oauth/controllers/Adminhtml/Oauth/AuthorizeController.php
-
message: "#^Parameter \\#1 \\$data of method Mage_Oauth_Adminhtml_Oauth_ConsumerController\\:\\:_setFormData\\(\\) expects array, null given\\.$#"
count: 2
- path: ../app/code/core/Mage/Oauth/controllers/Adminhtml/Oauth/ConsumerController.php
+ path: app/code/core/Mage/Oauth/controllers/Adminhtml/Oauth/ConsumerController.php
-
message: "#^Call to an undefined method Mage_Core_Model_Abstract\\:\\:authenticate\\(\\)\\.$#"
count: 1
- path: ../app/code/core/Mage/Oauth/controllers/Customer/TokenController.php
+ path: app/code/core/Mage/Oauth/controllers/Customer/TokenController.php
-
message: "#^Parameter \\#1 \\$messagesStorage of method Mage_Core_Controller_Varien_Action\\:\\:_initLayoutMessages\\(\\) expects array\\|string, Mage_Customer_Model_Session given\\.$#"
count: 1
- path: ../app/code/core/Mage/Oauth/controllers/Customer/TokenController.php
+ path: app/code/core/Mage/Oauth/controllers/Customer/TokenController.php
-
message: "#^Parameter \\#1 \\$modelClass of static method Mage\\:\\:getSingleton\\(\\) expects string, Mage_Customer_Model_Session given\\.$#"
count: 1
- path: ../app/code/core/Mage/Oauth/controllers/Customer/TokenController.php
+ path: app/code/core/Mage/Oauth/controllers/Customer/TokenController.php
-
message: "#^Parameter \\#3 \\$value of method Mage_Core_Controller_Varien_Action\\:\\:setFlag\\(\\) expects int\\|string, true given\\.$#"
count: 1
- path: ../app/code/core/Mage/Oauth/controllers/Customer/TokenController.php
+ path: app/code/core/Mage/Oauth/controllers/Customer/TokenController.php
-
message: "#^Property Mage_Oauth_Customer_TokenController\\:\\:\\$_session \\(Mage_Customer_Model_Session\\) does not accept Mage_Core_Model_Abstract\\.$#"
count: 1
- path: ../app/code/core/Mage/Oauth/controllers/Customer/TokenController.php
+ path: app/code/core/Mage/Oauth/controllers/Customer/TokenController.php
-
message: "#^Property Mage_Oauth_Customer_TokenController\\:\\:\\$_sessionName \\(Mage_Customer_Model_Session\\) does not accept default value of type string\\.$#"
count: 1
- path: ../app/code/core/Mage/Oauth/controllers/Customer/TokenController.php
+ path: app/code/core/Mage/Oauth/controllers/Customer/TokenController.php
-
message: "#^Return type \\(void\\) of method Mage_Oauth_InitiateController\\:\\:preDispatch\\(\\) should be compatible with return type \\(\\$this\\(Mage_Core_Controller_Front_Action\\)\\) of method Mage_Core_Controller_Front_Action\\:\\:preDispatch\\(\\)$#"
count: 1
- path: ../app/code/core/Mage/Oauth/controllers/InitiateController.php
+ path: app/code/core/Mage/Oauth/controllers/InitiateController.php
-
message: "#^Return type \\(void\\) of method Mage_Oauth_TokenController\\:\\:preDispatch\\(\\) should be compatible with return type \\(\\$this\\(Mage_Core_Controller_Front_Action\\)\\) of method Mage_Core_Controller_Front_Action\\:\\:preDispatch\\(\\)$#"
count: 1
- path: ../app/code/core/Mage/Oauth/controllers/TokenController.php
+ path: app/code/core/Mage/Oauth/controllers/TokenController.php
-
message: "#^Negated boolean expression is always true\\.$#"
count: 1
- path: ../app/code/core/Mage/Page/Block/Html/Breadcrumbs.php
+ path: app/code/core/Mage/Page/Block/Html/Breadcrumbs.php
-
message: "#^Parameter \\#3 \\$after of method Mage_Page_Block_Html_Breadcrumbs\\:\\:addCrumb\\(\\) expects bool, \\(int\\|string\\) given\\.$#"
count: 1
- path: ../app/code/core/Mage/Page/Block/Html/Breadcrumbs.php
+ path: app/code/core/Mage/Page/Block/Html/Breadcrumbs.php
-
message: "#^Parameter \\#2 \\$before of method Mage_Page_Block_Html_Head\\:\\:_sortItems\\(\\) expects string, bool given\\.$#"
count: 1
- path: ../app/code/core/Mage/Page/Block/Html/Head.php
+ path: app/code/core/Mage/Page/Block/Html/Head.php
-
message: "#^Variable \\$finish might not be defined\\.$#"
count: 1
- path: ../app/code/core/Mage/Page/Block/Html/Pager.php
+ path: app/code/core/Mage/Page/Block/Html/Pager.php
-
message: "#^Variable \\$start might not be defined\\.$#"
count: 1
- path: ../app/code/core/Mage/Page/Block/Html/Pager.php
+ path: app/code/core/Mage/Page/Block/Html/Pager.php
-
message: "#^If condition is always true\\.$#"
count: 1
- path: ../app/code/core/Mage/Page/Block/Html/Topmenu/Renderer.php
+ path: app/code/core/Mage/Page/Block/Html/Topmenu/Renderer.php
-
message: "#^Method Mage_PageCache_Helper_Data\\:\\:getCacheControlInstance\\(\\) should return Mage_PageCache_Model_Control_Interface but returns Mage_Core_Model_Abstract\\.$#"
count: 1
- path: ../app/code/core/Mage/PageCache/Helper/Data.php
+ path: app/code/core/Mage/PageCache/Helper/Data.php
-
message: "#^Parameter \\#2 \\$value of method Mage_Core_Model_Cookie\\:\\:set\\(\\) expects string, int given\\.$#"
count: 1
- path: ../app/code/core/Mage/PageCache/Helper/Data.php
+ path: app/code/core/Mage/PageCache/Helper/Data.php
-
message: "#^Call to an undefined method Mage_Payment_Model_Method_Abstract\\:\\:isPartialAuthorization\\(\\)\\.$#"
count: 1
- path: ../app/code/core/Mage/Paygate/Block/Authorizenet/Form/Cc.php
+ path: app/code/core/Mage/Paygate/Block/Authorizenet/Form/Cc.php
-
message: "#^Parameter \\#2 \\$block of method Mage_Core_Block_Abstract\\:\\:setChild\\(\\) expects Mage_Core_Block_Abstract, string given\\.$#"
count: 2
- path: ../app/code/core/Mage/Paygate/Block/Authorizenet/Form/Cc.php
+ path: app/code/core/Mage/Paygate/Block/Authorizenet/Form/Cc.php
-
message: "#^Property Mage_Payment_Block_Info\\:\\:\\$_paymentSpecificInformation \\(Varien_Object\\) does not accept null\\.$#"
count: 1
- path: ../app/code/core/Mage/Paygate/Block/Authorizenet/Info/Cc.php
+ path: app/code/core/Mage/Paygate/Block/Authorizenet/Info/Cc.php
-
message: "#^Call to function is_null\\(\\) with Mage_Paygate_Model_Authorizenet_Cards will always evaluate to false\\.$#"
count: 1
- path: ../app/code/core/Mage/Paygate/Model/Authorizenet.php
+ path: app/code/core/Mage/Paygate/Model/Authorizenet.php
-
message: "#^Cannot assign new offset to string\\.$#"
count: 1
- path: ../app/code/core/Mage/Paygate/Model/Authorizenet.php
+ path: app/code/core/Mage/Paygate/Model/Authorizenet.php
-
message: "#^If condition is always true\\.$#"
count: 1
- path: ../app/code/core/Mage/Paygate/Model/Authorizenet.php
+ path: app/code/core/Mage/Paygate/Model/Authorizenet.php
-
message: "#^Parameter \\#1 \\$payment of method Mage_Paygate_Model_Authorizenet\\:\\:_addTransaction\\(\\) expects Mage_Sales_Model_Order_Payment, Mage_Payment_Model_Info given\\.$#"
count: 7
- path: ../app/code/core/Mage/Paygate/Model/Authorizenet.php
+ path: app/code/core/Mage/Paygate/Model/Authorizenet.php
-
message: "#^Parameter \\#1 \\$payment of method Mage_Paygate_Model_Authorizenet\\:\\:_processFailureMultitransactionAction\\(\\) expects Mage_Payment_Model_Info, Varien_Object given\\.$#"
count: 1
- path: ../app/code/core/Mage/Paygate/Model/Authorizenet.php
+ path: app/code/core/Mage/Paygate/Model/Authorizenet.php
-
message: "#^Parameter \\#1 \\$payment of method Mage_Paygate_Model_Authorizenet\\:\\:_refundCardTransaction\\(\\) expects Mage_Payment_Model_Info, Varien_Object given\\.$#"
count: 1
- path: ../app/code/core/Mage/Paygate/Model/Authorizenet.php
+ path: app/code/core/Mage/Paygate/Model/Authorizenet.php
-
message: "#^Parameter \\#1 \\$payment of method Mage_Paygate_Model_Authorizenet\\:\\:getCardsStorage\\(\\) expects Mage_Payment_Model_Info\\|null, Varien_Object given\\.$#"
count: 1
- path: ../app/code/core/Mage/Paygate/Model/Authorizenet.php
+ path: app/code/core/Mage/Paygate/Model/Authorizenet.php
-
message: "#^Parameter \\#1 \\$response of method Mage_Paygate_Model_Authorizenet\\:\\:_registerCard\\(\\) expects Mage_Paygate_Model_Authorizenet_Result, Varien_Object given\\.$#"
count: 2
- path: ../app/code/core/Mage/Paygate/Model/Authorizenet.php
+ path: app/code/core/Mage/Paygate/Model/Authorizenet.php
-
message: "#^Parameter \\#2 \\$messages of method Mage_Paygate_Model_Authorizenet\\:\\:_processFailureMultitransactionAction\\(\\) expects string, array\\ given\\.$#"
count: 3
- path: ../app/code/core/Mage/Paygate/Model/Authorizenet.php
+ path: app/code/core/Mage/Paygate/Model/Authorizenet.php
-
message: "#^Parameter \\#2 \\$orderPayment of method Mage_Paygate_Model_Authorizenet\\:\\:_processPartialAuthorizationResponse\\(\\) expects Mage_Sales_Model_Order_Payment, Mage_Payment_Model_Info given\\.$#"
count: 2
- path: ../app/code/core/Mage/Paygate/Model/Authorizenet.php
+ path: app/code/core/Mage/Paygate/Model/Authorizenet.php
-
message: "#^Parameter \\#2 \\$payment of method Mage_Paygate_Model_Authorizenet\\:\\:_registerCard\\(\\) expects Mage_Sales_Model_Order_Payment, Mage_Payment_Model_Info given\\.$#"
count: 2
- path: ../app/code/core/Mage/Paygate/Model/Authorizenet.php
+ path: app/code/core/Mage/Paygate/Model/Authorizenet.php
-
message: "#^Parameter \\#3 \\$lastTransactionId of method Mage_Paygate_Helper_Data\\:\\:getExtendedTransactionMessage\\(\\) expects string, null given\\.$#"
count: 1
- path: ../app/code/core/Mage/Paygate/Model/Authorizenet.php
+ path: app/code/core/Mage/Paygate/Model/Authorizenet.php
-
message: "#^Unreachable statement \\- code above always terminates\\.$#"
count: 1
- path: ../app/code/core/Mage/Paygate/Model/Authorizenet.php
+ path: app/code/core/Mage/Paygate/Model/Authorizenet.php
-
message: "#^Variable \\$defaultExceptionMessage might not be defined\\.$#"
count: 2
- path: ../app/code/core/Mage/Paygate/Model/Authorizenet.php
+ path: app/code/core/Mage/Paygate/Model/Authorizenet.php
-
message: "#^Variable \\$newTransactionType might not be defined\\.$#"
count: 3
- path: ../app/code/core/Mage/Paygate/Model/Authorizenet.php
+ path: app/code/core/Mage/Paygate/Model/Authorizenet.php
-
message: "#^Negated boolean expression is always false\\.$#"
count: 1
- path: ../app/code/core/Mage/Paygate/Model/Authorizenet/Cards.php
+ path: app/code/core/Mage/Paygate/Model/Authorizenet/Cards.php
-
message: "#^Parameter \\#1 \\$as_float of function microtime expects bool, int given\\.$#"
count: 1
- path: ../app/code/core/Mage/Paygate/Model/Authorizenet/Cards.php
+ path: app/code/core/Mage/Paygate/Model/Authorizenet/Cards.php
-
message: "#^Call to an undefined method Mage_Payment_Model_Method_Abstract\\:\\:cancelPartialAuthorization\\(\\)\\.$#"
count: 1
- path: ../app/code/core/Mage/Paygate/controllers/Adminhtml/Paygate/Authorizenet/PaymentController.php
+ path: app/code/core/Mage/Paygate/controllers/Adminhtml/Paygate/Authorizenet/PaymentController.php
-
message: "#^Call to an undefined method Mage_Payment_Model_Method_Abstract\\:\\:cancelPartialAuthorization\\(\\)\\.$#"
count: 1
- path: ../app/code/core/Mage/Paygate/controllers/Authorizenet/PaymentController.php
+ path: app/code/core/Mage/Paygate/controllers/Authorizenet/PaymentController.php
-
message: "#^Negated boolean expression is always false\\.$#"
count: 1
- path: ../app/code/core/Mage/Payment/Block/Catalog/Product/View/Profile.php
+ path: app/code/core/Mage/Payment/Block/Catalog/Product/View/Profile.php
-
message: "#^Property Mage_Core_Block_Template\\:\\:\\$_template \\(string\\) does not accept null\\.$#"
count: 1
- path: ../app/code/core/Mage/Payment/Block/Catalog/Product/View/Profile.php
+ path: app/code/core/Mage/Payment/Block/Catalog/Product/View/Profile.php
-
message: "#^Property Mage_Payment_Block_Catalog_Product_View_Profile\\:\\:\\$_profile \\(Mage_Payment_Model_Recurring_Profile\\) does not accept default value of type false\\.$#"
count: 1
- path: ../app/code/core/Mage/Payment/Block/Catalog/Product/View/Profile.php
+ path: app/code/core/Mage/Payment/Block/Catalog/Product/View/Profile.php
-
message: "#^Call to function is_null\\(\\) with string will always evaluate to false\\.$#"
count: 1
- path: ../app/code/core/Mage/Payment/Block/Form/Banktransfer.php
+ path: app/code/core/Mage/Payment/Block/Form/Banktransfer.php
-
message: "#^Call to function is_null\\(\\) with string will always evaluate to false\\.$#"
count: 1
- path: ../app/code/core/Mage/Payment/Block/Form/Cashondelivery.php
+ path: app/code/core/Mage/Payment/Block/Form/Cashondelivery.php
-
message: "#^If condition is always true\\.$#"
count: 2
- path: ../app/code/core/Mage/Payment/Block/Form/Cc.php
+ path: app/code/core/Mage/Payment/Block/Form/Cc.php
-
message: "#^Left side of && is always true\\.$#"
count: 1
- path: ../app/code/core/Mage/Payment/Block/Form/Cc.php
+ path: app/code/core/Mage/Payment/Block/Form/Cc.php
-
message: "#^Unreachable statement \\- code above always terminates\\.$#"
count: 1
- path: ../app/code/core/Mage/Payment/Block/Form/Cc.php
+ path: app/code/core/Mage/Payment/Block/Form/Cc.php
-
message: "#^Negated boolean expression is always false\\.$#"
count: 2
- path: ../app/code/core/Mage/Payment/Block/Info.php
+ path: app/code/core/Mage/Payment/Block/Info.php
-
message: "#^Call to function is_null\\(\\) with string will always evaluate to false\\.$#"
count: 1
- path: ../app/code/core/Mage/Payment/Block/Info/Banktransfer.php
+ path: app/code/core/Mage/Payment/Block/Info/Banktransfer.php
-
message: "#^Parameter \\#1 \\$message of method Exception\\:\\:__construct\\(\\) expects string, null given\\.$#"
count: 1
- path: ../app/code/core/Mage/Payment/Exception.php
+ path: app/code/core/Mage/Payment/Exception.php
-
message: "#^Call to an undefined method Mage_Core_Model_Abstract\\:\\:isAvailable\\(\\)\\.$#"
count: 1
- path: ../app/code/core/Mage/Payment/Helper/Data.php
+ path: app/code/core/Mage/Payment/Helper/Data.php
-
message: "#^If condition is always true\\.$#"
count: 2
- path: ../app/code/core/Mage/Payment/Helper/Data.php
+ path: app/code/core/Mage/Payment/Helper/Data.php
-
message: "#^Method Mage_Payment_Helper_Data\\:\\:getStoreMethods\\(\\) should return array\\ but returns array\\\\.$#"
count: 1
- path: ../app/code/core/Mage/Payment/Helper/Data.php
+ path: app/code/core/Mage/Payment/Helper/Data.php
-
message: "#^Call to function is_null\\(\\) with Mage_Payment_Model_Method_Abstract will always evaluate to false\\.$#"
count: 2
- path: ../app/code/core/Mage/Payment/Model/Billing/AgreementAbstract.php
+ path: app/code/core/Mage/Payment/Model/Billing/AgreementAbstract.php
-
message: "#^If condition is always true\\.$#"
count: 1
- path: ../app/code/core/Mage/Payment/Model/Billing/AgreementAbstract.php
+ path: app/code/core/Mage/Payment/Model/Billing/AgreementAbstract.php
-
message: "#^Method Mage_Payment_Model_Config\\:\\:_getMethod\\(\\) should return Mage_Payment_Model_Method_Abstract\\|false but returns Mage_Core_Model_Abstract\\.$#"
count: 1
- path: ../app/code/core/Mage/Payment/Model/Config.php
+ path: app/code/core/Mage/Payment/Model/Config.php
-
message: "#^Comparison operation \"\\<\" between \\(array\\|float\\|int\\) and 0\\.0001 results in an error\\.$#"
count: 1
- path: ../app/code/core/Mage/Payment/Model/Method/Abstract.php
+ path: app/code/core/Mage/Payment/Model/Method/Abstract.php
-
message: "#^Parameter \\#2 \\$arguments of static method Mage\\:\\:getModel\\(\\) expects array\\|object, string given\\.$#"
count: 1
- path: ../app/code/core/Mage/Payment/Model/Method/Abstract.php
+ path: app/code/core/Mage/Payment/Model/Method/Abstract.php
-
message: "#^Binary operation \"\\*\\=\" between string and 2 results in an error\\.$#"
count: 1
- path: ../app/code/core/Mage/Payment/Model/Method/Cc.php
+ path: app/code/core/Mage/Payment/Model/Method/Cc.php
-
message: "#^Left side of && is always true\\.$#"
count: 1
- path: ../app/code/core/Mage/Payment/Model/Method/Cc.php
+ path: app/code/core/Mage/Payment/Model/Method/Cc.php
-
message: "#^If condition is always true\\.$#"
count: 2
- path: ../app/code/core/Mage/Payment/Model/Recurring/Profile.php
+ path: app/code/core/Mage/Payment/Model/Recurring/Profile.php
-
message: "#^Method Mage_Payment_Model_Recurring_Profile\\:\\:exportStartDatetime\\(\\) should return string\\|Zend_Date but empty return statement found\\.$#"
count: 1
- path: ../app/code/core/Mage/Payment/Model/Recurring/Profile.php
+ path: app/code/core/Mage/Payment/Model/Recurring/Profile.php
-
message: "#^Negated boolean expression is always false\\.$#"
count: 6
- path: ../app/code/core/Mage/Payment/Model/Recurring/Profile.php
+ path: app/code/core/Mage/Payment/Model/Recurring/Profile.php
-
message: "#^Parameter \\#1 \\$message of static method Mage\\:\\:throwException\\(\\) expects string, array given\\.$#"
count: 1
- path: ../app/code/core/Mage/Payment/Model/Recurring/Profile.php
+ path: app/code/core/Mage/Payment/Model/Recurring/Profile.php
-
message: "#^Result of \\|\\| is always false\\.$#"
count: 1
- path: ../app/code/core/Mage/Payment/Model/Recurring/Profile.php
+ path: app/code/core/Mage/Payment/Model/Recurring/Profile.php
-
message: "#^Property Mage_Paypal_Block_Adminhtml_System_Config_Field_Country\\:\\:\\$_defaultCountry \\(string\\) does not accept null\\.$#"
count: 1
- path: ../app/code/core/Mage/Paypal/Block/Adminhtml/System/Config/Field/Country.php
+ path: app/code/core/Mage/Paypal/Block/Adminhtml/System/Config/Field/Country.php
-
message: "#^Parameter \\#2 \\$value of method Mage_Core_Model_Config\\:\\:saveConfig\\(\\) expects string, int given\\.$#"
count: 1
- path: ../app/code/core/Mage/Paypal/Block/Adminhtml/System/Config/Fieldset/Deprecated.php
+ path: app/code/core/Mage/Paypal/Block/Adminhtml/System/Config/Fieldset/Deprecated.php
-
message: "#^Method Mage_Paypal_Block_Adminhtml_System_Config_Fieldset_Group\\:\\:_getCollapseState\\(\\) should return bool but returns int\\.$#"
count: 1
- path: ../app/code/core/Mage/Paypal/Block/Adminhtml/System/Config/Fieldset/Group.php
+ path: app/code/core/Mage/Paypal/Block/Adminhtml/System/Config/Fieldset/Group.php
-
message: "#^Method Mage_Paypal_Block_Express_Review\\:\\:_formatPrice\\(\\) should return string but returns float\\.$#"
count: 1
- path: ../app/code/core/Mage/Paypal/Block/Express/Review.php
+ path: app/code/core/Mage/Paypal/Block/Express/Review.php
-
message: "#^Method Mage_Paypal_Block_Express_Review\\:\\:_getShippingPrice\\(\\) should return bool but returns float\\.$#"
count: 1
- path: ../app/code/core/Mage/Paypal/Block/Express/Review.php
+ path: app/code/core/Mage/Paypal/Block/Express/Review.php
-
message: "#^Right side of && is always true\\.$#"
count: 1
- path: ../app/code/core/Mage/Paypal/Block/Express/Review.php
+ path: app/code/core/Mage/Paypal/Block/Express/Review.php
-
message: "#^Call to function is_null\\(\\) with Mage_Sales_Model_Quote_Address will always evaluate to false\\.$#"
count: 1
- path: ../app/code/core/Mage/Paypal/Block/Express/Review/Billing.php
+ path: app/code/core/Mage/Paypal/Block/Express/Review/Billing.php
-
message: "#^Right side of \\|\\| is always true\\.$#"
count: 1
- path: ../app/code/core/Mage/Paypal/Block/Express/Review/Billing.php
+ path: app/code/core/Mage/Paypal/Block/Express/Review/Billing.php
-
message: "#^Call to function is_null\\(\\) with Mage_Sales_Model_Quote_Address will always evaluate to false\\.$#"
count: 1
- path: ../app/code/core/Mage/Paypal/Block/Express/Review/Shipping.php
+ path: app/code/core/Mage/Paypal/Block/Express/Review/Shipping.php
-
message: "#^Right side of \\|\\| is always true\\.$#"
count: 1
- path: ../app/code/core/Mage/Paypal/Block/Express/Review/Shipping.php
+ path: app/code/core/Mage/Paypal/Block/Express/Review/Shipping.php
-
message: "#^Return type \\(false\\) of method Mage_Paypal_Block_Hosted_Pro_Info\\:\\:getCcTypeName\\(\\) should be compatible with return type \\(string\\|null\\) of method Mage_Paypal_Block_Payment_Info\\:\\:getCcTypeName\\(\\)$#"
count: 1
- path: ../app/code/core/Mage/Paypal/Block/Hosted/Pro/Info.php
+ path: app/code/core/Mage/Paypal/Block/Hosted/Pro/Info.php
-
message: "#^Method Mage_Paypal_Block_Iframe\\:\\:_getBlock\\(\\) should return \\$this\\(Mage_Paypal_Block_Iframe\\) but returns Mage_Payment_Block_Form\\.$#"
count: 1
- path: ../app/code/core/Mage/Paypal/Block/Iframe.php
+ path: app/code/core/Mage/Paypal/Block/Iframe.php
-
message: "#^Negated boolean expression is always false\\.$#"
count: 2
- path: ../app/code/core/Mage/Paypal/Block/Iframe.php
+ path: app/code/core/Mage/Paypal/Block/Iframe.php
-
message: "#^Property Mage_Paypal_Block_Iframe\\:\\:\\$_block \\(Mage_Payment_Block_Form\\) does not accept Mage_Core_Block_Abstract\\|false\\.$#"
count: 1
- path: ../app/code/core/Mage/Paypal/Block/Iframe.php
+ path: app/code/core/Mage/Paypal/Block/Iframe.php
-
message: "#^Return type \\(false\\) of method Mage_Paypal_Block_Payflow_Link_Info\\:\\:getCcTypeName\\(\\) should be compatible with return type \\(string\\|null\\) of method Mage_Paypal_Block_Payment_Info\\:\\:getCcTypeName\\(\\)$#"
count: 1
- path: ../app/code/core/Mage/Paypal/Block/Payflow/Link/Info.php
+ path: app/code/core/Mage/Paypal/Block/Payflow/Link/Info.php
-
message: "#^If condition is always true\\.$#"
count: 1
- path: ../app/code/core/Mage/Paypal/Controller/Express/Abstract.php
+ path: app/code/core/Mage/Paypal/Controller/Express/Abstract.php
-
message: "#^Left side of && is always true\\.$#"
count: 2
- path: ../app/code/core/Mage/Paypal/Controller/Express/Abstract.php
+ path: app/code/core/Mage/Paypal/Controller/Express/Abstract.php
-
message: "#^Method Mage_Paypal_Controller_Express_Abstract\\:\\:_initCheckout\\(\\) should return Mage_Paypal_Model_Express_Checkout but returns Mage_Core_Model_Abstract\\.$#"
count: 1
- path: ../app/code/core/Mage/Paypal/Controller/Express/Abstract.php
+ path: app/code/core/Mage/Paypal/Controller/Express/Abstract.php
-
message: "#^Method Mage_Paypal_Controller_Express_Abstract\\:\\:_initToken\\(\\) should return Mage_Paypal_ExpressController\\|string but returns \\$this\\(Mage_Paypal_Controller_Express_Abstract\\)\\.$#"
count: 1
- path: ../app/code/core/Mage/Paypal/Controller/Express/Abstract.php
+ path: app/code/core/Mage/Paypal/Controller/Express/Abstract.php
-
message: "#^Negated boolean expression is always false\\.$#"
count: 1
- path: ../app/code/core/Mage/Paypal/Controller/Express/Abstract.php
+ path: app/code/core/Mage/Paypal/Controller/Express/Abstract.php
-
message: "#^Parameter \\#1 \\$setToken of method Mage_Paypal_Controller_Express_Abstract\\:\\:_initToken\\(\\) expects string\\|null, false given\\.$#"
count: 2
- path: ../app/code/core/Mage/Paypal/Controller/Express/Abstract.php
+ path: app/code/core/Mage/Paypal/Controller/Express/Abstract.php
-
message: "#^Parameter \\#3 \\$value of method Mage_Core_Controller_Varien_Action\\:\\:setFlag\\(\\) expects int\\|string, true given\\.$#"
count: 1
- path: ../app/code/core/Mage/Paypal/Controller/Express/Abstract.php
+ path: app/code/core/Mage/Paypal/Controller/Express/Abstract.php
-
message: "#^Property Mage_Paypal_Controller_Express_Abstract\\:\\:\\$_checkout \\(Mage_Paypal_Model_Express_Checkout\\) does not accept Mage_Core_Model_Abstract\\.$#"
count: 1
- path: ../app/code/core/Mage/Paypal/Controller/Express/Abstract.php
+ path: app/code/core/Mage/Paypal/Controller/Express/Abstract.php
-
message: "#^Property Mage_Paypal_Controller_Express_Abstract\\:\\:\\$_config \\(Mage_Paypal_Model_Config\\) does not accept Mage_Core_Model_Abstract\\|false\\.$#"
count: 1
- path: ../app/code/core/Mage/Paypal/Controller/Express/Abstract.php
+ path: app/code/core/Mage/Paypal/Controller/Express/Abstract.php
-
message: "#^Property Mage_Paypal_Controller_Express_Abstract\\:\\:\\$_quote \\(Mage_Sales_Model_Quote\\) does not accept default value of type false\\.$#"
count: 1
- path: ../app/code/core/Mage/Paypal/Controller/Express/Abstract.php
+ path: app/code/core/Mage/Paypal/Controller/Express/Abstract.php
-
message: "#^Variable \\$isAjax might not be defined\\.$#"
count: 1
- path: ../app/code/core/Mage/Paypal/Controller/Express/Abstract.php
+ path: app/code/core/Mage/Paypal/Controller/Express/Abstract.php
-
message: "#^If condition is always true\\.$#"
count: 1
- path: ../app/code/core/Mage/Paypal/Helper/Hss.php
+ path: app/code/core/Mage/Paypal/Helper/Hss.php
-
message: "#^Left side of && is always true\\.$#"
count: 1
- path: ../app/code/core/Mage/Paypal/Helper/Hss.php
+ path: app/code/core/Mage/Paypal/Helper/Hss.php
-
message: "#^Method Mage_Paypal_Model_Api_Abstract\\:\\:_exportLineItems\\(\\) should return bool but empty return statement found\\.$#"
count: 2
- path: ../app/code/core/Mage/Paypal/Model/Api/Abstract.php
+ path: app/code/core/Mage/Paypal/Model/Api/Abstract.php
-
message: "#^Negated boolean expression is always false\\.$#"
count: 1
- path: ../app/code/core/Mage/Paypal/Model/Api/Abstract.php
+ path: app/code/core/Mage/Paypal/Model/Api/Abstract.php
-
message: "#^Parameter \\#2 \\$arguments of static method Mage\\:\\:getModel\\(\\) expects array\\|object, string given\\.$#"
count: 1
- path: ../app/code/core/Mage/Paypal/Model/Api/Abstract.php
+ path: app/code/core/Mage/Paypal/Model/Api/Abstract.php
-
message: "#^Call to an undefined method Mage_Paypal_Model_Api_Nvp\\:\\:_export\\(\\)\\.$#"
count: 1
- path: ../app/code/core/Mage/Paypal/Model/Api/Nvp.php
+ path: app/code/core/Mage/Paypal/Model/Api/Nvp.php
-
message: "#^Call to an undefined method Mage_Paypal_Model_Api_Nvp\\:\\:_import\\(\\)\\.$#"
count: 1
- path: ../app/code/core/Mage/Paypal/Model/Api/Nvp.php
+ path: app/code/core/Mage/Paypal/Model/Api/Nvp.php
-
message: "#^Method Mage_Paypal_Model_Api_Nvp\\:\\:_exportLineItems\\(\\) should return true\\|null but empty return statement found\\.$#"
count: 1
- path: ../app/code/core/Mage/Paypal/Model/Api/Nvp.php
+ path: app/code/core/Mage/Paypal/Model/Api/Nvp.php
-
message: "#^Method Mage_Paypal_Model_Api_Nvp\\:\\:_exportLineItems\\(\\) should return true\\|null but returns bool\\.$#"
count: 1
- path: ../app/code/core/Mage/Paypal/Model/Api/Nvp.php
+ path: app/code/core/Mage/Paypal/Model/Api/Nvp.php
-
message: "#^Negated boolean expression is always false\\.$#"
count: 1
- path: ../app/code/core/Mage/Paypal/Model/Api/Nvp.php
+ path: app/code/core/Mage/Paypal/Model/Api/Nvp.php
-
message: "#^Method Mage_Paypal_Model_Api_Standard\\:\\:_exportLineItems\\(\\) should return true\\|null but empty return statement found\\.$#"
count: 1
- path: ../app/code/core/Mage/Paypal/Model/Api/Standard.php
+ path: app/code/core/Mage/Paypal/Model/Api/Standard.php
-
message: "#^Method Mage_Paypal_Model_Api_Standard\\:\\:_exportLineItems\\(\\) should return true\\|null but returns bool\\.$#"
count: 1
- path: ../app/code/core/Mage/Paypal/Model/Api/Standard.php
+ path: app/code/core/Mage/Paypal/Model/Api/Standard.php
-
message: "#^Negated boolean expression is always false\\.$#"
count: 1
- path: ../app/code/core/Mage/Paypal/Model/Api/Standard.php
+ path: app/code/core/Mage/Paypal/Model/Api/Standard.php
-
message: "#^Call to an undefined method Varien_Object\\:\\:isNominal\\(\\)\\.$#"
count: 1
- path: ../app/code/core/Mage/Paypal/Model/Cart.php
+ path: app/code/core/Mage/Paypal/Model/Cart.php
-
message: "#^Empty array passed to foreach\\.$#"
count: 1
- path: ../app/code/core/Mage/Paypal/Model/Cart.php
+ path: app/code/core/Mage/Paypal/Model/Cart.php
-
message: "#^Left side of && is always true\\.$#"
count: 1
- path: ../app/code/core/Mage/Paypal/Model/Cart.php
+ path: app/code/core/Mage/Paypal/Model/Cart.php
-
message: "#^Call to function is_null\\(\\) with string will always evaluate to false\\.$#"
count: 1
- path: ../app/code/core/Mage/Paypal/Model/Config.php
+ path: app/code/core/Mage/Paypal/Model/Config.php
-
message: "#^Negated boolean expression is always true\\.$#"
count: 1
- path: ../app/code/core/Mage/Paypal/Model/Config.php
+ path: app/code/core/Mage/Paypal/Model/Config.php
-
message: "#^Property Mage_Paypal_Model_Direct\\:\\:\\$_pro \\(Mage_Paypal_Model_Pro\\) does not accept Mage_Core_Model_Abstract\\|false\\.$#"
count: 1
- path: ../app/code/core/Mage/Paypal/Model/Direct.php
+ path: app/code/core/Mage/Paypal/Model/Direct.php
-
message: "#^Call to an undefined method Mage_Payment_Model_Info\\:\\:lookupTransaction\\(\\)\\.$#"
count: 2
- path: ../app/code/core/Mage/Paypal/Model/Express.php
+ path: app/code/core/Mage/Paypal/Model/Express.php
-
message: "#^If condition is always false\\.$#"
count: 1
- path: ../app/code/core/Mage/Paypal/Model/Express.php
+ path: app/code/core/Mage/Paypal/Model/Express.php
-
message: "#^Method Mage_Paypal_Model_Express\\:\\:assignData\\(\\) should return Mage_Payment_Model_Info but returns \\$this\\(Mage_Paypal_Model_Express\\)\\.$#"
count: 1
- path: ../app/code/core/Mage/Paypal/Model/Express.php
+ path: app/code/core/Mage/Paypal/Model/Express.php
-
message: "#^Parameter \\#1 \\$amount of method Mage_Paypal_Model_Express\\:\\:_callDoAuthorize\\(\\) expects int, float given\\.$#"
count: 2
- path: ../app/code/core/Mage/Paypal/Model/Express.php
+ path: app/code/core/Mage/Paypal/Model/Express.php
-
message: "#^Parameter \\#1 \\$datetime of class DateTime constructor expects string, null given\\.$#"
count: 1
- path: ../app/code/core/Mage/Paypal/Model/Express.php
+ path: app/code/core/Mage/Paypal/Model/Express.php
-
message: "#^Parameter \\#1 \\$txnId of method Mage_Sales_Model_Order_Payment\\:\\:lookupTransaction\\(\\) expects string, false given\\.$#"
count: 2
- path: ../app/code/core/Mage/Paypal/Model/Express.php
+ path: app/code/core/Mage/Paypal/Model/Express.php
-
message: "#^Property Mage_Paypal_Model_Express\\:\\:\\$_pro \\(Mage_Paypal_Model_Pro\\) does not accept Mage_Core_Model_Abstract\\|false\\.$#"
count: 1
- path: ../app/code/core/Mage/Paypal/Model/Express.php
+ path: app/code/core/Mage/Paypal/Model/Express.php
-
message: "#^Return type \\(Mage_Payment_Model_Info\\) of method Mage_Paypal_Model_Express\\:\\:assignData\\(\\) should be compatible with return type \\(\\$this\\(Mage_Payment_Model_Method_Abstract\\)\\) of method Mage_Payment_Model_Method_Abstract\\:\\:assignData\\(\\)$#"
count: 1
- path: ../app/code/core/Mage/Paypal/Model/Express.php
+ path: app/code/core/Mage/Paypal/Model/Express.php
-
message: "#^Call to function is_null\\(\\) with int\\|string will always evaluate to false\\.$#"
count: 1
- path: ../app/code/core/Mage/Paypal/Model/Express/Checkout.php
+ path: app/code/core/Mage/Paypal/Model/Express/Checkout.php
-
message: "#^Cannot call method getData\\(\\) on array\\.$#"
count: 2
- path: ../app/code/core/Mage/Paypal/Model/Express/Checkout.php
+ path: app/code/core/Mage/Paypal/Model/Express/Checkout.php
-
message: "#^Cannot call method getExportedKeys\\(\\) on array\\.$#"
count: 2
- path: ../app/code/core/Mage/Paypal/Model/Express/Checkout.php
+ path: app/code/core/Mage/Paypal/Model/Express/Checkout.php
-
message: "#^If condition is always true\\.$#"
count: 1
- path: ../app/code/core/Mage/Paypal/Model/Express/Checkout.php
+ path: app/code/core/Mage/Paypal/Model/Express/Checkout.php
-
message: "#^Left side of && is always true\\.$#"
count: 1
- path: ../app/code/core/Mage/Paypal/Model/Express/Checkout.php
+ path: app/code/core/Mage/Paypal/Model/Express/Checkout.php
-
message: "#^Negated boolean expression is always false\\.$#"
count: 1
- path: ../app/code/core/Mage/Paypal/Model/Express/Checkout.php
+ path: app/code/core/Mage/Paypal/Model/Express/Checkout.php
-
message: "#^Parameter \\#1 \\$message of static method Mage\\:\\:throwException\\(\\) expects string, array given\\.$#"
count: 1
- path: ../app/code/core/Mage/Paypal/Model/Express/Checkout.php
+ path: app/code/core/Mage/Paypal/Model/Express/Checkout.php
-
message: "#^Parameter \\#2 \\$arguments of static method Mage\\:\\:getModel\\(\\) expects array\\|object, string given\\.$#"
count: 1
- path: ../app/code/core/Mage/Paypal/Model/Express/Checkout.php
+ path: app/code/core/Mage/Paypal/Model/Express/Checkout.php
-
message: "#^Parameter \\#3 \\$storeId of method Mage_Customer_Model_Customer\\:\\:sendNewAccountEmail\\(\\) expects string, int given\\.$#"
count: 2
- path: ../app/code/core/Mage/Paypal/Model/Express/Checkout.php
+ path: app/code/core/Mage/Paypal/Model/Express/Checkout.php
-
message: "#^Right side of && is always true\\.$#"
count: 2
- path: ../app/code/core/Mage/Paypal/Model/Express/Checkout.php
+ path: app/code/core/Mage/Paypal/Model/Express/Checkout.php
-
message: "#^Variable \\$address might not be defined\\.$#"
count: 1
- path: ../app/code/core/Mage/Paypal/Model/Express/Checkout.php
+ path: app/code/core/Mage/Paypal/Model/Express/Checkout.php
-
message: "#^Variable \\$shippingAddress might not be defined\\.$#"
count: 1
- path: ../app/code/core/Mage/Paypal/Model/Express/Checkout.php
+ path: app/code/core/Mage/Paypal/Model/Express/Checkout.php
-
message: "#^Method Mage_Paypal_Model_Hostedpro\\:\\:initialize\\(\\) should return \\$this\\(Mage_Paypal_Model_Hostedpro\\) but return statement is missing\\.$#"
count: 1
- path: ../app/code/core/Mage/Paypal/Model/Hostedpro.php
+ path: app/code/core/Mage/Paypal/Model/Hostedpro.php
-
message: "#^Return type \\(bool\\) of method Mage_Paypal_Model_Hostedpro\\:\\:getAllowedCcTypes\\(\\) should be compatible with return type \\(string\\) of method Mage_Paypal_Model_Direct\\:\\:getAllowedCcTypes\\(\\)$#"
count: 1
- path: ../app/code/core/Mage/Paypal/Model/Hostedpro.php
+ path: app/code/core/Mage/Paypal/Model/Hostedpro.php
-
message: "#^Return type \\(bool\\) of method Mage_Paypal_Model_Hostedpro\\:\\:validate\\(\\) should be compatible with return type \\(\\$this\\(Mage_Payment_Model_Method_Cc\\)\\) of method Mage_Payment_Model_Method_Cc\\:\\:validate\\(\\)$#"
count: 1
- path: ../app/code/core/Mage/Paypal/Model/Hostedpro.php
+ path: app/code/core/Mage/Paypal/Model/Hostedpro.php
-
message: "#^Binary operation \"\\-\" between array\\|string and array\\|string results in an error\\.$#"
count: 1
- path: ../app/code/core/Mage/Paypal/Model/Ipn.php
+ path: app/code/core/Mage/Paypal/Model/Ipn.php
-
message: "#^Left side of && is always true\\.$#"
count: 1
- path: ../app/code/core/Mage/Paypal/Model/Ipn.php
+ path: app/code/core/Mage/Paypal/Model/Ipn.php
-
message: "#^Parameter \\#1 \\$amount of method Mage_Sales_Model_Order_Payment\\:\\:registerCaptureNotification\\(\\) expects float, array\\|string given\\.$#"
count: 1
- path: ../app/code/core/Mage/Paypal/Model/Ipn.php
+ path: app/code/core/Mage/Paypal/Model/Ipn.php
-
message: "#^Parameter \\#2 \\$arguments of static method Mage\\:\\:getModel\\(\\) expects array\\|object, string given\\.$#"
count: 1
- path: ../app/code/core/Mage/Paypal/Model/Ipn.php
+ path: app/code/core/Mage/Paypal/Model/Ipn.php
-
message: "#^Parameter \\#2 \\$url of method Zend_Http_Client_Adapter_Interface\\:\\:write\\(\\) expects Zend_Uri_Http, string given\\.$#"
count: 1
- path: ../app/code/core/Mage/Paypal/Model/Ipn.php
+ path: app/code/core/Mage/Paypal/Model/Ipn.php
-
message: "#^Property Mage_Paypal_Model_Ipn\\:\\:\\$_order \\(Mage_Sales_Model_Order\\) does not accept null\\.$#"
count: 1
- path: ../app/code/core/Mage/Paypal/Model/Ipn.php
+ path: app/code/core/Mage/Paypal/Model/Ipn.php
-
message: "#^Property Mage_Paypal_Model_Ipn\\:\\:\\$_order \\(Mage_Sales_Model_Order\\) in empty\\(\\) is not falsy\\.$#"
count: 1
- path: ../app/code/core/Mage/Paypal/Model/Ipn.php
+ path: app/code/core/Mage/Paypal/Model/Ipn.php
-
message: "#^Property Mage_Paypal_Model_Ipn\\:\\:\\$_recurringProfile \\(Mage_Sales_Model_Recurring_Profile\\) does not accept null\\.$#"
count: 1
- path: ../app/code/core/Mage/Paypal/Model/Ipn.php
+ path: app/code/core/Mage/Paypal/Model/Ipn.php
-
message: "#^Property Mage_Paypal_Model_Ipn\\:\\:\\$_recurringProfile \\(Mage_Sales_Model_Recurring_Profile\\) in empty\\(\\) is not falsy\\.$#"
count: 1
- path: ../app/code/core/Mage/Paypal/Model/Ipn.php
+ path: app/code/core/Mage/Paypal/Model/Ipn.php
-
message: "#^Parameter \\#1 \\$payment of method Mage_Paypal_Model_Method_Agreement\\:\\:_placeOrder\\(\\) expects Mage_Sales_Model_Order_Payment, Varien_Object given\\.$#"
count: 1
- path: ../app/code/core/Mage/Paypal/Model/Method/Agreement.php
+ path: app/code/core/Mage/Paypal/Model/Method/Agreement.php
-
message: "#^Parameter \\#1 \\$spec of method Zend_Controller_Response_Abstract\\:\\:getBody\\(\\) expects bool, string given\\.$#"
count: 1
- path: ../app/code/core/Mage/Paypal/Model/Observer.php
+ path: app/code/core/Mage/Paypal/Model/Observer.php
-
message: "#^Parameter \\#2 \\$return of function print_r expects bool, int given\\.$#"
count: 1
- path: ../app/code/core/Mage/Paypal/Model/Payflow/Request.php
+ path: app/code/core/Mage/Paypal/Model/Payflow/Request.php
-
message: "#^Negated boolean expression is always false\\.$#"
count: 1
- path: ../app/code/core/Mage/Paypal/Model/Payflowlink.php
+ path: app/code/core/Mage/Paypal/Model/Payflowlink.php
-
message: "#^Parameter \\#1 \\$payment of method Mage_Paypal_Model_Payflowlink\\:\\:_buildTokenRequest\\(\\) expects Mage_Sales_Model_Order_Payment, Mage_Payment_Model_Info given\\.$#"
count: 1
- path: ../app/code/core/Mage/Paypal/Model/Payflowlink.php
+ path: app/code/core/Mage/Paypal/Model/Payflowlink.php
-
message: "#^Parameter \\#1 \\$payment of method Mage_Paypal_Model_Payflowlink\\:\\:_generateSecureSilentPostHash\\(\\) expects Mage_Sales_Model_Order_Payment, Mage_Payment_Model_Info given\\.$#"
count: 1
- path: ../app/code/core/Mage/Paypal/Model/Payflowlink.php
+ path: app/code/core/Mage/Paypal/Model/Payflowlink.php
-
message: "#^Parameter \\#2 \\$array of function implode expects array\\|null, string given\\.$#"
count: 2
- path: ../app/code/core/Mage/Paypal/Model/Payflowlink.php
+ path: app/code/core/Mage/Paypal/Model/Payflowlink.php
-
message: "#^Parameter \\#2 \\$payment of method Mage_Paypal_Model_Payflowlink\\:\\:_processTokenErrors\\(\\) expects Mage_Sales_Model_Order_Payment, Mage_Payment_Model_Info given\\.$#"
count: 1
- path: ../app/code/core/Mage/Paypal/Model/Payflowlink.php
+ path: app/code/core/Mage/Paypal/Model/Payflowlink.php
-
message: "#^Return type \\(bool\\) of method Mage_Paypal_Model_Payflowlink\\:\\:validate\\(\\) should be compatible with return type \\(\\$this\\(Mage_Payment_Model_Method_Cc\\)\\) of method Mage_Payment_Model_Method_Cc\\:\\:validate\\(\\)$#"
count: 1
- path: ../app/code/core/Mage/Paypal/Model/Payflowlink.php
+ path: app/code/core/Mage/Paypal/Model/Payflowlink.php
-
message: "#^Variable \\$order in empty\\(\\) always exists and is not falsy\\.$#"
count: 1
- path: ../app/code/core/Mage/Paypal/Model/Payflowlink.php
+ path: app/code/core/Mage/Paypal/Model/Payflowlink.php
-
message: "#^Parameter \\#1 \\$payment of method Mage_Paypal_Model_Payflowpro\\:\\:_buildBasicRequest\\(\\) expects Mage_Sales_Model_Order_Payment, Mage_Payment_Model_Info given\\.$#"
count: 1
- path: ../app/code/core/Mage/Paypal/Model/Payflowpro.php
+ path: app/code/core/Mage/Paypal/Model/Payflowpro.php
-
message: "#^Parameter \\#1 \\$payment of method Mage_Paypal_Model_Payflowpro\\:\\:void\\(\\) expects Mage_Sales_Model_Order_Payment, Varien_Object given\\.$#"
count: 1
- path: ../app/code/core/Mage/Paypal/Model/Payflowpro.php
+ path: app/code/core/Mage/Paypal/Model/Payflowpro.php
-
message: "#^Parameter \\#2 \\$array of function implode expects array\\|null, string given\\.$#"
count: 2
- path: ../app/code/core/Mage/Paypal/Model/Payflowpro.php
+ path: app/code/core/Mage/Paypal/Model/Payflowpro.php
-
message: "#^Parameter \\#2 \\$storeId of method Mage_Payment_Model_Method_Abstract\\:\\:getConfigData\\(\\) expects int\\|Mage_Core_Model_Store\\|string\\|null, false given\\.$#"
count: 1
- path: ../app/code/core/Mage/Paypal/Model/Payflowpro.php
+ path: app/code/core/Mage/Paypal/Model/Payflowpro.php
-
message: "#^Parameter \\#3 \\$map of static method Varien_Object_Mapper\\:\\:accumulateByMap\\(\\) expects array, string given\\.$#"
count: 1
- path: ../app/code/core/Mage/Paypal/Model/Payflowpro.php
+ path: app/code/core/Mage/Paypal/Model/Payflowpro.php
-
message: "#^Property Mage_Paypal_Model_Payflowpro\\:\\:\\$_centinelFieldMap \\(string\\) does not accept default value of type array\\\\.$#"
count: 1
- path: ../app/code/core/Mage/Paypal/Model/Payflowpro.php
+ path: app/code/core/Mage/Paypal/Model/Payflowpro.php
-
message: "#^Variable \\$order in empty\\(\\) always exists and is not falsy\\.$#"
count: 1
- path: ../app/code/core/Mage/Paypal/Model/Payflowpro.php
+ path: app/code/core/Mage/Paypal/Model/Payflowpro.php
-
message: "#^Method Mage_Paypal_Model_Pro\\:\\:capture\\(\\) should return false\\|null but return statement is missing\\.$#"
count: 1
- path: ../app/code/core/Mage/Paypal/Model/Pro.php
+ path: app/code/core/Mage/Paypal/Model/Pro.php
-
message: "#^Parameter \\#2 \\$payment of method Mage_Paypal_Model_Pro\\:\\:_importCaptureResultToPayment\\(\\) expects Mage_Sales_Model_Order_Payment, Varien_Object given\\.$#"
count: 1
- path: ../app/code/core/Mage/Paypal/Model/Pro.php
+ path: app/code/core/Mage/Paypal/Model/Pro.php
-
message: "#^Parameter \\#2 \\$payment of method Mage_Paypal_Model_Pro\\:\\:_importRefundResultToPayment\\(\\) expects Mage_Sales_Model_Order_Payment, Varien_Object given\\.$#"
count: 1
- path: ../app/code/core/Mage/Paypal/Model/Pro.php
+ path: app/code/core/Mage/Paypal/Model/Pro.php
-
message: "#^Parameter \\#2 \\$to of method Mage_Paypal_Model_Pro\\:\\:importPaymentInfo\\(\\) expects Mage_Payment_Model_Info, Varien_Object given\\.$#"
count: 1
- path: ../app/code/core/Mage/Paypal/Model/Pro.php
+ path: app/code/core/Mage/Paypal/Model/Pro.php
-
message: "#^Property Mage_Paypal_Model_Pro\\:\\:\\$_api \\(Mage_Paypal_Model_Api_Nvp\\) does not accept Mage_Core_Model_Abstract\\|false\\.$#"
count: 1
- path: ../app/code/core/Mage/Paypal/Model/Pro.php
+ path: app/code/core/Mage/Paypal/Model/Pro.php
-
message: "#^Property Mage_Paypal_Model_Pro\\:\\:\\$_api \\(Mage_Paypal_Model_Api_Nvp\\) does not accept null\\.$#"
count: 1
- path: ../app/code/core/Mage/Paypal/Model/Pro.php
+ path: app/code/core/Mage/Paypal/Model/Pro.php
-
message: "#^Property Mage_Paypal_Model_Pro\\:\\:\\$_config \\(Mage_Paypal_Model_Config\\) does not accept Mage_Core_Model_Abstract\\|false\\.$#"
count: 1
- path: ../app/code/core/Mage/Paypal/Model/Pro.php
+ path: app/code/core/Mage/Paypal/Model/Pro.php
-
message: "#^Method Mage_Paypal_Model_Standard\\:\\:initialize\\(\\) should return \\$this\\(Mage_Paypal_Model_Standard\\) but return statement is missing\\.$#"
count: 1
- path: ../app/code/core/Mage/Paypal/Model/Standard.php
+ path: app/code/core/Mage/Paypal/Model/Standard.php
-
message: "#^Method Varien_Data_Collection\\:\\:toOptionArray\\(\\) invoked with 1 parameter, 0 required\\.$#"
count: 1
- path: ../app/code/core/Mage/Paypal/Model/System/Config/Source/BuyerCountry.php
+ path: app/code/core/Mage/Paypal/Model/System/Config/Source/BuyerCountry.php
-
message: "#^Method Varien_Data_Collection\\:\\:toOptionArray\\(\\) invoked with 1 parameter, 0 required\\.$#"
count: 1
- path: ../app/code/core/Mage/Paypal/Model/System/Config/Source/MerchantCountry.php
+ path: app/code/core/Mage/Paypal/Model/System/Config/Source/MerchantCountry.php
-
message: "#^Method Mage_Paypal_HostedproController\\:\\:_getIframeBlock\\(\\) should return Mage_Paypal_Block_Hosted_Pro_Iframe but returns Mage_Core_Block_Abstract\\|false\\.$#"
count: 1
- path: ../app/code/core/Mage/Paypal/controllers/HostedproController.php
+ path: app/code/core/Mage/Paypal/controllers/HostedproController.php
-
message: "#^Left side of && is always true\\.$#"
count: 1
- path: ../app/code/core/Mage/Paypal/controllers/PayflowController.php
+ path: app/code/core/Mage/Paypal/controllers/PayflowController.php
-
message: "#^Method Mage_Paypal_PayflowController\\:\\:_getIframeBlock\\(\\) should return Mage_Paypal_Block_Payflow_Link_Iframe but returns Mage_Core_Block_Abstract\\|false\\.$#"
count: 1
- path: ../app/code/core/Mage/Paypal/controllers/PayflowController.php
+ path: app/code/core/Mage/Paypal/controllers/PayflowController.php
-
message: "#^Left side of && is always true\\.$#"
count: 1
- path: ../app/code/core/Mage/Paypal/controllers/PayflowadvancedController.php
+ path: app/code/core/Mage/Paypal/controllers/PayflowadvancedController.php
-
message: "#^Method Mage_Paypal_PayflowadvancedController\\:\\:_getIframeBlock\\(\\) should return Mage_Paypal_Block_Payflow_Advanced_Iframe but returns Mage_Core_Block_Abstract\\|false\\.$#"
count: 1
- path: ../app/code/core/Mage/Paypal/controllers/PayflowadvancedController.php
+ path: app/code/core/Mage/Paypal/controllers/PayflowadvancedController.php
-
message: "#^Return type \\(void\\) of method Mage_PaypalUk_Model_Pro\\:\\:fetchTransactionInfo\\(\\) should be compatible with return type \\(array\\) of method Mage_Paypal_Model_Pro\\:\\:fetchTransactionInfo\\(\\)$#"
count: 1
- path: ../app/code/core/Mage/PaypalUk/Model/Pro.php
+ path: app/code/core/Mage/PaypalUk/Model/Pro.php
-
message: "#^Parameter \\#1 \\$callback of method Varien_Data_Collection\\:\\:walk\\(\\) expects callable\\(\\)\\: mixed, 'delete' given\\.$#"
count: 2
- path: ../app/code/core/Mage/Persistent/Model/Observer.php
+ path: app/code/core/Mage/Persistent/Model/Observer.php
-
message: "#^Variable \\$key might not be defined\\.$#"
count: 1
- path: ../app/code/core/Mage/Poll/Block/ActivePoll.php
+ path: app/code/core/Mage/Poll/Block/ActivePoll.php
-
message: "#^Variable \\$value might not be defined\\.$#"
count: 1
- path: ../app/code/core/Mage/Poll/Block/ActivePoll.php
+ path: app/code/core/Mage/Poll/Block/ActivePoll.php
-
message: "#^Method Mage_Poll_Model_Poll\\:\\:getPoolId\\(\\) should return int but returns string\\.$#"
count: 1
- path: ../app/code/core/Mage/Poll/Model/Poll.php
+ path: app/code/core/Mage/Poll/Model/Poll.php
-
message: "#^Method Mage_Poll_Model_Poll\\:\\:getRandomId\\(\\) should return string but returns int\\.$#"
count: 1
- path: ../app/code/core/Mage/Poll/Model/Poll.php
+ path: app/code/core/Mage/Poll/Model/Poll.php
-
message: "#^Parameter \\#1 \\$pollId of method Mage_Poll_Model_Poll\\:\\:getCookieName\\(\\) expects int\\|null, string given\\.$#"
count: 1
- path: ../app/code/core/Mage/Poll/Model/Poll.php
+ path: app/code/core/Mage/Poll/Model/Poll.php
-
message: "#^Parameter \\#1 \\$pollId of method Mage_Poll_Model_Poll\\:\\:getPollId\\(\\) expects string\\|null, int\\|null given\\.$#"
count: 4
- path: ../app/code/core/Mage/Poll/Model/Poll.php
+ path: app/code/core/Mage/Poll/Model/Poll.php
-
message: "#^Parameter \\#2 \\$pollId of method Mage_Poll_Model_Resource_Poll\\:\\:getVotedPollIdsByIp\\(\\) expects int\\|false, string given\\.$#"
count: 1
- path: ../app/code/core/Mage/Poll/Model/Poll.php
+ path: app/code/core/Mage/Poll/Model/Poll.php
-
message: "#^Method Mage_Poll_Model_Resource_Poll\\:\\:checkAnswerId\\(\\) should return bool but returns string\\.$#"
count: 1
- path: ../app/code/core/Mage/Poll/Model/Resource/Poll.php
+ path: app/code/core/Mage/Poll/Model/Resource/Poll.php
-
message: "#^Method Mage_Poll_Model_Resource_Poll\\:\\:getRandomId\\(\\) should return int but returns string\\.$#"
count: 1
- path: ../app/code/core/Mage/Poll/Model/Resource/Poll.php
+ path: app/code/core/Mage/Poll/Model/Resource/Poll.php
-
message: "#^Method Mage_Poll_Model_Resource_Poll_Answer_Collection\\:\\:countPercent\\(\\) should return \\$this\\(Mage_Poll_Model_Resource_Poll_Answer_Collection\\) but empty return statement found\\.$#"
count: 1
- path: ../app/code/core/Mage/Poll/Model/Resource/Poll/Answer/Collection.php
+ path: app/code/core/Mage/Poll/Model/Resource/Poll/Answer/Collection.php
-
message: "#^Call to function is_null\\(\\) with Mage_Core_Model_Store will always evaluate to false\\.$#"
count: 1
- path: ../app/code/core/Mage/ProductAlert/Block/Email/Abstract.php
+ path: app/code/core/Mage/ProductAlert/Block/Email/Abstract.php
-
message: "#^Call to function is_null\\(\\) with Mage_ProductAlert_Helper_Data will always evaluate to false\\.$#"
count: 1
- path: ../app/code/core/Mage/ProductAlert/Block/Product/View.php
+ path: app/code/core/Mage/ProductAlert/Block/Product/View.php
-
message: "#^Negated boolean expression is always false\\.$#"
count: 2
- path: ../app/code/core/Mage/ProductAlert/Block/Product/View.php
+ path: app/code/core/Mage/ProductAlert/Block/Product/View.php
-
message: "#^Negated boolean expression is always false\\.$#"
count: 1
- path: ../app/code/core/Mage/ProductAlert/Block/Stock.php
+ path: app/code/core/Mage/ProductAlert/Block/Stock.php
-
message: "#^Method Mage_ProductAlert_Helper_Data\\:\\:createBlock\\(\\) should return string but returns Mage_Core_Block_Abstract\\.$#"
count: 1
- path: ../app/code/core/Mage/ProductAlert/Helper/Data.php
+ path: app/code/core/Mage/ProductAlert/Helper/Data.php
-
message: "#^Call to function is_null\\(\\) with Mage_Core_Model_Website will always evaluate to false\\.$#"
count: 1
- path: ../app/code/core/Mage/ProductAlert/Model/Email.php
+ path: app/code/core/Mage/ProductAlert/Model/Email.php
-
message: "#^Call to function is_null\\(\\) with Mage_Customer_Model_Customer will always evaluate to false\\.$#"
count: 1
- path: ../app/code/core/Mage/ProductAlert/Model/Email.php
+ path: app/code/core/Mage/ProductAlert/Model/Email.php
-
message: "#^Call to function is_null\\(\\) with Mage_ProductAlert_Block_Email_Price will always evaluate to false\\.$#"
count: 1
- path: ../app/code/core/Mage/ProductAlert/Model/Email.php
+ path: app/code/core/Mage/ProductAlert/Model/Email.php
-
message: "#^Call to function is_null\\(\\) with Mage_ProductAlert_Block_Email_Stock will always evaluate to false\\.$#"
count: 1
- path: ../app/code/core/Mage/ProductAlert/Model/Email.php
+ path: app/code/core/Mage/ProductAlert/Model/Email.php
-
message: "#^Property Mage_ProductAlert_Model_Email\\:\\:\\$_customer \\(Mage_Customer_Model_Customer\\) does not accept null\\.$#"
count: 1
- path: ../app/code/core/Mage/ProductAlert/Model/Email.php
+ path: app/code/core/Mage/ProductAlert/Model/Email.php
-
message: "#^Property Mage_ProductAlert_Model_Email\\:\\:\\$_priceBlock \\(Mage_ProductAlert_Block_Email_Price\\) does not accept string\\.$#"
count: 1
- path: ../app/code/core/Mage/ProductAlert/Model/Email.php
+ path: app/code/core/Mage/ProductAlert/Model/Email.php
-
message: "#^Property Mage_ProductAlert_Model_Email\\:\\:\\$_stockBlock \\(Mage_ProductAlert_Block_Email_Stock\\) does not accept string\\.$#"
count: 1
- path: ../app/code/core/Mage/ProductAlert/Model/Email.php
+ path: app/code/core/Mage/ProductAlert/Model/Email.php
-
message: "#^Result of \\|\\| is always false\\.$#"
count: 1
- path: ../app/code/core/Mage/ProductAlert/Model/Email.php
+ path: app/code/core/Mage/ProductAlert/Model/Email.php
-
message: "#^Call to function is_null\\(\\) with array will always evaluate to false\\.$#"
count: 1
- path: ../app/code/core/Mage/ProductAlert/Model/Observer.php
+ path: app/code/core/Mage/ProductAlert/Model/Observer.php
-
message: "#^Negated boolean expression is always false\\.$#"
count: 2
- path: ../app/code/core/Mage/ProductAlert/Model/Observer.php
+ path: app/code/core/Mage/ProductAlert/Model/Observer.php
-
message: "#^Parameter \\#1 \\$store of method Mage_Core_Model_App\\:\\:setCurrentStore\\(\\) expects string, Mage_Core_Model_Store given\\.$#"
count: 4
- path: ../app/code/core/Mage/ProductAlert/Model/Observer.php
+ path: app/code/core/Mage/ProductAlert/Model/Observer.php
-
message: "#^Call to function is_null\\(\\) with int\\|string will always evaluate to false\\.$#"
count: 1
- path: ../app/code/core/Mage/ProductAlert/Model/Resource/Price.php
+ path: app/code/core/Mage/ProductAlert/Model/Resource/Price.php
-
message: "#^Result of && is always false\\.$#"
count: 3
- path: ../app/code/core/Mage/ProductAlert/Model/Resource/Price.php
+ path: app/code/core/Mage/ProductAlert/Model/Resource/Price.php
-
message: "#^Call to function is_null\\(\\) with int\\|string will always evaluate to false\\.$#"
count: 1
- path: ../app/code/core/Mage/ProductAlert/Model/Resource/Stock.php
+ path: app/code/core/Mage/ProductAlert/Model/Resource/Stock.php
-
message: "#^Result of && is always false\\.$#"
count: 3
- path: ../app/code/core/Mage/ProductAlert/Model/Resource/Stock.php
+ path: app/code/core/Mage/ProductAlert/Model/Resource/Stock.php
-
message: "#^Method Mage_ProductAlert_Model_Observer\\:\\:process\\(\\) invoked with 1 parameter, 0 required\\.$#"
count: 1
- path: ../app/code/core/Mage/ProductAlert/controllers/AddController.php
+ path: app/code/core/Mage/ProductAlert/controllers/AddController.php
-
message: "#^Negated boolean expression is always false\\.$#"
count: 1
- path: ../app/code/core/Mage/ProductAlert/controllers/AddController.php
+ path: app/code/core/Mage/ProductAlert/controllers/AddController.php
-
message: "#^Parameter \\#3 \\$value of method Mage_Core_Controller_Varien_Action\\:\\:setFlag\\(\\) expects int\\|string, true given\\.$#"
count: 1
- path: ../app/code/core/Mage/ProductAlert/controllers/AddController.php
+ path: app/code/core/Mage/ProductAlert/controllers/AddController.php
-
message: "#^Return type \\(void\\) of method Mage_ProductAlert_AddController\\:\\:preDispatch\\(\\) should be compatible with return type \\(\\$this\\(Mage_Core_Controller_Front_Action\\)\\) of method Mage_Core_Controller_Front_Action\\:\\:preDispatch\\(\\)$#"
count: 1
- path: ../app/code/core/Mage/ProductAlert/controllers/AddController.php
+ path: app/code/core/Mage/ProductAlert/controllers/AddController.php
-
message: "#^Parameter \\#3 \\$value of method Mage_Core_Controller_Varien_Action\\:\\:setFlag\\(\\) expects int\\|string, true given\\.$#"
count: 1
- path: ../app/code/core/Mage/ProductAlert/controllers/UnsubscribeController.php
+ path: app/code/core/Mage/ProductAlert/controllers/UnsubscribeController.php
-
message: "#^Method Mage_Rating_Model_Resource_Rating\\:\\:getEntityIdByCode\\(\\) should return int but returns string\\.$#"
count: 1
- path: ../app/code/core/Mage/Rating/Model/Resource/Rating.php
+ path: app/code/core/Mage/Rating/Model/Resource/Rating.php
-
message: "#^Parameter \\#1 \\$object of method Mage_Rating_Model_Resource_Rating\\:\\:_getEntitySummaryData\\(\\) expects Mage_Rating_Model_Rating, Mage_Core_Model_Abstract given\\.$#"
count: 1
- path: ../app/code/core/Mage/Rating/Model/Resource/Rating.php
+ path: app/code/core/Mage/Rating/Model/Resource/Rating.php
-
message: "#^Variable \\$data in empty\\(\\) always exists and is not falsy\\.$#"
count: 1
- path: ../app/code/core/Mage/Rating/Model/Resource/Rating.php
+ path: app/code/core/Mage/Rating/Model/Resource/Rating.php
-
message: "#^Left side of && is always true\\.$#"
count: 1
- path: ../app/code/core/Mage/Rating/Model/Resource/Rating/Collection.php
+ path: app/code/core/Mage/Rating/Model/Resource/Rating/Collection.php
-
message: "#^Method Mage_Rating_Model_Resource_Rating_Collection\\:\\:getItemById\\(\\) invoked with 1 parameter, 0 required\\.$#"
count: 2
- path: ../app/code/core/Mage/Rating/Model/Resource/Rating/Collection.php
+ path: app/code/core/Mage/Rating/Model/Resource/Rating/Collection.php
-
message: "#^Variable \\$storeId in empty\\(\\) always exists and is not falsy\\.$#"
count: 1
- path: ../app/code/core/Mage/Rating/Model/Resource/Rating/Collection.php
+ path: app/code/core/Mage/Rating/Model/Resource/Rating/Collection.php
-
message: "#^Method Mage_Rating_Model_Resource_Rating_Entity\\:\\:getIdByCode\\(\\) should return int but returns string\\.$#"
count: 1
- path: ../app/code/core/Mage/Rating/Model/Resource/Rating/Entity.php
+ path: app/code/core/Mage/Rating/Model/Resource/Rating/Entity.php
-
message: "#^Parameter \\#2 \\$value of method Varien_Data_Collection\\:\\:addFilter\\(\\) expects array\\|string, int given\\.$#"
count: 1
- path: ../app/code/core/Mage/Rating/Model/Resource/Rating/Option/Collection.php
+ path: app/code/core/Mage/Rating/Model/Resource/Rating/Option/Collection.php
-
message: "#^Call to function is_null\\(\\) with Mage_Reports_Model_Product_Index_Abstract will always evaluate to false\\.$#"
count: 1
- path: ../app/code/core/Mage/Reports/Block/Product/Abstract.php
+ path: app/code/core/Mage/Reports/Block/Product/Abstract.php
-
message: "#^Call to function is_null\\(\\) with Mage_Reports_Model_Resource_Product_Index_Collection_Abstract will always evaluate to false\\.$#"
count: 1
- path: ../app/code/core/Mage/Reports/Block/Product/Abstract.php
+ path: app/code/core/Mage/Reports/Block/Product/Abstract.php
-
message: "#^Call to function is_null\\(\\) with string will always evaluate to false\\.$#"
count: 1
- path: ../app/code/core/Mage/Reports/Block/Product/Abstract.php
+ path: app/code/core/Mage/Reports/Block/Product/Abstract.php
-
message: "#^Property Mage_Reports_Block_Product_Abstract\\:\\:\\$_indexModel \\(Mage_Reports_Model_Product_Index_Abstract\\) does not accept Mage_Core_Model_Abstract\\|false\\.$#"
count: 1
- path: ../app/code/core/Mage/Reports/Block/Product/Abstract.php
+ path: app/code/core/Mage/Reports/Block/Product/Abstract.php
-
message: "#^Variable \\$dateStart might not be defined\\.$#"
count: 7
- path: ../app/code/core/Mage/Reports/Helper/Data.php
+ path: app/code/core/Mage/Reports/Helper/Data.php
-
message: "#^Variable \\$t might not be defined\\.$#"
count: 1
- path: ../app/code/core/Mage/Reports/Helper/Data.php
+ path: app/code/core/Mage/Reports/Helper/Data.php
-
message: "#^Negated boolean expression is always false\\.$#"
count: 1
- path: ../app/code/core/Mage/Reports/Model/Event/Observer.php
+ path: app/code/core/Mage/Reports/Model/Event/Observer.php
-
message: "#^Property Mage_Reports_Model_Grouped_Collection\\:\\:\\$_resourceCollection \\(Mage_Core_Model_Resource_Db_Collection_Abstract\\) does not accept Varien_Data_Collection_Db\\.$#"
count: 1
- path: ../app/code/core/Mage/Reports/Model/Grouped/Collection.php
+ path: app/code/core/Mage/Reports/Model/Grouped/Collection.php
-
message: "#^Method Mage_Reports_Model_Resource_Product_Index_Abstract\\:\\:clean\\(\\) invoked with 1 parameter, 0 required\\.$#"
count: 1
- path: ../app/code/core/Mage/Reports/Model/Product/Index/Abstract.php
+ path: app/code/core/Mage/Reports/Model/Product/Index/Abstract.php
-
message: "#^Property Mage_Reports_Model_Report\\:\\:\\$_reportModel \\(Mage_Reports_Model_Report\\) does not accept Mage_Core_Model_Resource_Db_Collection_Abstract\\|false\\.$#"
count: 1
- path: ../app/code/core/Mage/Reports/Model/Report.php
+ path: app/code/core/Mage/Reports/Model/Report.php
-
message: "#^Parameter \\#3 \\$attribute of method Mage_Eav_Model_Entity_Collection_Abstract\\:\\:addExpressionAttributeToSelect\\(\\) expects string, array\\ given\\.$#"
count: 1
- path: ../app/code/core/Mage/Reports/Model/Resource/Accounts/Collection.php
+ path: app/code/core/Mage/Reports/Model/Resource/Accounts/Collection.php
-
message: "#^Parameter \\#3 \\$attribute of method Mage_Eav_Model_Entity_Collection_Abstract\\:\\:addExpressionAttributeToSelect\\(\\) expects string, array\\ given\\.$#"
count: 6
- path: ../app/code/core/Mage/Reports/Model/Resource/Coupons/Collection.php
+ path: app/code/core/Mage/Reports/Model/Resource/Coupons/Collection.php
-
message: "#^Call to an undefined method Mage_Customer_Model_Customer\\:\\:remove\\(\\)\\.$#"
count: 1
- path: ../app/code/core/Mage/Reports/Model/Resource/Customer/Collection.php
+ path: app/code/core/Mage/Reports/Model/Resource/Customer/Collection.php
-
message: "#^Call to an undefined method Mage_Sales_Model_Resource_Quote_Item_Collection\\:\\:setQuoteFilter\\(\\)\\.$#"
count: 1
- path: ../app/code/core/Mage/Reports/Model/Resource/Customer/Collection.php
+ path: app/code/core/Mage/Reports/Model/Resource/Customer/Collection.php
-
message: "#^Else branch is unreachable because previous condition is always true\\.$#"
count: 1
- path: ../app/code/core/Mage/Reports/Model/Resource/Customer/Collection.php
+ path: app/code/core/Mage/Reports/Model/Resource/Customer/Collection.php
-
message: "#^Parameter \\#2 \\$value of method Varien_Db_Adapter_Interface\\:\\:getIfNullSql\\(\\) expects string, int given\\.$#"
count: 4
- path: ../app/code/core/Mage/Reports/Model/Resource/Customer/Collection.php
+ path: app/code/core/Mage/Reports/Model/Resource/Customer/Collection.php
-
message: "#^Property Mage_Reports_Model_Resource_Entity_Summary_Collection_Abstract\\:\\:\\$_entityCollection \\(Mage_Eav_Model_Entity_Collection_Abstract\\) in empty\\(\\) is not falsy\\.$#"
count: 1
- path: ../app/code/core/Mage/Reports/Model/Resource/Entity/Summary/Collection/Abstract.php
+ path: app/code/core/Mage/Reports/Model/Resource/Entity/Summary/Collection/Abstract.php
-
message: "#^Call to an undefined method Varien_Data_Collection_Db\\:\\:getResource\\(\\)\\.$#"
count: 1
- path: ../app/code/core/Mage/Reports/Model/Resource/Event.php
+ path: app/code/core/Mage/Reports/Model/Resource/Event.php
-
message: "#^Method Mage_Reports_Model_Resource_Helper_Mysql4\\:\\:mergeVisitorProductIndex\\(\\) should return string but returns int\\.$#"
count: 1
- path: ../app/code/core/Mage/Reports/Model/Resource/Helper/Mysql4.php
+ path: app/code/core/Mage/Reports/Model/Resource/Helper/Mysql4.php
-
message: "#^Parameter \\#2 \\$true of method Varien_Db_Adapter_Interface\\:\\:getCheckSql\\(\\) expects string, int given\\.$#"
count: 1
- path: ../app/code/core/Mage/Reports/Model/Resource/Helper/Mysql4.php
+ path: app/code/core/Mage/Reports/Model/Resource/Helper/Mysql4.php
-
message: "#^Parameter \\#3 \\$false of method Varien_Db_Adapter_Interface\\:\\:getCheckSql\\(\\) expects string, int given\\.$#"
count: 1
- path: ../app/code/core/Mage/Reports/Model/Resource/Helper/Mysql4.php
+ path: app/code/core/Mage/Reports/Model/Resource/Helper/Mysql4.php
-
message: "#^Parameter \\#2 \\$true of method Varien_Db_Adapter_Interface\\:\\:getCheckSql\\(\\) expects string, int given\\.$#"
count: 1
- path: ../app/code/core/Mage/Reports/Model/Resource/Invoiced/Collection.php
+ path: app/code/core/Mage/Reports/Model/Resource/Invoiced/Collection.php
-
message: "#^Parameter \\#3 \\$attribute of method Mage_Eav_Model_Entity_Collection_Abstract\\:\\:addExpressionAttributeToSelect\\(\\) expects string, array\\ given\\.$#"
count: 8
- path: ../app/code/core/Mage/Reports/Model/Resource/Invoiced/Collection.php
+ path: app/code/core/Mage/Reports/Model/Resource/Invoiced/Collection.php
-
message: "#^Parameter \\#3 \\$false of method Varien_Db_Adapter_Interface\\:\\:getCheckSql\\(\\) expects string, int given\\.$#"
count: 1
- path: ../app/code/core/Mage/Reports/Model/Resource/Invoiced/Collection.php
+ path: app/code/core/Mage/Reports/Model/Resource/Invoiced/Collection.php
-
message: "#^Call to function is_null\\(\\) with string will always evaluate to false\\.$#"
count: 1
- path: ../app/code/core/Mage/Reports/Model/Resource/Order/Collection.php
+ path: app/code/core/Mage/Reports/Model/Resource/Order/Collection.php
-
message: "#^Method Mage_Reports_Model_Resource_Order_Collection\\:\\:_prepareSummaryAggregated\\(\\) invoked with 4 parameters, 3 required\\.$#"
count: 1
- path: ../app/code/core/Mage/Reports/Model/Resource/Order/Collection.php
+ path: app/code/core/Mage/Reports/Model/Resource/Order/Collection.php
-
message: "#^Parameter \\#2 \\$customStart of method Mage_Reports_Model_Resource_Order_Collection\\:\\:getDateRange\\(\\) expects string, int given\\.$#"
count: 1
- path: ../app/code/core/Mage/Reports/Model/Resource/Order/Collection.php
+ path: app/code/core/Mage/Reports/Model/Resource/Order/Collection.php
-
message: "#^Parameter \\#2 \\$interval of method Varien_Db_Adapter_Interface\\:\\:getDateAddSql\\(\\) expects int, string given\\.$#"
count: 1
- path: ../app/code/core/Mage/Reports/Model/Resource/Order/Collection.php
+ path: app/code/core/Mage/Reports/Model/Resource/Order/Collection.php
-
message: "#^Parameter \\#2 \\$value of method Varien_Db_Adapter_Interface\\:\\:getIfNullSql\\(\\) expects string, int given\\.$#"
count: 20
- path: ../app/code/core/Mage/Reports/Model/Resource/Order/Collection.php
+ path: app/code/core/Mage/Reports/Model/Resource/Order/Collection.php
-
message: "#^Parameter \\#3 \\$customEnd of method Mage_Reports_Model_Resource_Order_Collection\\:\\:getDateRange\\(\\) expects string, int given\\.$#"
count: 1
- path: ../app/code/core/Mage/Reports/Model/Resource/Order/Collection.php
+ path: app/code/core/Mage/Reports/Model/Resource/Order/Collection.php
-
message: "#^Parameter \\#3 \\$false of method Varien_Db_Adapter_Interface\\:\\:getCheckSql\\(\\) expects string, int given\\.$#"
count: 1
- path: ../app/code/core/Mage/Reports/Model/Resource/Order/Collection.php
+ path: app/code/core/Mage/Reports/Model/Resource/Order/Collection.php
-
message: "#^Variable \\$productViewEvent might not be defined\\.$#"
count: 1
- path: ../app/code/core/Mage/Reports/Model/Resource/Product/Collection.php
+ path: app/code/core/Mage/Reports/Model/Resource/Product/Collection.php
-
message: "#^Parameter \\#1 \\$date of static method Varien_Date\\:\\:formatDate\\(\\) expects string\\|Zend_Date\\|true\\|null, int given\\.$#"
count: 1
- path: ../app/code/core/Mage/Reports/Model/Resource/Product/Index/Abstract.php
+ path: app/code/core/Mage/Reports/Model/Resource/Product/Index/Abstract.php
-
message: "#^Parameter \\#2 \\$true of method Varien_Db_Adapter_Interface\\:\\:getCheckSql\\(\\) expects string, int given\\.$#"
count: 2
- path: ../app/code/core/Mage/Reports/Model/Resource/Product/Lowstock/Collection.php
+ path: app/code/core/Mage/Reports/Model/Resource/Product/Lowstock/Collection.php
-
message: "#^Parameter \\#1 \\$from of method Mage_Reports_Model_Resource_Product_Ordered_Collection\\:\\:_joinFields\\(\\) expects string, int given\\.$#"
count: 1
- path: ../app/code/core/Mage/Reports/Model/Resource/Product/Ordered/Collection.php
+ path: app/code/core/Mage/Reports/Model/Resource/Product/Ordered/Collection.php
-
message: "#^Parameter \\#2 \\$to of method Mage_Reports_Model_Resource_Product_Ordered_Collection\\:\\:_joinFields\\(\\) expects string, int given\\.$#"
count: 1
- path: ../app/code/core/Mage/Reports/Model/Resource/Product/Ordered/Collection.php
+ path: app/code/core/Mage/Reports/Model/Resource/Product/Ordered/Collection.php
-
message: "#^Parameter \\#1 \\$from of method Mage_Reports_Model_Resource_Product_Collection\\:\\:addOrderedQty\\(\\) expects string, int given\\.$#"
count: 1
- path: ../app/code/core/Mage/Reports/Model/Resource/Product/Sold/Collection.php
+ path: app/code/core/Mage/Reports/Model/Resource/Product/Sold/Collection.php
-
message: "#^Parameter \\#2 \\$to of method Mage_Reports_Model_Resource_Product_Collection\\:\\:addOrderedQty\\(\\) expects string, int given\\.$#"
count: 1
- path: ../app/code/core/Mage/Reports/Model/Resource/Product/Sold/Collection.php
+ path: app/code/core/Mage/Reports/Model/Resource/Product/Sold/Collection.php
-
message: "#^Parameter \\#1 \\$filter of method Mage_Reports_Model_Resource_Quote_Collection\\:\\:addCustomerData\\(\\) expects array\\|null, string\\|null given\\.$#"
count: 1
- path: ../app/code/core/Mage/Reports/Model/Resource/Quote/Collection.php
+ path: app/code/core/Mage/Reports/Model/Resource/Quote/Collection.php
-
message: "#^Parameter \\#2 \\$filter of method Mage_Reports_Model_Resource_Quote_Collection\\:\\:addSubtotal\\(\\) expects array\\|null, string\\|null given\\.$#"
count: 1
- path: ../app/code/core/Mage/Reports/Model/Resource/Quote/Collection.php
+ path: app/code/core/Mage/Reports/Model/Resource/Quote/Collection.php
-
message: "#^Parameter \\#3 \\$cols of method Zend_Db_Select\\:\\:joinInner\\(\\) expects array\\|string, null given\\.$#"
count: 2
- path: ../app/code/core/Mage/Reports/Model/Resource/Quote/Collection.php
+ path: app/code/core/Mage/Reports/Model/Resource/Quote/Collection.php
-
message: "#^Parameter \\#3 \\$attribute of method Mage_Eav_Model_Entity_Collection_Abstract\\:\\:addExpressionAttributeToSelect\\(\\) expects string, array\\ given\\.$#"
count: 7
- path: ../app/code/core/Mage/Reports/Model/Resource/Refunded/Collection.php
+ path: app/code/core/Mage/Reports/Model/Resource/Refunded/Collection.php
-
message: "#^Parameter \\#1 \\$date of method Mage_Core_Model_Resource_Abstract\\:\\:formatDate\\(\\) expects string\\|Zend_Date\\|true\\|null, int given\\.$#"
count: 1
- path: ../app/code/core/Mage/Reports/Model/Resource/Report/Abstract.php
+ path: app/code/core/Mage/Reports/Model/Resource/Report/Abstract.php
-
message: "#^Parameter \\#1 \\$select of method Mage_Reports_Model_Resource_Report_Abstract\\:\\:_makeConditionFromDateRangeSelect\\(\\) expects Varien_Db_Select, string\\|Zend_Db_Select given\\.$#"
count: 1
- path: ../app/code/core/Mage/Reports/Model/Resource/Report/Abstract.php
+ path: app/code/core/Mage/Reports/Model/Resource/Report/Abstract.php
-
message: "#^Parameter \\#1 \\$datetime of method Mage_Reports_Model_Resource_Report_Collection\\:\\:timeShift\\(\\) expects string, int given\\.$#"
count: 4
- path: ../app/code/core/Mage/Reports/Model/Resource/Report/Collection.php
+ path: app/code/core/Mage/Reports/Model/Resource/Report/Collection.php
-
message: "#^Property Mage_Reports_Model_Resource_Report_Collection\\:\\:\\$_from \\(string\\) does not accept int\\.$#"
count: 1
- path: ../app/code/core/Mage/Reports/Model/Resource/Report/Collection.php
+ path: app/code/core/Mage/Reports/Model/Resource/Report/Collection.php
-
message: "#^Property Mage_Reports_Model_Resource_Report_Collection\\:\\:\\$_to \\(string\\) does not accept int\\.$#"
count: 1
- path: ../app/code/core/Mage/Reports/Model/Resource/Report/Collection.php
+ path: app/code/core/Mage/Reports/Model/Resource/Report/Collection.php
-
message: "#^Call to function is_null\\(\\) with string will always evaluate to false\\.$#"
count: 2
- path: ../app/code/core/Mage/Reports/Model/Resource/Report/Product/Viewed/Collection.php
+ path: app/code/core/Mage/Reports/Model/Resource/Report/Product/Viewed/Collection.php
-
message: "#^Comparison operation \"\\!\\=\" between array\\|int and 0 results in an error\\.$#"
count: 1
- path: ../app/code/core/Mage/Reports/Model/Resource/Report/Product/Viewed/Collection.php
+ path: app/code/core/Mage/Reports/Model/Resource/Report/Product/Viewed/Collection.php
-
message: "#^If condition is always true\\.$#"
count: 4
- path: ../app/code/core/Mage/Reports/Model/Resource/Report/Product/Viewed/Collection.php
+ path: app/code/core/Mage/Reports/Model/Resource/Report/Product/Viewed/Collection.php
-
message: "#^Left side of && is always true\\.$#"
count: 2
- path: ../app/code/core/Mage/Reports/Model/Resource/Report/Product/Viewed/Collection.php
+ path: app/code/core/Mage/Reports/Model/Resource/Report/Product/Viewed/Collection.php
-
message: "#^Negated boolean expression is always false\\.$#"
count: 4
- path: ../app/code/core/Mage/Reports/Model/Resource/Report/Product/Viewed/Collection.php
+ path: app/code/core/Mage/Reports/Model/Resource/Report/Product/Viewed/Collection.php
-
message: "#^Parameter \\#1 \\$conn of method Varien_Data_Collection_Db\\:\\:setConnection\\(\\) expects Zend_Db_Adapter_Abstract, Varien_Db_Adapter_Interface given\\.$#"
count: 1
- path: ../app/code/core/Mage/Reports/Model/Resource/Report/Product/Viewed/Collection.php
+ path: app/code/core/Mage/Reports/Model/Resource/Report/Product/Viewed/Collection.php
-
message: "#^Parameter \\#1 \\$select of method Mage_Core_Model_Resource_Helper_Mysql4\\:\\:getQueryUsingAnalyticFunction\\(\\) expects Varien_Db_Select, Zend_Db_Select given\\.$#"
count: 1
- path: ../app/code/core/Mage/Reports/Model/Resource/Report/Product/Viewed/Collection.php
+ path: app/code/core/Mage/Reports/Model/Resource/Report/Product/Viewed/Collection.php
-
message: "#^Right side of && is always true\\.$#"
count: 2
- path: ../app/code/core/Mage/Reports/Model/Resource/Report/Product/Viewed/Collection.php
+ path: app/code/core/Mage/Reports/Model/Resource/Report/Product/Viewed/Collection.php
-
message: "#^Variable \\$currentStoreIds in isset\\(\\) always exists and is not nullable\\.$#"
count: 1
- path: ../app/code/core/Mage/Reports/Model/Resource/Report/Product/Viewed/Collection.php
+ path: app/code/core/Mage/Reports/Model/Resource/Report/Product/Viewed/Collection.php
-
message: "#^Call to an undefined method Mage_Reports_Model_Resource_Review_Collection\\:\\:_joinFields\\(\\)\\.$#"
count: 1
- path: ../app/code/core/Mage/Reports/Model/Resource/Review/Collection.php
+ path: app/code/core/Mage/Reports/Model/Resource/Review/Collection.php
-
message: "#^Call to an undefined static method Mage_Review_Model_Resource_Review_Collection\\:\\:resetSelect\\(\\)\\.$#"
count: 1
- path: ../app/code/core/Mage/Reports/Model/Resource/Review/Collection.php
+ path: app/code/core/Mage/Reports/Model/Resource/Review/Collection.php
-
message: "#^Parameter \\#2 \\$groupAliasName of method Mage_Core_Model_Resource_Helper_Mysql4\\:\\:prepareColumn\\(\\) expects string\\|null, array given\\.$#"
count: 3
- path: ../app/code/core/Mage/Reports/Model/Resource/Review/Product/Collection.php
+ path: app/code/core/Mage/Reports/Model/Resource/Review/Product/Collection.php
-
message: "#^Parameter \\#3 \\$attribute of method Mage_Eav_Model_Entity_Collection_Abstract\\:\\:addExpressionAttributeToSelect\\(\\) expects string, array\\ given\\.$#"
count: 3
- path: ../app/code/core/Mage/Reports/Model/Resource/Shipping/Collection.php
+ path: app/code/core/Mage/Reports/Model/Resource/Shipping/Collection.php
-
message: "#^Parameter \\#3 \\$attribute of method Mage_Eav_Model_Entity_Collection_Abstract\\:\\:addExpressionAttributeToSelect\\(\\) expects string, array\\ given\\.$#"
count: 2
- path: ../app/code/core/Mage/Reports/Model/Resource/Tax/Collection.php
+ path: app/code/core/Mage/Reports/Model/Resource/Tax/Collection.php
-
message: "#^Method Mage_Reports_Model_Resource_Wishlist_Collection\\:\\:getSharedCount\\(\\) should return int but returns string\\.$#"
count: 1
- path: ../app/code/core/Mage/Reports/Model/Resource/Wishlist/Collection.php
+ path: app/code/core/Mage/Reports/Model/Resource/Wishlist/Collection.php
-
message: "#^Call to an undefined method Mage_Eav_Model_Entity_Abstract\\:\\:setStore\\(\\)\\.$#"
count: 1
- path: ../app/code/core/Mage/Reports/Model/Resource/Wishlist/Product/Collection.php
+ path: app/code/core/Mage/Reports/Model/Resource/Wishlist/Product/Collection.php
-
message: "#^Property DOMNode\\:\\:\\$nodeValue \\(string\\|null\\) does not accept int\\\\|int\\<1, max\\>\\.$#"
count: 1
- path: ../app/code/core/Mage/Reports/Model/Test.php
+ path: app/code/core/Mage/Reports/Model/Test.php
-
message: "#^Argument of an invalid type Mage_Reports_Model_Report supplied for foreach, only iterables are supported\\.$#"
count: 1
- path: ../app/code/core/Mage/Reports/Model/Totals.php
+ path: app/code/core/Mage/Reports/Model/Totals.php
-
message: "#^If condition is always false\\.$#"
count: 1
- path: ../app/code/core/Mage/Reports/Model/Totals.php
+ path: app/code/core/Mage/Reports/Model/Totals.php
-
message: "#^Parameter \\#1 \\$from of method Mage_Reports_Model_Resource_Report_Collection\\:\\:getReportFull\\(\\) expects int, string given\\.$#"
count: 1
- path: ../app/code/core/Mage/Reports/Model/Totals.php
+ path: app/code/core/Mage/Reports/Model/Totals.php
-
message: "#^Parameter \\#2 \\$to of method Mage_Reports_Model_Resource_Report_Collection\\:\\:getReportFull\\(\\) expects int, string given\\.$#"
count: 1
- path: ../app/code/core/Mage/Reports/Model/Totals.php
+ path: app/code/core/Mage/Reports/Model/Totals.php
-
message: "#^Left side of && is always true\\.$#"
count: 1
- path: ../app/code/core/Mage/Review/Block/Form.php
+ path: app/code/core/Mage/Review/Block/Form.php
-
message: "#^Return type \\(string\\) of method Mage_Review_Block_Form\\:\\:getAction\\(\\) should be compatible with return type \\(Mage_Core_Controller_Varien_Action\\) of method Mage_Core_Block_Abstract\\:\\:getAction\\(\\)$#"
count: 1
- path: ../app/code/core/Mage/Review/Block/Form.php
+ path: app/code/core/Mage/Review/Block/Form.php
-
message: "#^Method Mage_Review_Model_Resource_Review\\:\\:getEntityIdByCode\\(\\) should return bool\\|int but returns string\\.$#"
count: 1
- path: ../app/code/core/Mage/Review/Model/Resource/Review.php
+ path: app/code/core/Mage/Review/Model/Resource/Review.php
-
message: "#^Method Mage_Review_Model_Resource_Review\\:\\:getTotalReviews\\(\\) should return int but returns string\\.$#"
count: 1
- path: ../app/code/core/Mage/Review/Model/Resource/Review.php
+ path: app/code/core/Mage/Review/Model/Resource/Review.php
-
message: "#^Right side of && is always true\\.$#"
count: 1
- path: ../app/code/core/Mage/Review/Model/Resource/Review.php
+ path: app/code/core/Mage/Review/Model/Resource/Review.php
-
message: "#^Comparison operation \"\\=\\=\" between array\\|null and 1 results in an error\\.$#"
count: 1
- path: ../app/code/core/Mage/Review/Model/Resource/Review/Product/Collection.php
+ path: app/code/core/Mage/Review/Model/Resource/Review/Product/Collection.php
-
message: "#^Comparison operation \"\\=\\=\" between array\\|null and 2 results in an error\\.$#"
count: 1
- path: ../app/code/core/Mage/Review/Model/Resource/Review/Product/Collection.php
+ path: app/code/core/Mage/Review/Model/Resource/Review/Product/Collection.php
-
message: "#^If condition is always true\\.$#"
count: 2
- path: ../app/code/core/Mage/Review/Model/Review.php
+ path: app/code/core/Mage/Review/Model/Review.php
-
message: "#^Unreachable statement \\- code above always terminates\\.$#"
count: 1
- path: ../app/code/core/Mage/Review/Model/Review.php
+ path: app/code/core/Mage/Review/Model/Review.php
-
message: "#^Parameter \\#3 \\$value of method Mage_Core_Controller_Varien_Action\\:\\:setFlag\\(\\) expects int\\|string, true given\\.$#"
count: 1
- path: ../app/code/core/Mage/Review/controllers/CustomerController.php
+ path: app/code/core/Mage/Review/controllers/CustomerController.php
-
message: "#^Parameter \\#3 \\$value of method Mage_Core_Controller_Varien_Action\\:\\:setFlag\\(\\) expects int\\|string, true given\\.$#"
count: 1
- path: ../app/code/core/Mage/Review/controllers/ProductController.php
+ path: app/code/core/Mage/Review/controllers/ProductController.php
-
message: "#^Left side of && is always true\\.$#"
count: 1
- path: ../app/code/core/Mage/Rss/Block/Catalog/Category.php
+ path: app/code/core/Mage/Rss/Block/Catalog/Category.php
-
message: "#^Parameter \\#1 \\$categoryIds of method Mage_Catalog_Model_Resource_Category_Collection\\:\\:addIdFilter\\(\\) expects array, string given\\.$#"
count: 1
- path: ../app/code/core/Mage/Rss/Block/Catalog/Category.php
+ path: app/code/core/Mage/Rss/Block/Catalog/Category.php
-
message: "#^Parameter \\#2 \\$condition of method Mage_Eav_Model_Entity_Collection_Abstract\\:\\:addAttributeToFilter\\(\\) expects array\\|string\\|null, int given\\.$#"
count: 1
- path: ../app/code/core/Mage/Rss/Block/Catalog/Category.php
+ path: app/code/core/Mage/Rss/Block/Catalog/Category.php
-
message: "#^Parameter \\#2 \\$joinType of method Mage_Catalog_Model_Resource_Product_Collection\\:\\:addAttributeToSelect\\(\\) expects string\\|false, true given\\.$#"
count: 1
- path: ../app/code/core/Mage/Rss/Block/Catalog/NotifyStock.php
+ path: app/code/core/Mage/Rss/Block/Catalog/NotifyStock.php
-
message: "#^If condition is always false\\.$#"
count: 1
- path: ../app/code/core/Mage/Rss/Block/Catalog/Special.php
+ path: app/code/core/Mage/Rss/Block/Catalog/Special.php
-
message: "#^Static property Mage_Rss_Block_Catalog_Special\\:\\:\\$_currentDate \\(Zend_Date\\) in isset\\(\\) is not nullable\\.$#"
count: 1
- path: ../app/code/core/Mage/Rss/Block/Catalog/Special.php
+ path: app/code/core/Mage/Rss/Block/Catalog/Special.php
-
message: "#^Parameter \\#2 \\$condition of method Mage_Eav_Model_Entity_Collection_Abstract\\:\\:addAttributeToFilter\\(\\) expects array\\|string\\|null, int given\\.$#"
count: 1
- path: ../app/code/core/Mage/Rss/Block/List.php
+ path: app/code/core/Mage/Rss/Block/List.php
-
message: "#^Parameter \\#1 \\$date of method Mage_Core_Model_Resource_Abstract\\:\\:formatDate\\(\\) expects string\\|Zend_Date\\|true\\|null, int\\|false given\\.$#"
count: 1
- path: ../app/code/core/Mage/Rss/Block/Order/New.php
+ path: app/code/core/Mage/Rss/Block/Order/New.php
-
message: "#^Parameter \\#4 \\$month of function mktime expects int\\|null, string given\\.$#"
count: 1
- path: ../app/code/core/Mage/Rss/Block/Order/New.php
+ path: app/code/core/Mage/Rss/Block/Order/New.php
-
message: "#^Call to function is_null\\(\\) with Mage_Customer_Model_Customer will always evaluate to false\\.$#"
count: 1
- path: ../app/code/core/Mage/Rss/Block/Wishlist.php
+ path: app/code/core/Mage/Rss/Block/Wishlist.php
-
message: "#^Call to function is_null\\(\\) with Mage_Wishlist_Model_Wishlist will always evaluate to false\\.$#"
count: 1
- path: ../app/code/core/Mage/Rss/Block/Wishlist.php
+ path: app/code/core/Mage/Rss/Block/Wishlist.php
-
message: "#^Left side of && is always true\\.$#"
count: 1
- path: ../app/code/core/Mage/Rss/Helper/Catalog.php
+ path: app/code/core/Mage/Rss/Helper/Catalog.php
-
message: "#^Cannot call method getId\\(\\) on true\\.$#"
count: 1
- path: ../app/code/core/Mage/Rss/Helper/Data.php
+ path: app/code/core/Mage/Rss/Helper/Data.php
-
message: "#^Left side of && is always true\\.$#"
count: 1
- path: ../app/code/core/Mage/Rss/Helper/Data.php
+ path: app/code/core/Mage/Rss/Helper/Data.php
-
message: "#^Parameter \\#1 \\$headers of method Mage_Core_Helper_Http\\:\\:authValidate\\(\\) expects string\\|null, array\\|null given\\.$#"
count: 1
- path: ../app/code/core/Mage/Rss/Helper/Data.php
+ path: app/code/core/Mage/Rss/Helper/Data.php
-
message: "#^Call to function is_null\\(\\) with int\\|string will always evaluate to false\\.$#"
count: 1
- path: ../app/code/core/Mage/Rss/Helper/Order.php
+ path: app/code/core/Mage/Rss/Helper/Order.php
-
message: "#^Call to function is_null\\(\\) with Mage_Customer_Model_Customer will always evaluate to false\\.$#"
count: 1
- path: ../app/code/core/Mage/Rss/controllers/IndexController.php
+ path: app/code/core/Mage/Rss/controllers/IndexController.php
-
message: "#^Call to function is_null\\(\\) with Mage_Wishlist_Model_Wishlist will always evaluate to false\\.$#"
count: 1
- path: ../app/code/core/Mage/Rss/controllers/IndexController.php
+ path: app/code/core/Mage/Rss/controllers/IndexController.php
-
message: "#^Negated boolean expression is always false\\.$#"
count: 1
- path: ../app/code/core/Mage/Rss/controllers/IndexController.php
+ path: app/code/core/Mage/Rss/controllers/IndexController.php
-
message: "#^Call to function is_string\\(\\) with array will always evaluate to false\\.$#"
count: 1
- path: ../app/code/core/Mage/Rule/Model/Abstract.php
+ path: app/code/core/Mage/Rule/Model/Abstract.php
-
message: "#^If condition is always true\\.$#"
count: 2
- path: ../app/code/core/Mage/Rule/Model/Abstract.php
+ path: app/code/core/Mage/Rule/Model/Abstract.php
-
message: "#^Negated boolean expression is always false\\.$#"
count: 2
- path: ../app/code/core/Mage/Rule/Model/Abstract.php
+ path: app/code/core/Mage/Rule/Model/Abstract.php
-
message: "#^Offset 'actions'\\|'conditions' on array\\{\\} in isset\\(\\) does not exist\\.$#"
count: 1
- path: ../app/code/core/Mage/Rule/Model/Abstract.php
+ path: app/code/core/Mage/Rule/Model/Abstract.php
-
message: "#^Property Mage_Rule_Model_Abstract\\:\\:\\$_conditions \\(Mage_Rule_Model_Condition_Combine\\) in empty\\(\\) is not falsy\\.$#"
count: 1
- path: ../app/code/core/Mage/Rule/Model/Abstract.php
+ path: app/code/core/Mage/Rule/Model/Abstract.php
-
message: "#^Result of && is always false\\.$#"
count: 1
- path: ../app/code/core/Mage/Rule/Model/Abstract.php
+ path: app/code/core/Mage/Rule/Model/Abstract.php
-
message: "#^Call to an undefined method Mage_Rule_Model_Action_Interface\\:\\:getId\\(\\)\\.$#"
count: 1
- path: ../app/code/core/Mage/Rule/Model/Action/Collection.php
+ path: app/code/core/Mage/Rule/Model/Action/Collection.php
-
message: "#^Call to an undefined method Mage_Rule_Model_Action_Interface\\:\\:setId\\(\\)\\.$#"
count: 1
- path: ../app/code/core/Mage/Rule/Model/Action/Collection.php
+ path: app/code/core/Mage/Rule/Model/Action/Collection.php
-
message: "#^Call to an undefined method Mage_Rule_Model_Action_Interface\\:\\:setRule\\(\\)\\.$#"
count: 1
- path: ../app/code/core/Mage/Rule/Model/Action/Collection.php
+ path: app/code/core/Mage/Rule/Model/Action/Collection.php
-
message: "#^Cannot call method loadArray\\(\\) on Mage_Core_Model_Abstract\\|false\\.$#"
count: 1
- path: ../app/code/core/Mage/Rule/Model/Action/Collection.php
+ path: app/code/core/Mage/Rule/Model/Action/Collection.php
-
message: "#^Parameter \\#1 \\$action of method Mage_Rule_Model_Action_Collection\\:\\:addAction\\(\\) expects Mage_Rule_Model_Action_Interface, Mage_Core_Model_Abstract\\|false given\\.$#"
count: 1
- path: ../app/code/core/Mage/Rule/Model/Action/Collection.php
+ path: app/code/core/Mage/Rule/Model/Action/Collection.php
-
message: "#^Binary operation \"\\.\" between array and ' ' results in an error\\.$#"
count: 1
- path: ../app/code/core/Mage/Rule/Model/Condition/Abstract.php
+ path: app/code/core/Mage/Rule/Model/Condition/Abstract.php
-
message: "#^Call to function is_array\\(\\) with non\\-empty\\-string will always evaluate to false\\.$#"
count: 1
- path: ../app/code/core/Mage/Rule/Model/Condition/Abstract.php
+ path: app/code/core/Mage/Rule/Model/Condition/Abstract.php
-
message: "#^Call to function is_null\\(\\) with string will always evaluate to false\\.$#"
count: 1
- path: ../app/code/core/Mage/Rule/Model/Condition/Abstract.php
+ path: app/code/core/Mage/Rule/Model/Condition/Abstract.php
-
message: "#^Property Mage_Rule_Model_Condition_Abstract\\:\\:\\$_inputType \\(string\\) on left side of \\?\\? is not nullable\\.$#"
count: 1
- path: ../app/code/core/Mage/Rule/Model/Condition/Abstract.php
+ path: app/code/core/Mage/Rule/Model/Condition/Abstract.php
-
message: "#^Variable \\$valueArr in empty\\(\\) always exists and is always falsy\\.$#"
count: 1
- path: ../app/code/core/Mage/Rule/Model/Condition/Abstract.php
+ path: app/code/core/Mage/Rule/Model/Condition/Abstract.php
-
message: "#^Method Mage_Rule_Model_Condition_Abstract\\:\\:loadArray\\(\\) invoked with 2 parameters, 1 required\\.$#"
count: 1
- path: ../app/code/core/Mage/Rule/Model/Condition/Combine.php
+ path: app/code/core/Mage/Rule/Model/Condition/Combine.php
-
message: "#^Parameter \\#1 \\$arr of method Mage_Rule_Model_Condition_Combine\\:\\:loadArray\\(\\) expects array, \\$this\\(Mage_Rule_Model_Condition_Combine\\) given\\.$#"
count: 1
- path: ../app/code/core/Mage/Rule/Model/Condition/Combine.php
+ path: app/code/core/Mage/Rule/Model/Condition/Combine.php
-
message: "#^Call to function is_int\\(\\) with string will always evaluate to false\\.$#"
count: 1
- path: ../app/code/core/Mage/Rule/Model/Condition/Product/Abstract.php
+ path: app/code/core/Mage/Rule/Model/Condition/Product/Abstract.php
-
message: "#^Left side of && is always true\\.$#"
count: 1
- path: ../app/code/core/Mage/Rule/Model/Condition/Product/Abstract.php
+ path: app/code/core/Mage/Rule/Model/Condition/Product/Abstract.php
-
message: "#^Method Mage_Eav_Model_Entity_Attribute_Source_Interface\\:\\:getAllOptions\\(\\) invoked with 1 parameter, 0 required\\.$#"
count: 1
- path: ../app/code/core/Mage/Rule/Model/Condition/Product/Abstract.php
+ path: app/code/core/Mage/Rule/Model/Condition/Product/Abstract.php
-
message: "#^Method Mage_Rule_Model_Condition_Product_Abstract\\:\\:getAttributeObject\\(\\) should return Mage_Catalog_Model_Resource_Eav_Attribute but returns Varien_Object\\|false\\.$#"
count: 1
- path: ../app/code/core/Mage/Rule/Model/Condition/Product/Abstract.php
+ path: app/code/core/Mage/Rule/Model/Condition/Product/Abstract.php
-
message: "#^Negated boolean expression is always false\\.$#"
count: 2
- path: ../app/code/core/Mage/Rule/Model/Condition/Product/Abstract.php
+ path: app/code/core/Mage/Rule/Model/Condition/Product/Abstract.php
-
message: "#^If condition is always true\\.$#"
count: 1
- path: ../app/code/core/Mage/Sales/Block/Adminhtml/Recurring/Profile/Edit/Form.php
+ path: app/code/core/Mage/Sales/Block/Adminhtml/Recurring/Profile/Edit/Form.php
-
message: "#^Left side of && is always true\\.$#"
count: 1
- path: ../app/code/core/Mage/Sales/Block/Adminhtml/Recurring/Profile/Edit/Form.php
+ path: app/code/core/Mage/Sales/Block/Adminhtml/Recurring/Profile/Edit/Form.php
-
message: "#^Parameter \\#1 \\$renderer of static method Varien_Data_Form\\:\\:setFieldsetElementRenderer\\(\\) expects Varien_Data_Form_Element_Renderer_Interface, Mage_Core_Block_Abstract\\|false given\\.$#"
count: 1
- path: ../app/code/core/Mage/Sales/Block/Adminhtml/Recurring/Profile/Edit/Form.php
+ path: app/code/core/Mage/Sales/Block/Adminhtml/Recurring/Profile/Edit/Form.php
-
message: "#^Parameter \\#1 \\$renderer of static method Varien_Data_Form\\:\\:setFieldsetRenderer\\(\\) expects Varien_Data_Form_Element_Renderer_Interface, Mage_Core_Block_Abstract\\|false given\\.$#"
count: 1
- path: ../app/code/core/Mage/Sales/Block/Adminhtml/Recurring/Profile/Edit/Form.php
+ path: app/code/core/Mage/Sales/Block/Adminhtml/Recurring/Profile/Edit/Form.php
-
message: "#^Negated boolean expression is always false\\.$#"
count: 1
- path: ../app/code/core/Mage/Sales/Block/Adminhtml/Recurring/Profile/View/Items.php
+ path: app/code/core/Mage/Sales/Block/Adminhtml/Recurring/Profile/View/Items.php
-
message: "#^Parameter \\#4 \\$after of method Varien_Data_Form_Element_Fieldset\\:\\:addField\\(\\) expects bool, string given\\.$#"
count: 2
- path: ../app/code/core/Mage/Sales/Block/Adminhtml/Report/Filter/Form.php
+ path: app/code/core/Mage/Sales/Block/Adminhtml/Report/Filter/Form.php
-
message: "#^Parameter \\#4 \\$after of method Varien_Data_Form_Element_Fieldset\\:\\:addField\\(\\) expects bool, string given\\.$#"
count: 1
- path: ../app/code/core/Mage/Sales/Block/Adminhtml/Report/Filter/Form/Coupon.php
+ path: app/code/core/Mage/Sales/Block/Adminhtml/Report/Filter/Form/Coupon.php
-
message: "#^Call to function is_null\\(\\) with Mage_Sales_Model_Billing_Agreement will always evaluate to false\\.$#"
count: 1
- path: ../app/code/core/Mage/Sales/Block/Billing/Agreement/View.php
+ path: app/code/core/Mage/Sales/Block/Billing/Agreement/View.php
-
message: "#^Call to function is_null\\(\\) with Mage_Sales_Model_Resource_Order_Collection will always evaluate to false\\.$#"
count: 1
- path: ../app/code/core/Mage/Sales/Block/Billing/Agreement/View.php
+ path: app/code/core/Mage/Sales/Block/Billing/Agreement/View.php
-
message: "#^If condition is always true\\.$#"
count: 1
- path: ../app/code/core/Mage/Sales/Block/Billing/Agreement/View.php
+ path: app/code/core/Mage/Sales/Block/Billing/Agreement/View.php
-
message: "#^Call to function is_null\\(\\) with Mage_Sales_Model_Resource_Billing_Agreement_Collection will always evaluate to false\\.$#"
count: 1
- path: ../app/code/core/Mage/Sales/Block/Billing/Agreements.php
+ path: app/code/core/Mage/Sales/Block/Billing/Agreements.php
-
message: "#^Call to function is_null\\(\\) with Mage_Sales_Model_Resource_Order_Comment_Collection_Abstract will always evaluate to false\\.$#"
count: 1
- path: ../app/code/core/Mage/Sales/Block/Order/Comments.php
+ path: app/code/core/Mage/Sales/Block/Order/Comments.php
-
message: "#^Cannot call method setParentFilter\\(\\) on Mage_Core_Model_Resource_Db_Collection_Abstract\\|false\\.$#"
count: 1
- path: ../app/code/core/Mage/Sales/Block/Order/Comments.php
+ path: app/code/core/Mage/Sales/Block/Order/Comments.php
-
message: "#^Property Mage_Sales_Block_Order_Comments\\:\\:\\$_commentCollection \\(Mage_Sales_Model_Resource_Order_Comment_Collection_Abstract\\) does not accept Mage_Core_Model_Resource_Db_Collection_Abstract\\|false\\.$#"
count: 1
- path: ../app/code/core/Mage/Sales/Block/Order/Comments.php
+ path: app/code/core/Mage/Sales/Block/Order/Comments.php
-
message: "#^Property Mage_Sales_Block_Order_Comments\\:\\:\\$_commentCollection \\(Mage_Sales_Model_Resource_Order_Comment_Collection_Abstract\\) does not accept null\\.$#"
count: 1
- path: ../app/code/core/Mage/Sales/Block/Order/Comments.php
+ path: app/code/core/Mage/Sales/Block/Order/Comments.php
-
message: "#^Return type \\(void\\) of method Mage_Sales_Block_Order_Creditmemo\\:\\:_prepareLayout\\(\\) should be compatible with return type \\(\\$this\\(Mage_Core_Block_Abstract\\)\\) of method Mage_Core_Block_Abstract\\:\\:_prepareLayout\\(\\)$#"
count: 1
- path: ../app/code/core/Mage/Sales/Block/Order/Creditmemo.php
+ path: app/code/core/Mage/Sales/Block/Order/Creditmemo.php
-
message: "#^Call to method setOrderFilter\\(\\) on an unknown class Mage_Sales_Model_Resource_Invoice_Collection\\.$#"
count: 1
- path: ../app/code/core/Mage/Sales/Block/Order/Details.php
+ path: app/code/core/Mage/Sales/Block/Order/Details.php
-
message: "#^Return type \\(void\\) of method Mage_Sales_Block_Order_Email_Creditmemo_Items\\:\\:_prepareItem\\(\\) should be compatible with return type \\(\\$this\\(Mage_Sales_Block_Items_Abstract\\)\\) of method Mage_Sales_Block_Items_Abstract\\:\\:_prepareItem\\(\\)$#"
count: 1
- path: ../app/code/core/Mage/Sales/Block/Order/Email/Creditmemo/Items.php
+ path: app/code/core/Mage/Sales/Block/Order/Email/Creditmemo/Items.php
-
message: "#^Return type \\(void\\) of method Mage_Sales_Block_Order_Email_Invoice_Items\\:\\:_prepareItem\\(\\) should be compatible with return type \\(\\$this\\(Mage_Sales_Block_Items_Abstract\\)\\) of method Mage_Sales_Block_Items_Abstract\\:\\:_prepareItem\\(\\)$#"
count: 1
- path: ../app/code/core/Mage/Sales/Block/Order/Email/Invoice/Items.php
+ path: app/code/core/Mage/Sales/Block/Order/Email/Invoice/Items.php
-
message: "#^Return type \\(void\\) of method Mage_Sales_Block_Order_Email_Shipment_Items\\:\\:_prepareItem\\(\\) should be compatible with return type \\(\\$this\\(Mage_Sales_Block_Items_Abstract\\)\\) of method Mage_Sales_Block_Items_Abstract\\:\\:_prepareItem\\(\\)$#"
count: 1
- path: ../app/code/core/Mage/Sales/Block/Order/Email/Shipment/Items.php
+ path: app/code/core/Mage/Sales/Block/Order/Email/Shipment/Items.php
-
message: "#^Return type \\(void\\) of method Mage_Sales_Block_Order_Info\\:\\:_prepareLayout\\(\\) should be compatible with return type \\(\\$this\\(Mage_Core_Block_Abstract\\)\\) of method Mage_Core_Block_Abstract\\:\\:_prepareLayout\\(\\)$#"
count: 1
- path: ../app/code/core/Mage/Sales/Block/Order/Info.php
+ path: app/code/core/Mage/Sales/Block/Order/Info.php
-
message: "#^Return type \\(void\\) of method Mage_Sales_Block_Order_Invoice\\:\\:_prepareLayout\\(\\) should be compatible with return type \\(\\$this\\(Mage_Core_Block_Abstract\\)\\) of method Mage_Core_Block_Abstract\\:\\:_prepareLayout\\(\\)$#"
count: 1
- path: ../app/code/core/Mage/Sales/Block/Order/Invoice.php
+ path: app/code/core/Mage/Sales/Block/Order/Invoice.php
-
message: "#^Return type \\(void\\) of method Mage_Sales_Block_Order_Print\\:\\:_prepareLayout\\(\\) should be compatible with return type \\(\\$this\\(Mage_Core_Block_Abstract\\)\\) of method Mage_Core_Block_Abstract\\:\\:_prepareLayout\\(\\)$#"
count: 1
- path: ../app/code/core/Mage/Sales/Block/Order/Print.php
+ path: app/code/core/Mage/Sales/Block/Order/Print.php
-
message: "#^Return type \\(void\\) of method Mage_Sales_Block_Order_Print_Creditmemo\\:\\:_prepareLayout\\(\\) should be compatible with return type \\(\\$this\\(Mage_Core_Block_Abstract\\)\\) of method Mage_Core_Block_Abstract\\:\\:_prepareLayout\\(\\)$#"
count: 1
- path: ../app/code/core/Mage/Sales/Block/Order/Print/Creditmemo.php
+ path: app/code/core/Mage/Sales/Block/Order/Print/Creditmemo.php
-
message: "#^Return type \\(void\\) of method Mage_Sales_Block_Order_Print_Invoice\\:\\:_prepareLayout\\(\\) should be compatible with return type \\(\\$this\\(Mage_Core_Block_Abstract\\)\\) of method Mage_Core_Block_Abstract\\:\\:_prepareLayout\\(\\)$#"
count: 1
- path: ../app/code/core/Mage/Sales/Block/Order/Print/Invoice.php
+ path: app/code/core/Mage/Sales/Block/Order/Print/Invoice.php
-
message: "#^Return type \\(void\\) of method Mage_Sales_Block_Order_Print_Shipment\\:\\:_prepareLayout\\(\\) should be compatible with return type \\(\\$this\\(Mage_Core_Block_Abstract\\)\\) of method Mage_Core_Block_Abstract\\:\\:_prepareLayout\\(\\)$#"
count: 1
- path: ../app/code/core/Mage/Sales/Block/Order/Print/Shipment.php
+ path: app/code/core/Mage/Sales/Block/Order/Print/Shipment.php
-
message: "#^Parameter \\#1 \\$size of method Varien_Data_Collection\\:\\:setPageSize\\(\\) expects int, string given\\.$#"
count: 1
- path: ../app/code/core/Mage/Sales/Block/Order/Recent.php
+ path: app/code/core/Mage/Sales/Block/Order/Recent.php
-
message: "#^Return type \\(void\\) of method Mage_Sales_Block_Order_Shipment\\:\\:_prepareLayout\\(\\) should be compatible with return type \\(\\$this\\(Mage_Core_Block_Abstract\\)\\) of method Mage_Core_Block_Abstract\\:\\:_prepareLayout\\(\\)$#"
count: 1
- path: ../app/code/core/Mage/Sales/Block/Order/Shipment.php
+ path: app/code/core/Mage/Sales/Block/Order/Shipment.php
-
message: "#^Elseif condition is always true\\.$#"
count: 1
- path: ../app/code/core/Mage/Sales/Block/Order/Totals.php
+ path: app/code/core/Mage/Sales/Block/Order/Totals.php
-
message: "#^Return type \\(void\\) of method Mage_Sales_Block_Order_View\\:\\:_prepareLayout\\(\\) should be compatible with return type \\(\\$this\\(Mage_Core_Block_Abstract\\)\\) of method Mage_Core_Block_Abstract\\:\\:_prepareLayout\\(\\)$#"
count: 1
- path: ../app/code/core/Mage/Sales/Block/Order/View.php
+ path: app/code/core/Mage/Sales/Block/Order/View.php
-
message: "#^Negated boolean expression is always false\\.$#"
count: 1
- path: ../app/code/core/Mage/Sales/Block/Recurring/Profile/View.php
+ path: app/code/core/Mage/Sales/Block/Recurring/Profile/View.php
-
message: "#^Property Mage_Sales_Block_Recurring_Profiles\\:\\:\\$_profiles \\(Mage_Sales_Model_Resource_Recurring_Profile_Collection\\) does not accept Mage_Core_Model_Resource_Db_Collection_Abstract\\.$#"
count: 1
- path: ../app/code/core/Mage/Sales/Block/Recurring/Profiles.php
+ path: app/code/core/Mage/Sales/Block/Recurring/Profiles.php
-
message: "#^If condition is always true\\.$#"
count: 1
- path: ../app/code/core/Mage/Sales/Block/Reorder/Sidebar.php
+ path: app/code/core/Mage/Sales/Block/Reorder/Sidebar.php
-
message: "#^Unreachable statement \\- code above always terminates\\.$#"
count: 1
- path: ../app/code/core/Mage/Sales/Block/Reorder/Sidebar.php
+ path: app/code/core/Mage/Sales/Block/Reorder/Sidebar.php
-
message: "#^Parameter \\#1 \\$order of method Mage_Sales_Model_Resource_Order_Collection_Abstract\\:\\:setOrderFilter\\(\\) expects int\\|Mage_Sales_Model_Order, array given\\.$#"
count: 1
- path: ../app/code/core/Mage/Sales/Model/Api2/Order.php
+ path: app/code/core/Mage/Sales/Model/Api2/Order.php
-
message: "#^Parameter \\#2 \\$code of method Mage_Api2_Model_Resource\\:\\:_critical\\(\\) expects int\\|null, string given\\.$#"
count: 2
- path: ../app/code/core/Mage/Sales/Model/Api2/Order/Comment/Rest/Admin/V1.php
+ path: app/code/core/Mage/Sales/Model/Api2/Order/Comment/Rest/Admin/V1.php
-
message: "#^Variable \\$oldArea might not be defined\\.$#"
count: 1
- path: ../app/code/core/Mage/Sales/Model/Api2/Order/Comment/Rest/Admin/V1.php
+ path: app/code/core/Mage/Sales/Model/Api2/Order/Comment/Rest/Admin/V1.php
-
message: "#^Variable \\$oldStore might not be defined\\.$#"
count: 1
- path: ../app/code/core/Mage/Sales/Model/Api2/Order/Comment/Rest/Admin/V1.php
+ path: app/code/core/Mage/Sales/Model/Api2/Order/Comment/Rest/Admin/V1.php
-
message: "#^Call to an undefined method Varien_Simplexml_Element\\:\\:getClassName\\(\\)\\.$#"
count: 1
- path: ../app/code/core/Mage/Sales/Model/Config/Ordered.php
+ path: app/code/core/Mage/Sales/Model/Config/Ordered.php
-
message: "#^Offset 'after' on array\\{\\000\\*\\000_parent\\: Varien_Simplexml_Element, \\000\\*\\000_parent\\: Varien_Simplexml_Element, before\\: array\\{\\}\\} in isset\\(\\) does not exist\\.$#"
count: 1
- path: ../app/code/core/Mage/Sales/Model/Config/Ordered.php
+ path: app/code/core/Mage/Sales/Model/Config/Ordered.php
-
message: "#^Offset 'before' on array\\{\\000\\*\\000_parent\\: Varien_Simplexml_Element, \\000\\*\\000_parent\\: Varien_Simplexml_Element\\} in isset\\(\\) does not exist\\.$#"
count: 1
- path: ../app/code/core/Mage/Sales/Model/Config/Ordered.php
+ path: app/code/core/Mage/Sales/Model/Config/Ordered.php
-
message: "#^Parameter \\#3 \\$totalConfig of method Mage_Sales_Model_Config_Ordered\\:\\:_initModelInstance\\(\\) expects array, Varien_Simplexml_Element given\\.$#"
count: 1
- path: ../app/code/core/Mage/Sales/Model/Config/Ordered.php
+ path: app/code/core/Mage/Sales/Model/Config/Ordered.php
-
message: "#^If condition is always true\\.$#"
count: 1
- path: ../app/code/core/Mage/Sales/Model/Convert/Quote.php
+ path: app/code/core/Mage/Sales/Model/Convert/Quote.php
-
message: "#^Parameter \\#1 \\$read of method Mage_Eav_Model_Entity_Abstract\\:\\:setConnection\\(\\) expects string\\|Zend_Db_Adapter_Abstract, Varien_Db_Adapter_Interface\\|false given\\.$#"
count: 1
- path: ../app/code/core/Mage/Sales/Model/Entity/Order.php
+ path: app/code/core/Mage/Sales/Model/Entity/Order.php
-
message: "#^Parameter \\#2 \\$write of method Mage_Eav_Model_Entity_Abstract\\:\\:setConnection\\(\\) expects string\\|Zend_Db_Adapter_Abstract\\|null, Varien_Db_Adapter_Interface\\|false given\\.$#"
count: 1
- path: ../app/code/core/Mage/Sales/Model/Entity/Order.php
+ path: app/code/core/Mage/Sales/Model/Entity/Order.php
-
message: "#^Parameter \\#1 \\$read of method Mage_Eav_Model_Entity_Abstract\\:\\:setConnection\\(\\) expects string\\|Zend_Db_Adapter_Abstract, Varien_Db_Adapter_Interface\\|false given\\.$#"
count: 1
- path: ../app/code/core/Mage/Sales/Model/Entity/Order/Address.php
+ path: app/code/core/Mage/Sales/Model/Entity/Order/Address.php
-
message: "#^Parameter \\#2 \\$write of method Mage_Eav_Model_Entity_Abstract\\:\\:setConnection\\(\\) expects string\\|Zend_Db_Adapter_Abstract\\|null, Varien_Db_Adapter_Interface\\|false given\\.$#"
count: 1
- path: ../app/code/core/Mage/Sales/Model/Entity/Order/Address.php
+ path: app/code/core/Mage/Sales/Model/Entity/Order/Address.php
-
message: "#^Parameter \\#2 \\$condition of method Mage_Eav_Model_Entity_Collection_Abstract\\:\\:addAttributeToFilter\\(\\) expects array\\|string\\|null, int given\\.$#"
count: 1
- path: ../app/code/core/Mage/Sales/Model/Entity/Order/Address/Collection.php
+ path: app/code/core/Mage/Sales/Model/Entity/Order/Address/Collection.php
-
message: "#^Parameter \\#1 \\$read of method Mage_Eav_Model_Entity_Abstract\\:\\:setConnection\\(\\) expects string\\|Zend_Db_Adapter_Abstract, Varien_Db_Adapter_Interface\\|false given\\.$#"
count: 1
- path: ../app/code/core/Mage/Sales/Model/Entity/Order/Creditmemo.php
+ path: app/code/core/Mage/Sales/Model/Entity/Order/Creditmemo.php
-
message: "#^Parameter \\#2 \\$write of method Mage_Eav_Model_Entity_Abstract\\:\\:setConnection\\(\\) expects string\\|Zend_Db_Adapter_Abstract\\|null, Varien_Db_Adapter_Interface\\|false given\\.$#"
count: 1
- path: ../app/code/core/Mage/Sales/Model/Entity/Order/Creditmemo.php
+ path: app/code/core/Mage/Sales/Model/Entity/Order/Creditmemo.php
-
message: "#^Parameter \\#1 \\$read of method Mage_Eav_Model_Entity_Abstract\\:\\:setConnection\\(\\) expects string\\|Zend_Db_Adapter_Abstract, Varien_Db_Adapter_Interface\\|false given\\.$#"
count: 1
- path: ../app/code/core/Mage/Sales/Model/Entity/Order/Creditmemo/Comment.php
+ path: app/code/core/Mage/Sales/Model/Entity/Order/Creditmemo/Comment.php
-
message: "#^Parameter \\#2 \\$write of method Mage_Eav_Model_Entity_Abstract\\:\\:setConnection\\(\\) expects string\\|Zend_Db_Adapter_Abstract\\|null, Varien_Db_Adapter_Interface\\|false given\\.$#"
count: 1
- path: ../app/code/core/Mage/Sales/Model/Entity/Order/Creditmemo/Comment.php
+ path: app/code/core/Mage/Sales/Model/Entity/Order/Creditmemo/Comment.php
-
message: "#^Parameter \\#2 \\$condition of method Mage_Eav_Model_Entity_Collection_Abstract\\:\\:addAttributeToFilter\\(\\) expects array\\|string\\|null, int given\\.$#"
count: 1
- path: ../app/code/core/Mage/Sales/Model/Entity/Order/Creditmemo/Comment/Collection.php
+ path: app/code/core/Mage/Sales/Model/Entity/Order/Creditmemo/Comment/Collection.php
-
message: "#^Parameter \\#1 \\$read of method Mage_Eav_Model_Entity_Abstract\\:\\:setConnection\\(\\) expects string\\|Zend_Db_Adapter_Abstract, Varien_Db_Adapter_Interface\\|false given\\.$#"
count: 1
- path: ../app/code/core/Mage/Sales/Model/Entity/Order/Creditmemo/Item.php
+ path: app/code/core/Mage/Sales/Model/Entity/Order/Creditmemo/Item.php
-
message: "#^Parameter \\#2 \\$write of method Mage_Eav_Model_Entity_Abstract\\:\\:setConnection\\(\\) expects string\\|Zend_Db_Adapter_Abstract\\|null, Varien_Db_Adapter_Interface\\|false given\\.$#"
count: 1
- path: ../app/code/core/Mage/Sales/Model/Entity/Order/Creditmemo/Item.php
+ path: app/code/core/Mage/Sales/Model/Entity/Order/Creditmemo/Item.php
-
message: "#^Parameter \\#2 \\$condition of method Mage_Eav_Model_Entity_Collection_Abstract\\:\\:addAttributeToFilter\\(\\) expects array\\|string\\|null, int given\\.$#"
count: 1
- path: ../app/code/core/Mage/Sales/Model/Entity/Order/Creditmemo/Item/Collection.php
+ path: app/code/core/Mage/Sales/Model/Entity/Order/Creditmemo/Item/Collection.php
-
message: "#^Parameter \\#1 \\$read of method Mage_Eav_Model_Entity_Abstract\\:\\:setConnection\\(\\) expects string\\|Zend_Db_Adapter_Abstract, Varien_Db_Adapter_Interface\\|false given\\.$#"
count: 1
- path: ../app/code/core/Mage/Sales/Model/Entity/Order/Invoice.php
+ path: app/code/core/Mage/Sales/Model/Entity/Order/Invoice.php
-
message: "#^Parameter \\#2 \\$write of method Mage_Eav_Model_Entity_Abstract\\:\\:setConnection\\(\\) expects string\\|Zend_Db_Adapter_Abstract\\|null, Varien_Db_Adapter_Interface\\|false given\\.$#"
count: 1
- path: ../app/code/core/Mage/Sales/Model/Entity/Order/Invoice.php
+ path: app/code/core/Mage/Sales/Model/Entity/Order/Invoice.php
-
message: "#^Parameter \\#1 \\$read of method Mage_Eav_Model_Entity_Abstract\\:\\:setConnection\\(\\) expects string\\|Zend_Db_Adapter_Abstract, Varien_Db_Adapter_Interface\\|false given\\.$#"
count: 1
- path: ../app/code/core/Mage/Sales/Model/Entity/Order/Invoice/Comment.php
+ path: app/code/core/Mage/Sales/Model/Entity/Order/Invoice/Comment.php
-
message: "#^Parameter \\#2 \\$write of method Mage_Eav_Model_Entity_Abstract\\:\\:setConnection\\(\\) expects string\\|Zend_Db_Adapter_Abstract\\|null, Varien_Db_Adapter_Interface\\|false given\\.$#"
count: 1
- path: ../app/code/core/Mage/Sales/Model/Entity/Order/Invoice/Comment.php
+ path: app/code/core/Mage/Sales/Model/Entity/Order/Invoice/Comment.php
-
message: "#^Parameter \\#2 \\$condition of method Mage_Eav_Model_Entity_Collection_Abstract\\:\\:addAttributeToFilter\\(\\) expects array\\|string\\|null, int given\\.$#"
count: 1
- path: ../app/code/core/Mage/Sales/Model/Entity/Order/Invoice/Comment/Collection.php
+ path: app/code/core/Mage/Sales/Model/Entity/Order/Invoice/Comment/Collection.php
-
message: "#^Parameter \\#1 \\$read of method Mage_Eav_Model_Entity_Abstract\\:\\:setConnection\\(\\) expects string\\|Zend_Db_Adapter_Abstract, Varien_Db_Adapter_Interface\\|false given\\.$#"
count: 1
- path: ../app/code/core/Mage/Sales/Model/Entity/Order/Invoice/Item.php
+ path: app/code/core/Mage/Sales/Model/Entity/Order/Invoice/Item.php
-
message: "#^Parameter \\#2 \\$write of method Mage_Eav_Model_Entity_Abstract\\:\\:setConnection\\(\\) expects string\\|Zend_Db_Adapter_Abstract\\|null, Varien_Db_Adapter_Interface\\|false given\\.$#"
count: 1
- path: ../app/code/core/Mage/Sales/Model/Entity/Order/Invoice/Item.php
+ path: app/code/core/Mage/Sales/Model/Entity/Order/Invoice/Item.php
-
message: "#^Parameter \\#2 \\$condition of method Mage_Eav_Model_Entity_Collection_Abstract\\:\\:addAttributeToFilter\\(\\) expects array\\|string\\|null, int given\\.$#"
count: 1
- path: ../app/code/core/Mage/Sales/Model/Entity/Order/Invoice/Item/Collection.php
+ path: app/code/core/Mage/Sales/Model/Entity/Order/Invoice/Item/Collection.php
-
message: "#^Parameter \\#1 \\$read of method Mage_Eav_Model_Entity_Abstract\\:\\:setConnection\\(\\) expects string\\|Zend_Db_Adapter_Abstract, Varien_Db_Adapter_Interface\\|false given\\.$#"
count: 1
- path: ../app/code/core/Mage/Sales/Model/Entity/Order/Item.php
+ path: app/code/core/Mage/Sales/Model/Entity/Order/Item.php
-
message: "#^Parameter \\#2 \\$write of method Mage_Eav_Model_Entity_Abstract\\:\\:setConnection\\(\\) expects string\\|Zend_Db_Adapter_Abstract\\|null, Varien_Db_Adapter_Interface\\|false given\\.$#"
count: 1
- path: ../app/code/core/Mage/Sales/Model/Entity/Order/Item.php
+ path: app/code/core/Mage/Sales/Model/Entity/Order/Item.php
-
message: "#^Parameter \\#2 \\$condition of method Mage_Eav_Model_Entity_Collection_Abstract\\:\\:addAttributeToFilter\\(\\) expects array\\|string\\|null, int given\\.$#"
count: 1
- path: ../app/code/core/Mage/Sales/Model/Entity/Order/Item/Collection.php
+ path: app/code/core/Mage/Sales/Model/Entity/Order/Item/Collection.php
-
message: "#^Parameter \\#1 \\$read of method Mage_Eav_Model_Entity_Abstract\\:\\:setConnection\\(\\) expects string\\|Zend_Db_Adapter_Abstract, Varien_Db_Adapter_Interface\\|false given\\.$#"
count: 1
- path: ../app/code/core/Mage/Sales/Model/Entity/Order/Payment.php
+ path: app/code/core/Mage/Sales/Model/Entity/Order/Payment.php
-
message: "#^Parameter \\#2 \\$write of method Mage_Eav_Model_Entity_Abstract\\:\\:setConnection\\(\\) expects string\\|Zend_Db_Adapter_Abstract\\|null, Varien_Db_Adapter_Interface\\|false given\\.$#"
count: 1
- path: ../app/code/core/Mage/Sales/Model/Entity/Order/Payment.php
+ path: app/code/core/Mage/Sales/Model/Entity/Order/Payment.php
-
message: "#^Parameter \\#2 \\$condition of method Mage_Eav_Model_Entity_Collection_Abstract\\:\\:addAttributeToFilter\\(\\) expects array\\|string\\|null, int given\\.$#"
count: 1
- path: ../app/code/core/Mage/Sales/Model/Entity/Order/Payment/Collection.php
+ path: app/code/core/Mage/Sales/Model/Entity/Order/Payment/Collection.php
-
message: "#^Parameter \\#1 \\$read of method Mage_Eav_Model_Entity_Abstract\\:\\:setConnection\\(\\) expects string\\|Zend_Db_Adapter_Abstract, Varien_Db_Adapter_Interface\\|false given\\.$#"
count: 1
- path: ../app/code/core/Mage/Sales/Model/Entity/Order/Shipment.php
+ path: app/code/core/Mage/Sales/Model/Entity/Order/Shipment.php
-
message: "#^Parameter \\#2 \\$write of method Mage_Eav_Model_Entity_Abstract\\:\\:setConnection\\(\\) expects string\\|Zend_Db_Adapter_Abstract\\|null, Varien_Db_Adapter_Interface\\|false given\\.$#"
count: 1
- path: ../app/code/core/Mage/Sales/Model/Entity/Order/Shipment.php
+ path: app/code/core/Mage/Sales/Model/Entity/Order/Shipment.php
-
message: "#^Parameter \\#1 \\$read of method Mage_Eav_Model_Entity_Abstract\\:\\:setConnection\\(\\) expects string\\|Zend_Db_Adapter_Abstract, Varien_Db_Adapter_Interface\\|false given\\.$#"
count: 1
- path: ../app/code/core/Mage/Sales/Model/Entity/Order/Shipment/Comment.php
+ path: app/code/core/Mage/Sales/Model/Entity/Order/Shipment/Comment.php
-
message: "#^Parameter \\#2 \\$write of method Mage_Eav_Model_Entity_Abstract\\:\\:setConnection\\(\\) expects string\\|Zend_Db_Adapter_Abstract\\|null, Varien_Db_Adapter_Interface\\|false given\\.$#"
count: 1
- path: ../app/code/core/Mage/Sales/Model/Entity/Order/Shipment/Comment.php
+ path: app/code/core/Mage/Sales/Model/Entity/Order/Shipment/Comment.php
-
message: "#^Parameter \\#2 \\$condition of method Mage_Eav_Model_Entity_Collection_Abstract\\:\\:addAttributeToFilter\\(\\) expects array\\|string\\|null, int given\\.$#"
count: 1
- path: ../app/code/core/Mage/Sales/Model/Entity/Order/Shipment/Comment/Collection.php
+ path: app/code/core/Mage/Sales/Model/Entity/Order/Shipment/Comment/Collection.php
-
message: "#^Parameter \\#1 \\$read of method Mage_Eav_Model_Entity_Abstract\\:\\:setConnection\\(\\) expects string\\|Zend_Db_Adapter_Abstract, Varien_Db_Adapter_Interface\\|false given\\.$#"
count: 1
- path: ../app/code/core/Mage/Sales/Model/Entity/Order/Shipment/Item.php
+ path: app/code/core/Mage/Sales/Model/Entity/Order/Shipment/Item.php
-
message: "#^Parameter \\#2 \\$write of method Mage_Eav_Model_Entity_Abstract\\:\\:setConnection\\(\\) expects string\\|Zend_Db_Adapter_Abstract\\|null, Varien_Db_Adapter_Interface\\|false given\\.$#"
count: 1
- path: ../app/code/core/Mage/Sales/Model/Entity/Order/Shipment/Item.php
+ path: app/code/core/Mage/Sales/Model/Entity/Order/Shipment/Item.php
-
message: "#^Parameter \\#2 \\$condition of method Mage_Eav_Model_Entity_Collection_Abstract\\:\\:addAttributeToFilter\\(\\) expects array\\|string\\|null, int given\\.$#"
count: 1
- path: ../app/code/core/Mage/Sales/Model/Entity/Order/Shipment/Item/Collection.php
+ path: app/code/core/Mage/Sales/Model/Entity/Order/Shipment/Item/Collection.php
-
message: "#^Parameter \\#1 \\$read of method Mage_Eav_Model_Entity_Abstract\\:\\:setConnection\\(\\) expects string\\|Zend_Db_Adapter_Abstract, Varien_Db_Adapter_Interface\\|false given\\.$#"
count: 1
- path: ../app/code/core/Mage/Sales/Model/Entity/Order/Shipment/Track.php
+ path: app/code/core/Mage/Sales/Model/Entity/Order/Shipment/Track.php
-
message: "#^Parameter \\#2 \\$write of method Mage_Eav_Model_Entity_Abstract\\:\\:setConnection\\(\\) expects string\\|Zend_Db_Adapter_Abstract\\|null, Varien_Db_Adapter_Interface\\|false given\\.$#"
count: 1
- path: ../app/code/core/Mage/Sales/Model/Entity/Order/Shipment/Track.php
+ path: app/code/core/Mage/Sales/Model/Entity/Order/Shipment/Track.php
-
message: "#^Parameter \\#2 \\$condition of method Mage_Eav_Model_Entity_Collection_Abstract\\:\\:addAttributeToFilter\\(\\) expects array\\|string\\|null, int given\\.$#"
count: 2
- path: ../app/code/core/Mage/Sales/Model/Entity/Order/Shipment/Track/Collection.php
+ path: app/code/core/Mage/Sales/Model/Entity/Order/Shipment/Track/Collection.php
-
message: "#^Parameter \\#1 \\$read of method Mage_Eav_Model_Entity_Abstract\\:\\:setConnection\\(\\) expects string\\|Zend_Db_Adapter_Abstract, Varien_Db_Adapter_Interface\\|false given\\.$#"
count: 1
- path: ../app/code/core/Mage/Sales/Model/Entity/Order/Status/History.php
+ path: app/code/core/Mage/Sales/Model/Entity/Order/Status/History.php
-
message: "#^Parameter \\#2 \\$write of method Mage_Eav_Model_Entity_Abstract\\:\\:setConnection\\(\\) expects string\\|Zend_Db_Adapter_Abstract\\|null, Varien_Db_Adapter_Interface\\|false given\\.$#"
count: 1
- path: ../app/code/core/Mage/Sales/Model/Entity/Order/Status/History.php
+ path: app/code/core/Mage/Sales/Model/Entity/Order/Status/History.php
-
message: "#^Parameter \\#2 \\$condition of method Mage_Eav_Model_Entity_Collection_Abstract\\:\\:addAttributeToFilter\\(\\) expects array\\|string\\|null, int given\\.$#"
count: 1
- path: ../app/code/core/Mage/Sales/Model/Entity/Order/Status/History/Collection.php
+ path: app/code/core/Mage/Sales/Model/Entity/Order/Status/History/Collection.php
-
message: "#^Call to an undefined method Mage_Sales_Model_Resource_Quote_Collection\\:\\:addAttributeToSelect\\(\\)\\.$#"
count: 2
- path: ../app/code/core/Mage/Sales/Model/Entity/Quote.php
+ path: app/code/core/Mage/Sales/Model/Entity/Quote.php
-
message: "#^Parameter \\#1 \\$read of method Mage_Eav_Model_Entity_Abstract\\:\\:setConnection\\(\\) expects string\\|Zend_Db_Adapter_Abstract, Varien_Db_Adapter_Interface\\|false given\\.$#"
count: 1
- path: ../app/code/core/Mage/Sales/Model/Entity/Quote.php
+ path: app/code/core/Mage/Sales/Model/Entity/Quote.php
-
message: "#^Parameter \\#2 \\$write of method Mage_Eav_Model_Entity_Abstract\\:\\:setConnection\\(\\) expects string\\|Zend_Db_Adapter_Abstract\\|null, Varien_Db_Adapter_Interface\\|false given\\.$#"
count: 1
- path: ../app/code/core/Mage/Sales/Model/Entity/Quote.php
+ path: app/code/core/Mage/Sales/Model/Entity/Quote.php
-
message: "#^Parameter \\#1 \\$read of method Mage_Eav_Model_Entity_Abstract\\:\\:setConnection\\(\\) expects string\\|Zend_Db_Adapter_Abstract, Varien_Db_Adapter_Interface\\|false given\\.$#"
count: 1
- path: ../app/code/core/Mage/Sales/Model/Entity/Quote/Address.php
+ path: app/code/core/Mage/Sales/Model/Entity/Quote/Address.php
-
message: "#^Parameter \\#2 \\$write of method Mage_Eav_Model_Entity_Abstract\\:\\:setConnection\\(\\) expects string\\|Zend_Db_Adapter_Abstract\\|null, Varien_Db_Adapter_Interface\\|false given\\.$#"
count: 1
- path: ../app/code/core/Mage/Sales/Model/Entity/Quote/Address.php
+ path: app/code/core/Mage/Sales/Model/Entity/Quote/Address.php
-
message: "#^If condition is always true\\.$#"
count: 1
- path: ../app/code/core/Mage/Sales/Model/Entity/Quote/Address/Attribute/Backend/Region.php
+ path: app/code/core/Mage/Sales/Model/Entity/Quote/Address/Attribute/Backend/Region.php
-
message: "#^Return type \\(void\\) of method Mage_Sales_Model_Entity_Quote_Address_Attribute_Backend_Region\\:\\:beforeSave\\(\\) should be compatible with return type \\(\\$this\\(Mage_Eav_Model_Entity_Attribute_Backend_Abstract\\)\\) of method Mage_Eav_Model_Entity_Attribute_Backend_Abstract\\:\\:beforeSave\\(\\)$#"
count: 1
- path: ../app/code/core/Mage/Sales/Model/Entity/Quote/Address/Attribute/Backend/Region.php
+ path: app/code/core/Mage/Sales/Model/Entity/Quote/Address/Attribute/Backend/Region.php
-
message: "#^Return type \\(\\$this\\(Mage_Sales_Model_Entity_Quote_Address_Attribute_Frontend_Custbalance\\)\\) of method Mage_Sales_Model_Entity_Quote_Address_Attribute_Frontend_Custbalance\\:\\:fetchTotals\\(\\) should be compatible with return type \\(array\\) of method Mage_Sales_Model_Entity_Quote_Address_Attribute_Frontend\\:\\:fetchTotals\\(\\)$#"
count: 1
- path: ../app/code/core/Mage/Sales/Model/Entity/Quote/Address/Attribute/Frontend/Custbalance.php
+ path: app/code/core/Mage/Sales/Model/Entity/Quote/Address/Attribute/Frontend/Custbalance.php
-
message: "#^Return type \\(\\$this\\(Mage_Sales_Model_Entity_Quote_Address_Attribute_Frontend_Discount\\)\\) of method Mage_Sales_Model_Entity_Quote_Address_Attribute_Frontend_Discount\\:\\:fetchTotals\\(\\) should be compatible with return type \\(array\\) of method Mage_Sales_Model_Entity_Quote_Address_Attribute_Frontend\\:\\:fetchTotals\\(\\)$#"
count: 1
- path: ../app/code/core/Mage/Sales/Model/Entity/Quote/Address/Attribute/Frontend/Discount.php
+ path: app/code/core/Mage/Sales/Model/Entity/Quote/Address/Attribute/Frontend/Discount.php
-
message: "#^Return type \\(\\$this\\(Mage_Sales_Model_Entity_Quote_Address_Attribute_Frontend_Grand\\)\\) of method Mage_Sales_Model_Entity_Quote_Address_Attribute_Frontend_Grand\\:\\:fetchTotals\\(\\) should be compatible with return type \\(array\\) of method Mage_Sales_Model_Entity_Quote_Address_Attribute_Frontend\\:\\:fetchTotals\\(\\)$#"
count: 1
- path: ../app/code/core/Mage/Sales/Model/Entity/Quote/Address/Attribute/Frontend/Grand.php
+ path: app/code/core/Mage/Sales/Model/Entity/Quote/Address/Attribute/Frontend/Grand.php
-
message: "#^Return type \\(\\$this\\(Mage_Sales_Model_Entity_Quote_Address_Attribute_Frontend_Shipping\\)\\) of method Mage_Sales_Model_Entity_Quote_Address_Attribute_Frontend_Shipping\\:\\:fetchTotals\\(\\) should be compatible with return type \\(array\\) of method Mage_Sales_Model_Entity_Quote_Address_Attribute_Frontend\\:\\:fetchTotals\\(\\)$#"
count: 1
- path: ../app/code/core/Mage/Sales/Model/Entity/Quote/Address/Attribute/Frontend/Shipping.php
+ path: app/code/core/Mage/Sales/Model/Entity/Quote/Address/Attribute/Frontend/Shipping.php
-
message: "#^Return type \\(\\$this\\(Mage_Sales_Model_Entity_Quote_Address_Attribute_Frontend_Subtotal\\)\\) of method Mage_Sales_Model_Entity_Quote_Address_Attribute_Frontend_Subtotal\\:\\:fetchTotals\\(\\) should be compatible with return type \\(array\\) of method Mage_Sales_Model_Entity_Quote_Address_Attribute_Frontend\\:\\:fetchTotals\\(\\)$#"
count: 1
- path: ../app/code/core/Mage/Sales/Model/Entity/Quote/Address/Attribute/Frontend/Subtotal.php
+ path: app/code/core/Mage/Sales/Model/Entity/Quote/Address/Attribute/Frontend/Subtotal.php
-
message: "#^Return type \\(\\$this\\(Mage_Sales_Model_Entity_Quote_Address_Attribute_Frontend_Tax\\)\\) of method Mage_Sales_Model_Entity_Quote_Address_Attribute_Frontend_Tax\\:\\:fetchTotals\\(\\) should be compatible with return type \\(array\\) of method Mage_Sales_Model_Entity_Quote_Address_Attribute_Frontend\\:\\:fetchTotals\\(\\)$#"
count: 1
- path: ../app/code/core/Mage/Sales/Model/Entity/Quote/Address/Attribute/Frontend/Tax.php
+ path: app/code/core/Mage/Sales/Model/Entity/Quote/Address/Attribute/Frontend/Tax.php
-
message: "#^Parameter \\#2 \\$condition of method Mage_Eav_Model_Entity_Collection_Abstract\\:\\:addAttributeToFilter\\(\\) expects array\\|string\\|null, int given\\.$#"
count: 1
- path: ../app/code/core/Mage/Sales/Model/Entity/Quote/Address/Collection.php
+ path: app/code/core/Mage/Sales/Model/Entity/Quote/Address/Collection.php
-
message: "#^Parameter \\#1 \\$read of method Mage_Eav_Model_Entity_Abstract\\:\\:setConnection\\(\\) expects string\\|Zend_Db_Adapter_Abstract, Varien_Db_Adapter_Interface\\|false given\\.$#"
count: 1
- path: ../app/code/core/Mage/Sales/Model/Entity/Quote/Address/Item.php
+ path: app/code/core/Mage/Sales/Model/Entity/Quote/Address/Item.php
-
message: "#^Parameter \\#2 \\$write of method Mage_Eav_Model_Entity_Abstract\\:\\:setConnection\\(\\) expects string\\|Zend_Db_Adapter_Abstract\\|null, Varien_Db_Adapter_Interface\\|false given\\.$#"
count: 1
- path: ../app/code/core/Mage/Sales/Model/Entity/Quote/Address/Item.php
+ path: app/code/core/Mage/Sales/Model/Entity/Quote/Address/Item.php
-
message: "#^Parameter \\#2 \\$condition of method Mage_Eav_Model_Entity_Collection_Abstract\\:\\:addAttributeToFilter\\(\\) expects array\\|string\\|null, int given\\.$#"
count: 1
- path: ../app/code/core/Mage/Sales/Model/Entity/Quote/Address/Item/Collection.php
+ path: app/code/core/Mage/Sales/Model/Entity/Quote/Address/Item/Collection.php
-
message: "#^Parameter \\#1 \\$read of method Mage_Eav_Model_Entity_Abstract\\:\\:setConnection\\(\\) expects string\\|Zend_Db_Adapter_Abstract, Varien_Db_Adapter_Interface\\|false given\\.$#"
count: 1
- path: ../app/code/core/Mage/Sales/Model/Entity/Quote/Address/Rate.php
+ path: app/code/core/Mage/Sales/Model/Entity/Quote/Address/Rate.php
-
message: "#^Parameter \\#2 \\$write of method Mage_Eav_Model_Entity_Abstract\\:\\:setConnection\\(\\) expects string\\|Zend_Db_Adapter_Abstract\\|null, Varien_Db_Adapter_Interface\\|false given\\.$#"
count: 1
- path: ../app/code/core/Mage/Sales/Model/Entity/Quote/Address/Rate.php
+ path: app/code/core/Mage/Sales/Model/Entity/Quote/Address/Rate.php
-
message: "#^Parameter \\#2 \\$condition of method Mage_Eav_Model_Entity_Collection_Abstract\\:\\:addAttributeToFilter\\(\\) expects array\\|string\\|null, int given\\.$#"
count: 1
- path: ../app/code/core/Mage/Sales/Model/Entity/Quote/Address/Rate/Collection.php
+ path: app/code/core/Mage/Sales/Model/Entity/Quote/Address/Rate/Collection.php
-
message: "#^Parameter \\#1 \\$read of method Mage_Eav_Model_Entity_Abstract\\:\\:setConnection\\(\\) expects string\\|Zend_Db_Adapter_Abstract, Varien_Db_Adapter_Interface\\|false given\\.$#"
count: 1
- path: ../app/code/core/Mage/Sales/Model/Entity/Quote/Item.php
+ path: app/code/core/Mage/Sales/Model/Entity/Quote/Item.php
-
message: "#^Parameter \\#2 \\$write of method Mage_Eav_Model_Entity_Abstract\\:\\:setConnection\\(\\) expects string\\|Zend_Db_Adapter_Abstract\\|null, Varien_Db_Adapter_Interface\\|false given\\.$#"
count: 1
- path: ../app/code/core/Mage/Sales/Model/Entity/Quote/Item.php
+ path: app/code/core/Mage/Sales/Model/Entity/Quote/Item.php
-
message: "#^If condition is always true\\.$#"
count: 1
- path: ../app/code/core/Mage/Sales/Model/Entity/Quote/Item/Collection.php
+ path: app/code/core/Mage/Sales/Model/Entity/Quote/Item/Collection.php
-
message: "#^Negated boolean expression is always false\\.$#"
count: 1
- path: ../app/code/core/Mage/Sales/Model/Entity/Quote/Item/Collection.php
+ path: app/code/core/Mage/Sales/Model/Entity/Quote/Item/Collection.php
-
message: "#^Right side of && is always true\\.$#"
count: 1
- path: ../app/code/core/Mage/Sales/Model/Entity/Quote/Item/Collection.php
+ path: app/code/core/Mage/Sales/Model/Entity/Quote/Item/Collection.php
-
message: "#^Parameter \\#1 \\$read of method Mage_Eav_Model_Entity_Abstract\\:\\:setConnection\\(\\) expects string\\|Zend_Db_Adapter_Abstract, Varien_Db_Adapter_Interface\\|false given\\.$#"
count: 1
- path: ../app/code/core/Mage/Sales/Model/Entity/Quote/Payment.php
+ path: app/code/core/Mage/Sales/Model/Entity/Quote/Payment.php
-
message: "#^Parameter \\#2 \\$write of method Mage_Eav_Model_Entity_Abstract\\:\\:setConnection\\(\\) expects string\\|Zend_Db_Adapter_Abstract\\|null, Varien_Db_Adapter_Interface\\|false given\\.$#"
count: 1
- path: ../app/code/core/Mage/Sales/Model/Entity/Quote/Payment.php
+ path: app/code/core/Mage/Sales/Model/Entity/Quote/Payment.php
-
message: "#^Parameter \\#2 \\$condition of method Mage_Eav_Model_Entity_Collection_Abstract\\:\\:addAttributeToFilter\\(\\) expects array\\|string\\|null, int given\\.$#"
count: 1
- path: ../app/code/core/Mage/Sales/Model/Entity/Quote/Payment/Collection.php
+ path: app/code/core/Mage/Sales/Model/Entity/Quote/Payment/Collection.php
-
message: "#^Parameter \\#1 \\$callback of method Varien_Data_Collection\\:\\:walk\\(\\) expects callable\\(\\)\\: mixed, 'delete' given\\.$#"
count: 1
- path: ../app/code/core/Mage/Sales/Model/Observer.php
+ path: app/code/core/Mage/Sales/Model/Observer.php
-
message: "#^Call to function is_null\\(\\) with Mage_Sales_Model_Resource_Order_Invoice_Collection will always evaluate to false\\.$#"
count: 1
- path: ../app/code/core/Mage/Sales/Model/Order.php
+ path: app/code/core/Mage/Sales/Model/Order.php
-
message: "#^Call to function is_null\\(\\) with iterable\\&Mage_Sales_Model_Resource_Order_Address_Collection will always evaluate to false\\.$#"
count: 1
- path: ../app/code/core/Mage/Sales/Model/Order.php
+ path: app/code/core/Mage/Sales/Model/Order.php
-
message: "#^Call to function is_null\\(\\) with iterable\\&Mage_Sales_Model_Resource_Order_Item_Collection will always evaluate to false\\.$#"
count: 1
- path: ../app/code/core/Mage/Sales/Model/Order.php
+ path: app/code/core/Mage/Sales/Model/Order.php
-
message: "#^Call to function is_null\\(\\) with iterable\\&Mage_Sales_Model_Resource_Order_Payment_Collection will always evaluate to false\\.$#"
count: 1
- path: ../app/code/core/Mage/Sales/Model/Order.php
+ path: app/code/core/Mage/Sales/Model/Order.php
-
message: "#^Call to function is_null\\(\\) with iterable\\&Mage_Sales_Model_Resource_Order_Status_History_Collection will always evaluate to false\\.$#"
count: 1
- path: ../app/code/core/Mage/Sales/Model/Order.php
+ path: app/code/core/Mage/Sales/Model/Order.php
-
message: "#^If condition is always true\\.$#"
count: 1
- path: ../app/code/core/Mage/Sales/Model/Order.php
+ path: app/code/core/Mage/Sales/Model/Order.php
-
message: "#^Parameter \\#1 \\$prefix of function uniqid expects string, int\\<0, max\\> given\\.$#"
count: 1
- path: ../app/code/core/Mage/Sales/Model/Order.php
+ path: app/code/core/Mage/Sales/Model/Order.php
-
message: "#^Property Mage_Sales_Model_Order\\:\\:\\$_addresses \\(iterable\\&Mage_Sales_Model_Resource_Order_Address_Collection\\) does not accept null\\.$#"
count: 1
- path: ../app/code/core/Mage/Sales/Model/Order.php
+ path: app/code/core/Mage/Sales/Model/Order.php
-
message: "#^Property Mage_Sales_Model_Order\\:\\:\\$_creditmemos \\(\\(iterable\\&Mage_Sales_Model_Resource_Order_Creditmemo_Collection\\)\\|false\\) does not accept null\\.$#"
count: 1
- path: ../app/code/core/Mage/Sales/Model/Order.php
+ path: app/code/core/Mage/Sales/Model/Order.php
-
message: "#^Property Mage_Sales_Model_Order\\:\\:\\$_invoices \\(Mage_Sales_Model_Resource_Order_Invoice_Collection\\) does not accept null\\.$#"
count: 1
- path: ../app/code/core/Mage/Sales/Model/Order.php
+ path: app/code/core/Mage/Sales/Model/Order.php
-
message: "#^Property Mage_Sales_Model_Order\\:\\:\\$_items \\(iterable\\&Mage_Sales_Model_Resource_Order_Item_Collection\\) does not accept null\\.$#"
count: 2
- path: ../app/code/core/Mage/Sales/Model/Order.php
+ path: app/code/core/Mage/Sales/Model/Order.php
-
message: "#^Property Mage_Sales_Model_Order\\:\\:\\$_payments \\(iterable\\&Mage_Sales_Model_Resource_Order_Payment_Collection\\) does not accept null\\.$#"
count: 1
- path: ../app/code/core/Mage/Sales/Model/Order.php
+ path: app/code/core/Mage/Sales/Model/Order.php
-
message: "#^Property Mage_Sales_Model_Order\\:\\:\\$_shipments \\(Mage_Sales_Model_Resource_Order_Shipment_Collection\\|false\\) does not accept null\\.$#"
count: 1
- path: ../app/code/core/Mage/Sales/Model/Order.php
+ path: app/code/core/Mage/Sales/Model/Order.php
-
message: "#^Property Mage_Sales_Model_Order\\:\\:\\$_statusHistory \\(iterable\\&Mage_Sales_Model_Resource_Order_Status_History_Collection\\) does not accept null\\.$#"
count: 1
- path: ../app/code/core/Mage/Sales/Model/Order.php
+ path: app/code/core/Mage/Sales/Model/Order.php
-
message: "#^Property Mage_Sales_Model_Order\\:\\:\\$_tracks \\(Mage_Sales_Model_Resource_Order_Shipment_Track_Collection\\) does not accept null\\.$#"
count: 1
- path: ../app/code/core/Mage/Sales/Model/Order.php
+ path: app/code/core/Mage/Sales/Model/Order.php
-
message: "#^Property Mage_Sales_Model_Order\\:\\:\\$_tracks \\(Mage_Sales_Model_Resource_Order_Shipment_Track_Collection\\) in empty\\(\\) is not falsy\\.$#"
count: 1
- path: ../app/code/core/Mage/Sales/Model/Order.php
+ path: app/code/core/Mage/Sales/Model/Order.php
-
message: "#^Negated boolean expression is always false\\.$#"
count: 1
- path: ../app/code/core/Mage/Sales/Model/Order/Address.php
+ path: app/code/core/Mage/Sales/Model/Order/Address.php
-
message: "#^Right side of && is always true\\.$#"
count: 1
- path: ../app/code/core/Mage/Sales/Model/Order/Address.php
+ path: app/code/core/Mage/Sales/Model/Order/Address.php
-
message: "#^Variable \\$oldArea might not be defined\\.$#"
count: 1
- path: ../app/code/core/Mage/Sales/Model/Order/Api.php
+ path: app/code/core/Mage/Sales/Model/Order/Api.php
-
message: "#^Variable \\$oldStore might not be defined\\.$#"
count: 1
- path: ../app/code/core/Mage/Sales/Model/Order/Api.php
+ path: app/code/core/Mage/Sales/Model/Order/Api.php
-
message: "#^Call to function is_null\\(\\) with iterable\\&Mage_Sales_Model_Resource_Order_Creditmemo_Comment_Collection will always evaluate to false\\.$#"
count: 1
- path: ../app/code/core/Mage/Sales/Model/Order/Creditmemo.php
+ path: app/code/core/Mage/Sales/Model/Order/Creditmemo.php
-
message: "#^Parameter \\#1 \\$string of function trim expects string, float given\\.$#"
count: 2
- path: ../app/code/core/Mage/Sales/Model/Order/Creditmemo.php
+ path: app/code/core/Mage/Sales/Model/Order/Creditmemo.php
-
message: "#^Property Mage_Sales_Model_Order_Creditmemo\\:\\:\\$_items \\(iterable\\&Mage_Sales_Model_Resource_Order_Creditmemo_Item_Collection\\) in empty\\(\\) is not falsy\\.$#"
count: 1
- path: ../app/code/core/Mage/Sales/Model/Order/Creditmemo.php
+ path: app/code/core/Mage/Sales/Model/Order/Creditmemo.php
-
message: "#^Right side of && is always true\\.$#"
count: 1
- path: ../app/code/core/Mage/Sales/Model/Order/Creditmemo.php
+ path: app/code/core/Mage/Sales/Model/Order/Creditmemo.php
-
message: "#^If condition is always true\\.$#"
count: 1
- path: ../app/code/core/Mage/Sales/Model/Order/Creditmemo/Comment.php
+ path: app/code/core/Mage/Sales/Model/Order/Creditmemo/Comment.php
-
message: "#^Right side of && is always true\\.$#"
count: 1
- path: ../app/code/core/Mage/Sales/Model/Order/Creditmemo/Comment.php
+ path: app/code/core/Mage/Sales/Model/Order/Creditmemo/Comment.php
-
message: "#^Unreachable statement \\- code above always terminates\\.$#"
count: 1
- path: ../app/code/core/Mage/Sales/Model/Order/Creditmemo/Comment.php
+ path: app/code/core/Mage/Sales/Model/Order/Creditmemo/Comment.php
-
message: "#^If condition is always true\\.$#"
count: 1
- path: ../app/code/core/Mage/Sales/Model/Order/Creditmemo/Item.php
+ path: app/code/core/Mage/Sales/Model/Order/Creditmemo/Item.php
-
message: "#^Right side of && is always true\\.$#"
count: 1
- path: ../app/code/core/Mage/Sales/Model/Order/Creditmemo/Item.php
+ path: app/code/core/Mage/Sales/Model/Order/Creditmemo/Item.php
-
message: "#^Parameter \\#2 \\$options of method Mage_Directory_Model_Currency\\:\\:format\\(\\) expects array, null given\\.$#"
count: 1
- path: ../app/code/core/Mage/Sales/Model/Order/Creditmemo/Total/Shipping.php
+ path: app/code/core/Mage/Sales/Model/Order/Creditmemo/Total/Shipping.php
-
message: "#^Call to function is_null\\(\\) with iterable\\&Mage_Sales_Model_Resource_Order_Invoice_Comment_Collection will always evaluate to false\\.$#"
count: 1
- path: ../app/code/core/Mage/Sales/Model/Order/Invoice.php
+ path: app/code/core/Mage/Sales/Model/Order/Invoice.php
-
message: "#^Cannot call method addAttributeToFilter\\(\\) on Mage_Core_Model_Resource_Db_Collection_Abstract\\|false\\.$#"
count: 1
- path: ../app/code/core/Mage/Sales/Model/Order/Invoice.php
+ path: app/code/core/Mage/Sales/Model/Order/Invoice.php
-
message: "#^Property Mage_Sales_Model_Order_Invoice\\:\\:\\$_comments \\(iterable\\&Mage_Sales_Model_Resource_Order_Invoice_Comment_Collection\\) does not accept null\\.$#"
count: 1
- path: ../app/code/core/Mage/Sales/Model/Order/Invoice.php
+ path: app/code/core/Mage/Sales/Model/Order/Invoice.php
-
message: "#^Property Mage_Sales_Model_Order_Invoice\\:\\:\\$_items \\(iterable\\&Mage_Sales_Model_Resource_Order_Invoice_Item_Collection\\) does not accept null\\.$#"
count: 1
- path: ../app/code/core/Mage/Sales/Model/Order/Invoice.php
+ path: app/code/core/Mage/Sales/Model/Order/Invoice.php
-
message: "#^Property Mage_Sales_Model_Order_Invoice\\:\\:\\$_items \\(iterable\\&Mage_Sales_Model_Resource_Order_Invoice_Item_Collection\\) in empty\\(\\) is not falsy\\.$#"
count: 1
- path: ../app/code/core/Mage/Sales/Model/Order/Invoice.php
+ path: app/code/core/Mage/Sales/Model/Order/Invoice.php
-
message: "#^Property Mage_Sales_Model_Order_Invoice\\:\\:\\$_order \\(Mage_Sales_Model_Order\\) does not accept null\\.$#"
count: 1
- path: ../app/code/core/Mage/Sales/Model/Order/Invoice.php
+ path: app/code/core/Mage/Sales/Model/Order/Invoice.php
-
message: "#^Property Varien_Object\\:\\:\\$_origData \\(array\\) does not accept null\\.$#"
count: 1
- path: ../app/code/core/Mage/Sales/Model/Order/Invoice.php
+ path: app/code/core/Mage/Sales/Model/Order/Invoice.php
-
message: "#^Right side of && is always true\\.$#"
count: 1
- path: ../app/code/core/Mage/Sales/Model/Order/Invoice.php
+ path: app/code/core/Mage/Sales/Model/Order/Invoice.php
-
message: "#^Parameter \\#1 \\$incrementId of method Mage_Sales_Model_Order_Invoice\\:\\:loadByIncrementId\\(\\) expects string, int given\\.$#"
count: 1
- path: ../app/code/core/Mage/Sales/Model/Order/Invoice/Api.php
+ path: app/code/core/Mage/Sales/Model/Order/Invoice/Api.php
-
message: "#^If condition is always true\\.$#"
count: 1
- path: ../app/code/core/Mage/Sales/Model/Order/Invoice/Comment.php
+ path: app/code/core/Mage/Sales/Model/Order/Invoice/Comment.php
-
message: "#^Right side of && is always true\\.$#"
count: 1
- path: ../app/code/core/Mage/Sales/Model/Order/Invoice/Comment.php
+ path: app/code/core/Mage/Sales/Model/Order/Invoice/Comment.php
-
message: "#^Unreachable statement \\- code above always terminates\\.$#"
count: 1
- path: ../app/code/core/Mage/Sales/Model/Order/Invoice/Comment.php
+ path: app/code/core/Mage/Sales/Model/Order/Invoice/Comment.php
-
message: "#^Call to function is_null\\(\\) with Mage_Sales_Model_Order_Item will always evaluate to false\\.$#"
count: 1
- path: ../app/code/core/Mage/Sales/Model/Order/Invoice/Item.php
+ path: app/code/core/Mage/Sales/Model/Order/Invoice/Item.php
-
message: "#^If condition is always true\\.$#"
count: 2
- path: ../app/code/core/Mage/Sales/Model/Order/Invoice/Item.php
+ path: app/code/core/Mage/Sales/Model/Order/Invoice/Item.php
-
message: "#^Negated boolean expression is always false\\.$#"
count: 1
- path: ../app/code/core/Mage/Sales/Model/Order/Invoice/Item.php
+ path: app/code/core/Mage/Sales/Model/Order/Invoice/Item.php
-
message: "#^Property Mage_Sales_Model_Order_Invoice_Item\\:\\:\\$_orderItem \\(Mage_Sales_Model_Order_Item\\) does not accept Varien_Object\\|null\\.$#"
count: 1
- path: ../app/code/core/Mage/Sales/Model/Order/Invoice/Item.php
+ path: app/code/core/Mage/Sales/Model/Order/Invoice/Item.php
-
message: "#^Right side of && is always true\\.$#"
count: 1
- path: ../app/code/core/Mage/Sales/Model/Order/Invoice/Item.php
+ path: app/code/core/Mage/Sales/Model/Order/Invoice/Item.php
-
message: "#^Call to an undefined method Mage_Catalog_Model_Product_Type_Abstract\\:\\:getForceApplyDiscountToParentItem\\(\\)\\.$#"
count: 1
- path: ../app/code/core/Mage/Sales/Model/Order/Item.php
+ path: app/code/core/Mage/Sales/Model/Order/Item.php
-
message: "#^Call to function is_null\\(\\) with Mage_Sales_Model_Order will always evaluate to false\\.$#"
count: 1
- path: ../app/code/core/Mage/Sales/Model/Order/Item.php
+ path: app/code/core/Mage/Sales/Model/Order/Item.php
-
message: "#^Result of && is always false\\.$#"
count: 1
- path: ../app/code/core/Mage/Sales/Model/Order/Item.php
+ path: app/code/core/Mage/Sales/Model/Order/Item.php
-
message: "#^Right side of && is always true\\.$#"
count: 1
- path: ../app/code/core/Mage/Sales/Model/Order/Item.php
+ path: app/code/core/Mage/Sales/Model/Order/Item.php
-
message: "#^If condition is always false\\.$#"
count: 1
- path: ../app/code/core/Mage/Sales/Model/Order/Payment.php
+ path: app/code/core/Mage/Sales/Model/Order/Payment.php
-
message: "#^If condition is always true\\.$#"
count: 2
- path: ../app/code/core/Mage/Sales/Model/Order/Payment.php
+ path: app/code/core/Mage/Sales/Model/Order/Payment.php
-
message: "#^Method Mage_Sales_Model_Order_Payment\\:\\:_addTransaction\\(\\) should return Mage_Sales_Model_Order_Payment_Transaction\\|null but return statement is missing\\.$#"
count: 1
- path: ../app/code/core/Mage/Sales/Model/Order/Payment.php
+ path: app/code/core/Mage/Sales/Model/Order/Payment.php
-
message: "#^Parameter \\#1 \\$invoice of method Mage_Sales_Model_Order_Payment\\:\\:capture\\(\\) expects Mage_Sales_Model_Order_Invoice, null given\\.$#"
count: 1
- path: ../app/code/core/Mage/Sales/Model/Order/Payment.php
+ path: app/code/core/Mage/Sales/Model/Order/Payment.php
-
message: "#^Parameter \\#1 \\$setFailsafe of method Mage_Sales_Model_Order_Payment_Transaction\\:\\:isFailsafe\\(\\) expects null, bool given\\.$#"
count: 2
- path: ../app/code/core/Mage/Sales/Model/Order/Payment.php
+ path: app/code/core/Mage/Sales/Model/Order/Payment.php
-
message: "#^Parameter \\#1 \\$txnId of method Mage_Sales_Model_Order_Payment\\:\\:_lookupTransaction\\(\\) expects string, false given\\.$#"
count: 1
- path: ../app/code/core/Mage/Sales/Model/Order/Payment.php
+ path: app/code/core/Mage/Sales/Model/Order/Payment.php
-
message: "#^Parameter \\#1 \\$txnId of method Mage_Sales_Model_Order_Payment\\:\\:_lookupTransaction\\(\\) expects string, null given\\.$#"
count: 1
- path: ../app/code/core/Mage/Sales/Model/Order/Payment.php
+ path: app/code/core/Mage/Sales/Model/Order/Payment.php
-
message: "#^Property Mage_Sales_Model_Order_Payment\\:\\:\\$_canVoidLookup \\(string\\) does not accept bool\\.$#"
count: 2
- path: ../app/code/core/Mage/Sales/Model/Order/Payment.php
+ path: app/code/core/Mage/Sales/Model/Order/Payment.php
-
message: "#^Right side of && is always true\\.$#"
count: 1
- path: ../app/code/core/Mage/Sales/Model/Order/Payment.php
+ path: app/code/core/Mage/Sales/Model/Order/Payment.php
-
message: "#^Call to function is_null\\(\\) with int will always evaluate to false\\.$#"
count: 1
- path: ../app/code/core/Mage/Sales/Model/Order/Payment/Transaction.php
+ path: app/code/core/Mage/Sales/Model/Order/Payment/Transaction.php
-
message: "#^If condition is always true\\.$#"
count: 1
- path: ../app/code/core/Mage/Sales/Model/Order/Payment/Transaction.php
+ path: app/code/core/Mage/Sales/Model/Order/Payment/Transaction.php
-
message: "#^Negated boolean expression is always false\\.$#"
count: 2
- path: ../app/code/core/Mage/Sales/Model/Order/Payment/Transaction.php
+ path: app/code/core/Mage/Sales/Model/Order/Payment/Transaction.php
-
message: "#^Parameter \\#1 \\$order of method Mage_Sales_Model_Order_Payment_Transaction\\:\\:setOrder\\(\\) expects bool\\|Mage_Sales_Model_Order_Payment\\|null, Mage_Sales_Model_Order given\\.$#"
count: 1
- path: ../app/code/core/Mage/Sales/Model/Order/Payment/Transaction.php
+ path: app/code/core/Mage/Sales/Model/Order/Payment/Transaction.php
-
message: "#^Parameter \\#1 \\$order of method Mage_Sales_Model_Resource_Order_Collection_Abstract\\:\\:setOrderFilter\\(\\) expects int\\|Mage_Sales_Model_Order, Mage_Sales_Model_Order_Payment given\\.$#"
count: 1
- path: ../app/code/core/Mage/Sales/Model/Order/Payment/Transaction.php
+ path: app/code/core/Mage/Sales/Model/Order/Payment/Transaction.php
-
message: "#^Parameter \\#1 \\$shouldSave of method Mage_Sales_Model_Order_Payment_Transaction\\:\\:closeAuthorization\\(\\) expects bool, string given\\.$#"
count: 1
- path: ../app/code/core/Mage/Sales/Model/Order/Payment/Transaction.php
+ path: app/code/core/Mage/Sales/Model/Order/Payment/Transaction.php
-
message: "#^Parameter \\#1 \\$txnId of method Mage_Sales_Model_Order_Payment_Transaction\\:\\:_beforeLoadByTxnId\\(\\) expects int, string given\\.$#"
count: 1
- path: ../app/code/core/Mage/Sales/Model/Order/Payment/Transaction.php
+ path: app/code/core/Mage/Sales/Model/Order/Payment/Transaction.php
-
message: "#^Property Mage_Sales_Model_Order_Payment_Transaction\\:\\:\\$_identifiedChildren \\(array\\) does not accept false\\.$#"
count: 1
- path: ../app/code/core/Mage/Sales/Model/Order/Payment/Transaction.php
+ path: app/code/core/Mage/Sales/Model/Order/Payment/Transaction.php
-
message: "#^Property Mage_Sales_Model_Order_Payment_Transaction\\:\\:\\$_order \\(Mage_Sales_Model_Order_Payment\\) does not accept Mage_Sales_Model_Order\\.$#"
count: 2
- path: ../app/code/core/Mage/Sales/Model/Order/Payment/Transaction.php
+ path: app/code/core/Mage/Sales/Model/Order/Payment/Transaction.php
-
message: "#^Property Mage_Sales_Model_Order_Payment_Transaction\\:\\:\\$_order \\(Mage_Sales_Model_Order_Payment\\) does not accept false\\.$#"
count: 1
- path: ../app/code/core/Mage/Sales/Model/Order/Payment/Transaction.php
+ path: app/code/core/Mage/Sales/Model/Order/Payment/Transaction.php
-
message: "#^Property Mage_Sales_Model_Order_Payment_Transaction\\:\\:\\$_parentTransaction \\(\\$this\\(Mage_Sales_Model_Order_Payment_Transaction\\)\\) does not accept Mage_Sales_Model_Order_Payment_Transaction\\.$#"
count: 1
- path: ../app/code/core/Mage/Sales/Model/Order/Payment/Transaction.php
+ path: app/code/core/Mage/Sales/Model/Order/Payment/Transaction.php
-
message: "#^Property Mage_Sales_Model_Order_Payment_Transaction\\:\\:\\$_parentTransaction \\(\\$this\\(Mage_Sales_Model_Order_Payment_Transaction\\)\\) does not accept false\\.$#"
count: 2
- path: ../app/code/core/Mage/Sales/Model/Order/Payment/Transaction.php
+ path: app/code/core/Mage/Sales/Model/Order/Payment/Transaction.php
-
message: "#^Right side of && is always true\\.$#"
count: 1
- path: ../app/code/core/Mage/Sales/Model/Order/Payment/Transaction.php
+ path: app/code/core/Mage/Sales/Model/Order/Payment/Transaction.php
-
message: "#^Ternary operator condition is always true\\.$#"
count: 1
- path: ../app/code/core/Mage/Sales/Model/Order/Payment/Transaction.php
+ path: app/code/core/Mage/Sales/Model/Order/Payment/Transaction.php
-
message: "#^If condition is always false\\.$#"
count: 2
- path: ../app/code/core/Mage/Sales/Model/Order/Pdf/Abstract.php
+ path: app/code/core/Mage/Sales/Model/Order/Pdf/Abstract.php
-
message: "#^If condition is always true\\.$#"
count: 1
- path: ../app/code/core/Mage/Sales/Model/Order/Pdf/Abstract.php
+ path: app/code/core/Mage/Sales/Model/Order/Pdf/Abstract.php
-
message: "#^Instanceof between Mage_Core_Model_Abstract\\|false and Mage_Sales_Model_Order_Pdf_Total_Default will always evaluate to false\\.$#"
count: 1
- path: ../app/code/core/Mage/Sales/Model/Order/Pdf/Abstract.php
+ path: app/code/core/Mage/Sales/Model/Order/Pdf/Abstract.php
-
message: "#^Method Mage_Sales_Model_Order_Pdf_Abstract\\:\\:getAlignCenter\\(\\) should return int but returns float\\.$#"
count: 1
- path: ../app/code/core/Mage/Sales/Model/Order/Pdf/Abstract.php
+ path: app/code/core/Mage/Sales/Model/Order/Pdf/Abstract.php
-
message: "#^Method Mage_Sales_Model_Order_Pdf_Abstract\\:\\:getAlignRight\\(\\) should return int but returns float\\.$#"
count: 1
- path: ../app/code/core/Mage/Sales/Model/Order/Pdf/Abstract.php
+ path: app/code/core/Mage/Sales/Model/Order/Pdf/Abstract.php
-
message: "#^Variable \\$order might not be defined\\.$#"
count: 12
- path: ../app/code/core/Mage/Sales/Model/Order/Pdf/Abstract.php
+ path: app/code/core/Mage/Sales/Model/Order/Pdf/Abstract.php
-
message: "#^Variable \\$shipment might not be defined\\.$#"
count: 1
- path: ../app/code/core/Mage/Sales/Model/Order/Pdf/Abstract.php
+ path: app/code/core/Mage/Sales/Model/Order/Pdf/Abstract.php
-
message: "#^Variable \\$shippingAddress might not be defined\\.$#"
count: 1
- path: ../app/code/core/Mage/Sales/Model/Order/Pdf/Abstract.php
+ path: app/code/core/Mage/Sales/Model/Order/Pdf/Abstract.php
-
message: "#^Variable \\$shippingMethod might not be defined\\.$#"
count: 1
- path: ../app/code/core/Mage/Sales/Model/Order/Pdf/Abstract.php
+ path: app/code/core/Mage/Sales/Model/Order/Pdf/Abstract.php
-
message: "#^Parameter \\#1 \\$object of method Mage_Sales_Model_Order_Pdf_Abstract\\:\\:_setFontBold\\(\\) expects Zend_Pdf_Page, Zend_Pdf_Style given\\.$#"
count: 1
- path: ../app/code/core/Mage/Sales/Model/Order/Pdf/Creditmemo.php
+ path: app/code/core/Mage/Sales/Model/Order/Pdf/Creditmemo.php
-
message: "#^Parameter \\#2 \\$store of method Mage_Sales_Model_Order_Pdf_Abstract\\:\\:insertAddress\\(\\) expects null, Mage_Core_Model_Store given\\.$#"
count: 1
- path: ../app/code/core/Mage/Sales/Model/Order/Pdf/Creditmemo.php
+ path: app/code/core/Mage/Sales/Model/Order/Pdf/Creditmemo.php
-
message: "#^Parameter \\#2 \\$store of method Mage_Sales_Model_Order_Pdf_Abstract\\:\\:insertLogo\\(\\) expects null, Mage_Core_Model_Store given\\.$#"
count: 1
- path: ../app/code/core/Mage/Sales/Model/Order/Pdf/Creditmemo.php
+ path: app/code/core/Mage/Sales/Model/Order/Pdf/Creditmemo.php
-
message: "#^Variable \\$creditmemo might not be defined\\.$#"
count: 1
- path: ../app/code/core/Mage/Sales/Model/Order/Pdf/Creditmemo.php
+ path: app/code/core/Mage/Sales/Model/Order/Pdf/Creditmemo.php
-
message: "#^Parameter \\#1 \\$object of method Mage_Sales_Model_Order_Pdf_Abstract\\:\\:_setFontBold\\(\\) expects Zend_Pdf_Page, Zend_Pdf_Style given\\.$#"
count: 1
- path: ../app/code/core/Mage/Sales/Model/Order/Pdf/Invoice.php
+ path: app/code/core/Mage/Sales/Model/Order/Pdf/Invoice.php
-
message: "#^Parameter \\#2 \\$store of method Mage_Sales_Model_Order_Pdf_Abstract\\:\\:insertAddress\\(\\) expects null, Mage_Core_Model_Store given\\.$#"
count: 1
- path: ../app/code/core/Mage/Sales/Model/Order/Pdf/Invoice.php
+ path: app/code/core/Mage/Sales/Model/Order/Pdf/Invoice.php
-
message: "#^Parameter \\#2 \\$store of method Mage_Sales_Model_Order_Pdf_Abstract\\:\\:insertLogo\\(\\) expects null, Mage_Core_Model_Store given\\.$#"
count: 1
- path: ../app/code/core/Mage/Sales/Model/Order/Pdf/Invoice.php
+ path: app/code/core/Mage/Sales/Model/Order/Pdf/Invoice.php
-
message: "#^Call to function is_null\\(\\) with Mage_Core_Model_Abstract will always evaluate to false\\.$#"
count: 1
- path: ../app/code/core/Mage/Sales/Model/Order/Pdf/Items/Abstract.php
+ path: app/code/core/Mage/Sales/Model/Order/Pdf/Items/Abstract.php
-
message: "#^Call to function is_null\\(\\) with Mage_Sales_Model_Order will always evaluate to false\\.$#"
count: 1
- path: ../app/code/core/Mage/Sales/Model/Order/Pdf/Items/Abstract.php
+ path: app/code/core/Mage/Sales/Model/Order/Pdf/Items/Abstract.php
-
message: "#^Call to function is_null\\(\\) with Mage_Sales_Model_Order_Pdf_Abstract will always evaluate to false\\.$#"
count: 1
- path: ../app/code/core/Mage/Sales/Model/Order/Pdf/Items/Abstract.php
+ path: app/code/core/Mage/Sales/Model/Order/Pdf/Items/Abstract.php
-
message: "#^Call to function is_null\\(\\) with Varien_Object will always evaluate to false\\.$#"
count: 1
- path: ../app/code/core/Mage/Sales/Model/Order/Pdf/Items/Abstract.php
+ path: app/code/core/Mage/Sales/Model/Order/Pdf/Items/Abstract.php
-
message: "#^Call to function is_null\\(\\) with Zend_Pdf_Page will always evaluate to false\\.$#"
count: 1
- path: ../app/code/core/Mage/Sales/Model/Order/Pdf/Items/Abstract.php
+ path: app/code/core/Mage/Sales/Model/Order/Pdf/Items/Abstract.php
-
message: "#^Method Mage_Sales_Model_Order_Pdf_Items_Abstract\\:\\:getSku\\(\\) should return string but returns array\\.$#"
count: 1
- path: ../app/code/core/Mage/Sales/Model/Order/Pdf/Items/Abstract.php
+ path: app/code/core/Mage/Sales/Model/Order/Pdf/Items/Abstract.php
-
message: "#^Parameter \\#1 \\$item of method Mage_Sales_Model_Order_Pdf_Items_Abstract\\:\\:getSku\\(\\) expects Mage_Sales_Model_Order_Creditmemo_Item\\|Mage_Sales_Model_Order_Invoice_Item, Varien_Object given\\.$#"
count: 1
- path: ../app/code/core/Mage/Sales/Model/Order/Pdf/Items/Creditmemo/Default.php
+ path: app/code/core/Mage/Sales/Model/Order/Pdf/Items/Creditmemo/Default.php
-
message: "#^Parameter \\#1 \\$item of method Mage_Sales_Model_Order_Pdf_Items_Abstract\\:\\:getSku\\(\\) expects Mage_Sales_Model_Order_Creditmemo_Item\\|Mage_Sales_Model_Order_Invoice_Item, Varien_Object given\\.$#"
count: 1
- path: ../app/code/core/Mage/Sales/Model/Order/Pdf/Items/Invoice/Default.php
+ path: app/code/core/Mage/Sales/Model/Order/Pdf/Items/Invoice/Default.php
-
message: "#^Parameter \\#1 \\$item of method Mage_Sales_Model_Order_Pdf_Items_Abstract\\:\\:getSku\\(\\) expects Mage_Sales_Model_Order_Creditmemo_Item\\|Mage_Sales_Model_Order_Invoice_Item, Varien_Object given\\.$#"
count: 1
- path: ../app/code/core/Mage/Sales/Model/Order/Pdf/Items/Shipment/Default.php
+ path: app/code/core/Mage/Sales/Model/Order/Pdf/Items/Shipment/Default.php
-
message: "#^Parameter \\#1 \\$object of method Mage_Sales_Model_Order_Pdf_Abstract\\:\\:_setFontBold\\(\\) expects Zend_Pdf_Page, Zend_Pdf_Style given\\.$#"
count: 1
- path: ../app/code/core/Mage/Sales/Model/Order/Pdf/Shipment.php
+ path: app/code/core/Mage/Sales/Model/Order/Pdf/Shipment.php
-
message: "#^Parameter \\#2 \\$obj of method Mage_Sales_Model_Order_Pdf_Abstract\\:\\:insertOrder\\(\\) expects Mage_Sales_Model_Order, Mage_Sales_Model_Order_Shipment given\\.$#"
count: 1
- path: ../app/code/core/Mage/Sales/Model/Order/Pdf/Shipment.php
+ path: app/code/core/Mage/Sales/Model/Order/Pdf/Shipment.php
-
message: "#^Parameter \\#2 \\$store of method Mage_Sales_Model_Order_Pdf_Abstract\\:\\:insertAddress\\(\\) expects null, Mage_Core_Model_Store given\\.$#"
count: 1
- path: ../app/code/core/Mage/Sales/Model/Order/Pdf/Shipment.php
+ path: app/code/core/Mage/Sales/Model/Order/Pdf/Shipment.php
-
message: "#^Parameter \\#2 \\$store of method Mage_Sales_Model_Order_Pdf_Abstract\\:\\:insertLogo\\(\\) expects null, Mage_Core_Model_Store given\\.$#"
count: 1
- path: ../app/code/core/Mage/Sales/Model/Order/Pdf/Shipment.php
+ path: app/code/core/Mage/Sales/Model/Order/Pdf/Shipment.php
-
message: "#^Variable \\$shipment might not be defined\\.$#"
count: 1
- path: ../app/code/core/Mage/Sales/Model/Order/Pdf/Shipment.php
+ path: app/code/core/Mage/Sales/Model/Order/Pdf/Shipment.php
-
message: "#^Parameter \\#1 \\$text of method Zend_Pdf_Canvas_Abstract\\:\\:drawText\\(\\) expects string, \\(float\\|int\\) given\\.$#"
count: 1
- path: ../app/code/core/Mage/Sales/Model/Order/Pdf/Shipment/Packaging.php
+ path: app/code/core/Mage/Sales/Model/Order/Pdf/Shipment/Packaging.php
-
message: "#^Call to function is_null\\(\\) with Mage_Sales_Model_Resource_Order_Shipment_Comment_Collection will always evaluate to false\\.$#"
count: 1
- path: ../app/code/core/Mage/Sales/Model/Order/Shipment.php
+ path: app/code/core/Mage/Sales/Model/Order/Shipment.php
-
message: "#^Property Mage_Sales_Model_Order_Shipment\\:\\:\\$_items \\(Mage_Sales_Model_Resource_Order_Shipment_Item_Collection\\) in empty\\(\\) is not falsy\\.$#"
count: 1
- path: ../app/code/core/Mage/Sales/Model/Order/Shipment.php
+ path: app/code/core/Mage/Sales/Model/Order/Shipment.php
-
message: "#^Property Mage_Sales_Model_Order_Shipment\\:\\:\\$_tracks \\(Mage_Sales_Model_Resource_Order_Shipment_Track_Collection\\) in empty\\(\\) is not falsy\\.$#"
count: 1
- path: ../app/code/core/Mage/Sales/Model/Order/Shipment.php
+ path: app/code/core/Mage/Sales/Model/Order/Shipment.php
-
message: "#^Right side of && is always true\\.$#"
count: 1
- path: ../app/code/core/Mage/Sales/Model/Order/Shipment.php
+ path: app/code/core/Mage/Sales/Model/Order/Shipment.php
-
message: "#^Call to an undefined method Mage_Eav_Model_Entity_Abstract\\:\\:getStoreId\\(\\)\\.$#"
count: 1
- path: ../app/code/core/Mage/Sales/Model/Order/Shipment/Api.php
+ path: app/code/core/Mage/Sales/Model/Order/Shipment/Api.php
-
message: "#^Call to function is_object\\(\\) with array\\|string will always evaluate to false\\.$#"
count: 1
- path: ../app/code/core/Mage/Sales/Model/Order/Shipment/Api.php
+ path: app/code/core/Mage/Sales/Model/Order/Shipment/Api.php
-
message: "#^If condition is always true\\.$#"
count: 1
- path: ../app/code/core/Mage/Sales/Model/Order/Shipment/Api.php
+ path: app/code/core/Mage/Sales/Model/Order/Shipment/Api.php
-
message: "#^Parameter \\#1 \\$comment of method Mage_Sales_Model_Order_Shipment\\:\\:addComment\\(\\) expects Mage_Sales_Model_Order_Shipment_Comment, string given\\.$#"
count: 1
- path: ../app/code/core/Mage/Sales/Model/Order/Shipment/Api.php
+ path: app/code/core/Mage/Sales/Model/Order/Shipment/Api.php
-
message: "#^Parameter \\#1 \\$comment of method Mage_Sales_Model_Order_Shipment\\:\\:addComment\\(\\) expects Mage_Sales_Model_Order_Shipment_Comment, string\\|null given\\.$#"
count: 1
- path: ../app/code/core/Mage/Sales/Model/Order/Shipment/Api.php
+ path: app/code/core/Mage/Sales/Model/Order/Shipment/Api.php
-
message: "#^Parameter \\#1 \\$object of method Mage_Sales_Model_Order_Shipment_Api\\:\\:_getCarriers\\(\\) expects Mage_Eav_Model_Entity_Abstract, Mage_Sales_Model_Order given\\.$#"
count: 1
- path: ../app/code/core/Mage/Sales/Model/Order/Shipment/Api.php
+ path: app/code/core/Mage/Sales/Model/Order/Shipment/Api.php
-
message: "#^Parameter \\#1 \\$object of method Mage_Sales_Model_Order_Shipment_Api\\:\\:_getCarriers\\(\\) expects Mage_Eav_Model_Entity_Abstract, Mage_Sales_Model_Order_Shipment given\\.$#"
count: 1
- path: ../app/code/core/Mage/Sales/Model/Order/Shipment/Api.php
+ path: app/code/core/Mage/Sales/Model/Order/Shipment/Api.php
-
message: "#^Unreachable statement \\- code above always terminates\\.$#"
count: 1
- path: ../app/code/core/Mage/Sales/Model/Order/Shipment/Api.php
+ path: app/code/core/Mage/Sales/Model/Order/Shipment/Api.php
-
message: "#^Parameter \\#1 \\$comment of method Mage_Sales_Model_Order_Shipment\\:\\:addComment\\(\\) expects Mage_Sales_Model_Order_Shipment_Comment, string\\|null given\\.$#"
count: 1
- path: ../app/code/core/Mage/Sales/Model/Order/Shipment/Api/V2.php
+ path: app/code/core/Mage/Sales/Model/Order/Shipment/Api/V2.php
-
message: "#^Parameter \\#1 \\$object of method Mage_Sales_Model_Order_Shipment_Api\\:\\:_getCarriers\\(\\) expects Mage_Eav_Model_Entity_Abstract, Mage_Sales_Model_Order given\\.$#"
count: 1
- path: ../app/code/core/Mage/Sales/Model/Order/Shipment/Api/V2.php
+ path: app/code/core/Mage/Sales/Model/Order/Shipment/Api/V2.php
-
message: "#^Unreachable statement \\- code above always terminates\\.$#"
count: 1
- path: ../app/code/core/Mage/Sales/Model/Order/Shipment/Api/V2.php
+ path: app/code/core/Mage/Sales/Model/Order/Shipment/Api/V2.php
-
message: "#^If condition is always true\\.$#"
count: 1
- path: ../app/code/core/Mage/Sales/Model/Order/Shipment/Comment.php
+ path: app/code/core/Mage/Sales/Model/Order/Shipment/Comment.php
-
message: "#^Right side of && is always true\\.$#"
count: 1
- path: ../app/code/core/Mage/Sales/Model/Order/Shipment/Comment.php
+ path: app/code/core/Mage/Sales/Model/Order/Shipment/Comment.php
-
message: "#^Unreachable statement \\- code above always terminates\\.$#"
count: 1
- path: ../app/code/core/Mage/Sales/Model/Order/Shipment/Comment.php
+ path: app/code/core/Mage/Sales/Model/Order/Shipment/Comment.php
-
message: "#^If condition is always true\\.$#"
count: 1
- path: ../app/code/core/Mage/Sales/Model/Order/Shipment/Item.php
+ path: app/code/core/Mage/Sales/Model/Order/Shipment/Item.php
-
message: "#^Right side of && is always true\\.$#"
count: 1
- path: ../app/code/core/Mage/Sales/Model/Order/Shipment/Item.php
+ path: app/code/core/Mage/Sales/Model/Order/Shipment/Item.php
-
message: "#^If condition is always true\\.$#"
count: 1
- path: ../app/code/core/Mage/Sales/Model/Order/Shipment/Track.php
+ path: app/code/core/Mage/Sales/Model/Order/Shipment/Track.php
-
message: "#^Right side of && is always true\\.$#"
count: 1
- path: ../app/code/core/Mage/Sales/Model/Order/Shipment/Track.php
+ path: app/code/core/Mage/Sales/Model/Order/Shipment/Track.php
-
message: "#^Unreachable statement \\- code above always terminates\\.$#"
count: 1
- path: ../app/code/core/Mage/Sales/Model/Order/Shipment/Track.php
+ path: app/code/core/Mage/Sales/Model/Order/Shipment/Track.php
-
message: "#^If condition is always true\\.$#"
count: 2
- path: ../app/code/core/Mage/Sales/Model/Order/Status/History.php
+ path: app/code/core/Mage/Sales/Model/Order/Status/History.php
-
message: "#^Property Mage_Sales_Model_Order_Status_History\\:\\:\\$_shouldSetOrderBeforeSave is never read, only written\\.$#"
count: 1
- path: ../app/code/core/Mage/Sales/Model/Order/Status/History.php
+ path: app/code/core/Mage/Sales/Model/Order/Status/History.php
-
message: "#^Right side of && is always true\\.$#"
count: 1
- path: ../app/code/core/Mage/Sales/Model/Order/Status/History.php
+ path: app/code/core/Mage/Sales/Model/Order/Status/History.php
-
message: "#^Unreachable statement \\- code above always terminates\\.$#"
count: 1
- path: ../app/code/core/Mage/Sales/Model/Order/Status/History.php
+ path: app/code/core/Mage/Sales/Model/Order/Status/History.php
-
message: "#^Instanceof between Mage_Core_Model_Abstract\\|false and Mage_Sales_Model_Order_Total_Abstract will always evaluate to false\\.$#"
count: 1
- path: ../app/code/core/Mage/Sales/Model/Order/Total/Config/Base.php
+ path: app/code/core/Mage/Sales/Model/Order/Total/Config/Base.php
-
message: "#^Unreachable statement \\- code above always terminates\\.$#"
count: 1
- path: ../app/code/core/Mage/Sales/Model/Order/Total/Config/Base.php
+ path: app/code/core/Mage/Sales/Model/Order/Total/Config/Base.php
-
message: "#^Right side of && is always true\\.$#"
count: 1
- path: ../app/code/core/Mage/Sales/Model/Payment/Method/Billing/AgreementAbstract.php
+ path: app/code/core/Mage/Sales/Model/Payment/Method/Billing/AgreementAbstract.php
-
message: "#^Call to function is_null\\(\\) with Mage_Customer_Model_Customer will always evaluate to false\\.$#"
count: 1
- path: ../app/code/core/Mage/Sales/Model/Quote.php
+ path: app/code/core/Mage/Sales/Model/Quote.php
-
message: "#^Call to function is_null\\(\\) with Mage_Sales_Model_Resource_Order_Address_Collection will always evaluate to false\\.$#"
count: 1
- path: ../app/code/core/Mage/Sales/Model/Quote.php
+ path: app/code/core/Mage/Sales/Model/Quote.php
-
message: "#^Call to function is_null\\(\\) with Mage_Sales_Model_Resource_Quote_Item_Collection will always evaluate to false\\.$#"
count: 1
- path: ../app/code/core/Mage/Sales/Model/Quote.php
+ path: app/code/core/Mage/Sales/Model/Quote.php
-
message: "#^Call to function is_null\\(\\) with Mage_Sales_Model_Resource_Quote_Payment_Collection will always evaluate to false\\.$#"
count: 1
- path: ../app/code/core/Mage/Sales/Model/Quote.php
+ path: app/code/core/Mage/Sales/Model/Quote.php
-
message: "#^If condition is always true\\.$#"
count: 8
- path: ../app/code/core/Mage/Sales/Model/Quote.php
+ path: app/code/core/Mage/Sales/Model/Quote.php
-
message: "#^Left side of && is always true\\.$#"
count: 4
- path: ../app/code/core/Mage/Sales/Model/Quote.php
+ path: app/code/core/Mage/Sales/Model/Quote.php
-
message: "#^Method Mage_Sales_Model_Quote\\:\\:getIsVirtual\\(\\) should return bool but returns int\\.$#"
count: 1
- path: ../app/code/core/Mage/Sales/Model/Quote.php
+ path: app/code/core/Mage/Sales/Model/Quote.php
-
message: "#^Negated boolean expression is always false\\.$#"
count: 1
- path: ../app/code/core/Mage/Sales/Model/Quote.php
+ path: app/code/core/Mage/Sales/Model/Quote.php
-
message: "#^Parameter \\#2 \\$array of function implode expects array\\, array\\ given\\.$#"
count: 1
- path: ../app/code/core/Mage/Sales/Model/Quote.php
+ path: app/code/core/Mage/Sales/Model/Quote.php
-
message: "#^Property Mage_Sales_Model_Quote\\:\\:\\$_addresses \\(Mage_Sales_Model_Resource_Order_Address_Collection\\) does not accept Mage_Sales_Model_Resource_Quote_Address_Collection\\.$#"
count: 1
- path: ../app/code/core/Mage/Sales/Model/Quote.php
+ path: app/code/core/Mage/Sales/Model/Quote.php
-
message: "#^Right side of && is always true\\.$#"
count: 1
- path: ../app/code/core/Mage/Sales/Model/Quote.php
+ path: app/code/core/Mage/Sales/Model/Quote.php
-
message: "#^Unreachable statement \\- code above always terminates\\.$#"
count: 4
- path: ../app/code/core/Mage/Sales/Model/Quote.php
+ path: app/code/core/Mage/Sales/Model/Quote.php
-
message: "#^Variable \\$item might not be defined\\.$#"
count: 1
- path: ../app/code/core/Mage/Sales/Model/Quote.php
+ path: app/code/core/Mage/Sales/Model/Quote.php
-
message: "#^Variable \\$old in empty\\(\\) always exists and is not falsy\\.$#"
count: 2
- path: ../app/code/core/Mage/Sales/Model/Quote.php
+ path: app/code/core/Mage/Sales/Model/Quote.php
-
message: "#^Call to function is_null\\(\\) with iterable\\&Mage_Sales_Model_Resource_Quote_Address_Item_Collection will always evaluate to false\\.$#"
count: 1
- path: ../app/code/core/Mage/Sales/Model/Quote/Address.php
+ path: app/code/core/Mage/Sales/Model/Quote/Address.php
-
message: "#^Call to function is_null\\(\\) with iterable\\&Mage_Sales_Model_Resource_Quote_Address_Rate_Collection will always evaluate to false\\.$#"
count: 1
- path: ../app/code/core/Mage/Sales/Model/Quote/Address.php
+ path: app/code/core/Mage/Sales/Model/Quote/Address.php
-
message: "#^Else branch is unreachable because ternary operator condition is always true\\.$#"
count: 1
- path: ../app/code/core/Mage/Sales/Model/Quote/Address.php
+ path: app/code/core/Mage/Sales/Model/Quote/Address.php
-
message: "#^If condition is always true\\.$#"
count: 3
- path: ../app/code/core/Mage/Sales/Model/Quote/Address.php
+ path: app/code/core/Mage/Sales/Model/Quote/Address.php
-
message: "#^Left side of && is always true\\.$#"
count: 1
- path: ../app/code/core/Mage/Sales/Model/Quote/Address.php
+ path: app/code/core/Mage/Sales/Model/Quote/Address.php
-
message: "#^Method Mage_Sales_Model_Quote_Address\\:\\:getItemsCollection\\(\\) should return Mage_Eav_Model_Entity_Collection_Abstract but returns iterable\\&Mage_Sales_Model_Resource_Quote_Address_Item_Collection\\.$#"
count: 1
- path: ../app/code/core/Mage/Sales/Model/Quote/Address.php
+ path: app/code/core/Mage/Sales/Model/Quote/Address.php
-
message: "#^Negated boolean expression is always false\\.$#"
count: 1
- path: ../app/code/core/Mage/Sales/Model/Quote/Address.php
+ path: app/code/core/Mage/Sales/Model/Quote/Address.php
-
message: "#^Parameter \\#1 \\$parentItem of method Mage_Sales_Model_Quote_Item_Abstract\\:\\:setParentItem\\(\\) expects Mage_Sales_Model_Quote_Item, Mage_Sales_Model_Quote_Address_Item given\\.$#"
count: 1
- path: ../app/code/core/Mage/Sales/Model/Quote/Address.php
+ path: app/code/core/Mage/Sales/Model/Quote/Address.php
-
message: "#^Property Mage_Sales_Model_Quote_Address\\:\\:\\$_nominalOnly \\(bool\\) does not accept null\\.$#"
count: 2
- path: ../app/code/core/Mage/Sales/Model/Quote/Address.php
+ path: app/code/core/Mage/Sales/Model/Quote/Address.php
-
message: "#^Right side of && is always true\\.$#"
count: 1
- path: ../app/code/core/Mage/Sales/Model/Quote/Address.php
+ path: app/code/core/Mage/Sales/Model/Quote/Address.php
-
message: "#^Variable \\$totalInstance might not be defined\\.$#"
count: 3
- path: ../app/code/core/Mage/Sales/Model/Quote/Address.php
+ path: app/code/core/Mage/Sales/Model/Quote/Address.php
-
message: "#^If condition is always true\\.$#"
count: 1
- path: ../app/code/core/Mage/Sales/Model/Quote/Address/Item.php
+ path: app/code/core/Mage/Sales/Model/Quote/Address/Item.php
-
message: "#^Call to an undefined method Varien_Simplexml_Element\\:\\:getClassName\\(\\)\\.$#"
count: 1
- path: ../app/code/core/Mage/Sales/Model/Quote/Address/Total/Collector.php
+ path: app/code/core/Mage/Sales/Model/Quote/Address/Total/Collector.php
-
message: "#^Instanceof between Mage_Core_Model_Abstract\\|false and Mage_Sales_Model_Quote_Address_Total_Abstract will always evaluate to false\\.$#"
count: 1
- path: ../app/code/core/Mage/Sales/Model/Quote/Address/Total/Collector.php
+ path: app/code/core/Mage/Sales/Model/Quote/Address/Total/Collector.php
-
message: "#^Parameter \\#3 \\$totalConfig of method Mage_Sales_Model_Quote_Address_Total_Collector\\:\\:_initModelInstance\\(\\) expects array, Varien_Simplexml_Element given\\.$#"
count: 1
- path: ../app/code/core/Mage/Sales/Model/Quote/Address/Total/Collector.php
+ path: app/code/core/Mage/Sales/Model/Quote/Address/Total/Collector.php
-
message: "#^Unreachable statement \\- code above always terminates\\.$#"
count: 1
- path: ../app/code/core/Mage/Sales/Model/Quote/Address/Total/Collector.php
+ path: app/code/core/Mage/Sales/Model/Quote/Address/Total/Collector.php
-
message: "#^Return type \\(\\$this\\(Mage_Sales_Model_Quote_Address_Total_Discount\\)\\) of method Mage_Sales_Model_Quote_Address_Total_Discount\\:\\:fetch\\(\\) should be compatible with return type \\(array\\) of method Mage_Sales_Model_Quote_Address_Total_Abstract\\:\\:fetch\\(\\)$#"
count: 1
- path: ../app/code/core/Mage/Sales/Model/Quote/Address/Total/Discount.php
+ path: app/code/core/Mage/Sales/Model/Quote/Address/Total/Discount.php
-
message: "#^Return type \\(Mage_Sales_Model_Quote_Address_Total_Grand\\) of method Mage_Sales_Model_Quote_Address_Total_Grand\\:\\:fetch\\(\\) should be compatible with return type \\(array\\) of method Mage_Sales_Model_Quote_Address_Total_Abstract\\:\\:fetch\\(\\)$#"
count: 1
- path: ../app/code/core/Mage/Sales/Model/Quote/Address/Total/Grand.php
+ path: app/code/core/Mage/Sales/Model/Quote/Address/Total/Grand.php
-
message: "#^Parameter \\#2 \\$visibility of method Mage_Catalog_Helper_Data\\:\\:canApplyMsrp\\(\\) expects int\\|null, string given\\.$#"
count: 1
- path: ../app/code/core/Mage/Sales/Model/Quote/Address/Total/Msrp.php
+ path: app/code/core/Mage/Sales/Model/Quote/Address/Total/Msrp.php
-
message: "#^Return type \\(\\$this\\(Mage_Sales_Model_Quote_Address_Total_Nominal\\)\\) of method Mage_Sales_Model_Quote_Address_Total_Nominal\\:\\:fetch\\(\\) should be compatible with return type \\(array\\) of method Mage_Sales_Model_Quote_Address_Total_Abstract\\:\\:fetch\\(\\)$#"
count: 1
- path: ../app/code/core/Mage/Sales/Model/Quote/Address/Total/Nominal.php
+ path: app/code/core/Mage/Sales/Model/Quote/Address/Total/Nominal.php
-
message: "#^Return type \\(array\\) of method Mage_Sales_Model_Quote_Address_Total_Nominal_Shipping\\:\\:fetch\\(\\) should be compatible with return type \\(Mage_Sales_Model_Quote_Address_Total_Shipping\\) of method Mage_Sales_Model_Quote_Address_Total_Shipping\\:\\:fetch\\(\\)$#"
count: 1
- path: ../app/code/core/Mage/Sales/Model/Quote/Address/Total/Nominal/Shipping.php
+ path: app/code/core/Mage/Sales/Model/Quote/Address/Total/Nominal/Shipping.php
-
message: "#^Return type \\(array\\) of method Mage_Sales_Model_Quote_Address_Total_Nominal_Subtotal\\:\\:fetch\\(\\) should be compatible with return type \\(Mage_Sales_Model_Quote_Address_Total_Subtotal\\) of method Mage_Sales_Model_Quote_Address_Total_Subtotal\\:\\:fetch\\(\\)$#"
count: 1
- path: ../app/code/core/Mage/Sales/Model/Quote/Address/Total/Nominal/Subtotal.php
+ path: app/code/core/Mage/Sales/Model/Quote/Address/Total/Nominal/Subtotal.php
-
message: "#^If condition is always true\\.$#"
count: 1
- path: ../app/code/core/Mage/Sales/Model/Quote/Address/Total/Shipping.php
+ path: app/code/core/Mage/Sales/Model/Quote/Address/Total/Shipping.php
-
message: "#^Return type \\(Mage_Sales_Model_Quote_Address_Total_Shipping\\) of method Mage_Sales_Model_Quote_Address_Total_Shipping\\:\\:fetch\\(\\) should be compatible with return type \\(array\\) of method Mage_Sales_Model_Quote_Address_Total_Abstract\\:\\:fetch\\(\\)$#"
count: 1
- path: ../app/code/core/Mage/Sales/Model/Quote/Address/Total/Shipping.php
+ path: app/code/core/Mage/Sales/Model/Quote/Address/Total/Shipping.php
-
message: "#^Unreachable statement \\- code above always terminates\\.$#"
count: 1
- path: ../app/code/core/Mage/Sales/Model/Quote/Address/Total/Shipping.php
+ path: app/code/core/Mage/Sales/Model/Quote/Address/Total/Shipping.php
-
message: "#^Variable \\$addressQty in isset\\(\\) always exists and is not nullable\\.$#"
count: 1
- path: ../app/code/core/Mage/Sales/Model/Quote/Address/Total/Shipping.php
+ path: app/code/core/Mage/Sales/Model/Quote/Address/Total/Shipping.php
-
message: "#^If condition is always true\\.$#"
count: 2
- path: ../app/code/core/Mage/Sales/Model/Quote/Address/Total/Subtotal.php
+ path: app/code/core/Mage/Sales/Model/Quote/Address/Total/Subtotal.php
-
message: "#^Left side of && is always true\\.$#"
count: 1
- path: ../app/code/core/Mage/Sales/Model/Quote/Address/Total/Subtotal.php
+ path: app/code/core/Mage/Sales/Model/Quote/Address/Total/Subtotal.php
-
message: "#^Negated boolean expression is always false\\.$#"
count: 3
- path: ../app/code/core/Mage/Sales/Model/Quote/Address/Total/Subtotal.php
+ path: app/code/core/Mage/Sales/Model/Quote/Address/Total/Subtotal.php
-
message: "#^Return type \\(Mage_Sales_Model_Quote_Address_Total_Subtotal\\) of method Mage_Sales_Model_Quote_Address_Total_Subtotal\\:\\:fetch\\(\\) should be compatible with return type \\(array\\) of method Mage_Sales_Model_Quote_Address_Total_Abstract\\:\\:fetch\\(\\)$#"
count: 1
- path: ../app/code/core/Mage/Sales/Model/Quote/Address/Total/Subtotal.php
+ path: app/code/core/Mage/Sales/Model/Quote/Address/Total/Subtotal.php
-
message: "#^Else branch is unreachable because ternary operator condition is always true\\.$#"
count: 1
- path: ../app/code/core/Mage/Sales/Model/Quote/Address/Total/Tax.php
+ path: app/code/core/Mage/Sales/Model/Quote/Address/Total/Tax.php
-
message: "#^Parameter \\#4 \\$store of method Mage_Tax_Model_Calculation\\:\\:getRateRequest\\(\\) expects int\\|null, Mage_Core_Model_Store given\\.$#"
count: 1
- path: ../app/code/core/Mage/Sales/Model/Quote/Address/Total/Tax.php
+ path: app/code/core/Mage/Sales/Model/Quote/Address/Total/Tax.php
-
message: "#^Return type \\(\\$this\\(Mage_Sales_Model_Quote_Address_Total_Tax\\)\\) of method Mage_Sales_Model_Quote_Address_Total_Tax\\:\\:fetch\\(\\) should be compatible with return type \\(array\\) of method Mage_Sales_Model_Quote_Address_Total_Abstract\\:\\:fetch\\(\\)$#"
count: 1
- path: ../app/code/core/Mage/Sales/Model/Quote/Address/Total/Tax.php
+ path: app/code/core/Mage/Sales/Model/Quote/Address/Total/Tax.php
-
message: "#^If condition is always true\\.$#"
count: 4
- path: ../app/code/core/Mage/Sales/Model/Quote/Item.php
+ path: app/code/core/Mage/Sales/Model/Quote/Item.php
-
message: "#^Left side of && is always true\\.$#"
count: 1
- path: ../app/code/core/Mage/Sales/Model/Quote/Item.php
+ path: app/code/core/Mage/Sales/Model/Quote/Item.php
-
message: "#^Method Mage_Sales_Model_Quote_Item\\:\\:__clone\\(\\) with return type void returns \\$this\\(Mage_Sales_Model_Quote_Item\\) but should not return anything\\.$#"
count: 1
- path: ../app/code/core/Mage/Sales/Model/Quote/Item.php
+ path: app/code/core/Mage/Sales/Model/Quote/Item.php
-
message: "#^Method Mage_Sales_Model_Quote_Item\\:\\:save\\(\\) should return \\$this\\(Mage_Sales_Model_Quote_Item\\) but return statement is missing\\.$#"
count: 1
- path: ../app/code/core/Mage/Sales/Model/Quote/Item.php
+ path: app/code/core/Mage/Sales/Model/Quote/Item.php
-
message: "#^Negated boolean expression is always false\\.$#"
count: 1
- path: ../app/code/core/Mage/Sales/Model/Quote/Item.php
+ path: app/code/core/Mage/Sales/Model/Quote/Item.php
-
message: "#^Negated boolean expression is always true\\.$#"
count: 1
- path: ../app/code/core/Mage/Sales/Model/Quote/Item.php
+ path: app/code/core/Mage/Sales/Model/Quote/Item.php
-
message: "#^Parameter \\#4 \\$product of method Mage_Catalog_Model_Product_Type_Abstract\\:\\:updateQtyOption\\(\\) expects null, Mage_Catalog_Model_Product given\\.$#"
count: 1
- path: ../app/code/core/Mage/Sales/Model/Quote/Item.php
+ path: app/code/core/Mage/Sales/Model/Quote/Item.php
-
message: "#^Property Mage_Sales_Model_Quote_Item\\:\\:\\$_quote \\(Mage_Sales_Model_Quote\\) does not accept null\\.$#"
count: 1
- path: ../app/code/core/Mage/Sales/Model/Quote/Item.php
+ path: app/code/core/Mage/Sales/Model/Quote/Item.php
-
message: "#^Return type \\(void\\) of method Mage_Sales_Model_Quote_Item\\:\\:__clone\\(\\) should be compatible with return type \\(\\$this\\(Mage_Sales_Model_Quote_Item_Abstract\\)\\) of method Mage_Sales_Model_Quote_Item_Abstract\\:\\:__clone\\(\\)$#"
count: 1
- path: ../app/code/core/Mage/Sales/Model/Quote/Item.php
+ path: app/code/core/Mage/Sales/Model/Quote/Item.php
-
message: "#^Unreachable statement \\- code above always terminates\\.$#"
count: 1
- path: ../app/code/core/Mage/Sales/Model/Quote/Item.php
+ path: app/code/core/Mage/Sales/Model/Quote/Item.php
-
message: "#^If condition is always true\\.$#"
count: 5
- path: ../app/code/core/Mage/Sales/Model/Quote/Item/Abstract.php
+ path: app/code/core/Mage/Sales/Model/Quote/Item/Abstract.php
-
message: "#^Method Mage_Sales_Model_Quote_Item_Abstract\\:\\:__clone\\(\\) with return type void returns \\$this\\(Mage_Sales_Model_Quote_Item_Abstract\\) but should not return anything\\.$#"
count: 1
- path: ../app/code/core/Mage/Sales/Model/Quote/Item/Abstract.php
+ path: app/code/core/Mage/Sales/Model/Quote/Item/Abstract.php
-
message: "#^Method Mage_Sales_Model_Quote_Item_Abstract\\:\\:getParentItem\\(\\) should return \\$this\\(Mage_Sales_Model_Quote_Item_Abstract\\) but returns Mage_Sales_Model_Quote_Item_Abstract\\.$#"
count: 1
- path: ../app/code/core/Mage/Sales/Model/Quote/Item/Abstract.php
+ path: app/code/core/Mage/Sales/Model/Quote/Item/Abstract.php
-
message: "#^Parameter \\#1 \\$store of method Mage_Tax_Helper_Data\\:\\:discountTax\\(\\) expects int\\|null, Mage_Core_Model_Store given\\.$#"
count: 1
- path: ../app/code/core/Mage/Sales/Model/Quote/Item/Abstract.php
+ path: app/code/core/Mage/Sales/Model/Quote/Item/Abstract.php
-
message: "#^Parameter \\#1 \\$value of method Mage_Sales_Model_Quote_Item_Abstract\\:\\:setConvertedPrice\\(\\) expects float, null given\\.$#"
count: 1
- path: ../app/code/core/Mage/Sales/Model/Quote/Item/Abstract.php
+ path: app/code/core/Mage/Sales/Model/Quote/Item/Abstract.php
-
message: "#^Property Mage_Sales_Model_Quote_Item_Abstract\\:\\:\\$_parentItem \\(Mage_Sales_Model_Quote_Item_Abstract\\) does not accept null\\.$#"
count: 1
- path: ../app/code/core/Mage/Sales/Model/Quote/Item/Abstract.php
+ path: app/code/core/Mage/Sales/Model/Quote/Item/Abstract.php
-
message: "#^Ternary operator condition is always true\\.$#"
count: 1
- path: ../app/code/core/Mage/Sales/Model/Quote/Item/Abstract.php
+ path: app/code/core/Mage/Sales/Model/Quote/Item/Abstract.php
-
message: "#^Unreachable statement \\- code above always terminates\\.$#"
count: 1
- path: ../app/code/core/Mage/Sales/Model/Quote/Item/Abstract.php
+ path: app/code/core/Mage/Sales/Model/Quote/Item/Abstract.php
-
message: "#^If condition is always true\\.$#"
count: 1
- path: ../app/code/core/Mage/Sales/Model/Quote/Item/Option.php
+ path: app/code/core/Mage/Sales/Model/Quote/Item/Option.php
-
message: "#^Method Mage_Sales_Model_Quote_Item_Option\\:\\:__clone\\(\\) with return type void returns \\$this\\(Mage_Sales_Model_Quote_Item_Option\\) but should not return anything\\.$#"
count: 1
- path: ../app/code/core/Mage/Sales/Model/Quote/Item/Option.php
+ path: app/code/core/Mage/Sales/Model/Quote/Item/Option.php
-
message: "#^If condition is always true\\.$#"
count: 3
- path: ../app/code/core/Mage/Sales/Model/Quote/Payment.php
+ path: app/code/core/Mage/Sales/Model/Quote/Payment.php
-
message: "#^Unreachable statement \\- code above always terminates\\.$#"
count: 2
- path: ../app/code/core/Mage/Sales/Model/Quote/Payment.php
+ path: app/code/core/Mage/Sales/Model/Quote/Payment.php
-
message: "#^Call to Exception\\:\\:__construct\\(\\) on a separate line has no effect\\.$#"
count: 1
- path: ../app/code/core/Mage/Sales/Model/Recurring/Profile.php
+ path: app/code/core/Mage/Sales/Model/Recurring/Profile.php
-
message: "#^Call to an undefined method Mage_Payment_Model_Method_Abstract\\:\\:canGetRecurringProfileDetails\\(\\)\\.$#"
count: 1
- path: ../app/code/core/Mage/Sales/Model/Recurring/Profile.php
+ path: app/code/core/Mage/Sales/Model/Recurring/Profile.php
-
message: "#^Call to an undefined method Mage_Payment_Model_Method_Abstract\\:\\:submitRecurringProfile\\(\\)\\.$#"
count: 1
- path: ../app/code/core/Mage/Sales/Model/Recurring/Profile.php
+ path: app/code/core/Mage/Sales/Model/Recurring/Profile.php
-
message: "#^Call to an undefined method Mage_Payment_Model_Method_Abstract\\:\\:updateRecurringProfileStatus\\(\\)\\.$#"
count: 3
- path: ../app/code/core/Mage/Sales/Model/Recurring/Profile.php
+ path: app/code/core/Mage/Sales/Model/Recurring/Profile.php
-
message: "#^Else branch is unreachable because previous condition is always true\\.$#"
count: 1
- path: ../app/code/core/Mage/Sales/Model/Recurring/Profile.php
+ path: app/code/core/Mage/Sales/Model/Recurring/Profile.php
-
message: "#^Left side of && is always true\\.$#"
count: 1
- path: ../app/code/core/Mage/Sales/Model/Recurring/Profile.php
+ path: app/code/core/Mage/Sales/Model/Recurring/Profile.php
-
message: "#^Method Mage_Sales_Model_Recurring_Profile\\:\\:_getItem\\(\\) should return Mage_Sales_Model_Order_Item but return statement is missing\\.$#"
count: 1
- path: ../app/code/core/Mage/Sales/Model/Recurring/Profile.php
+ path: app/code/core/Mage/Sales/Model/Recurring/Profile.php
-
message: "#^Unreachable statement \\- code above always terminates\\.$#"
count: 1
- path: ../app/code/core/Mage/Sales/Model/Recurring/Profile.php
+ path: app/code/core/Mage/Sales/Model/Recurring/Profile.php
-
message: "#^Parameter \\#2 \\$attribute of method Mage_Sales_Model_Resource_Order_Abstract\\:\\:_afterSaveAttribute\\(\\) expects string, array given\\.$#"
count: 1
- path: ../app/code/core/Mage/Sales/Model/Resource/Order/Abstract.php
+ path: app/code/core/Mage/Sales/Model/Resource/Order/Abstract.php
-
message: "#^Parameter \\#2 \\$attribute of method Mage_Sales_Model_Resource_Order_Abstract\\:\\:_beforeSaveAttribute\\(\\) expects string, array given\\.$#"
count: 1
- path: ../app/code/core/Mage/Sales/Model/Resource/Order/Abstract.php
+ path: app/code/core/Mage/Sales/Model/Resource/Order/Abstract.php
-
message: "#^Cannot call method updateOnRelatedRecordChanged\\(\\) on Mage_Core_Model_Resource_Db_Collection_Abstract\\|false\\.$#"
count: 1
- path: ../app/code/core/Mage/Sales/Model/Resource/Order/Address.php
+ path: app/code/core/Mage/Sales/Model/Resource/Order/Address.php
-
message: "#^Parameter \\#1 \\$attribute of method Mage_Sales_Model_Resource_Collection_Abstract\\:\\:addAttributeToFilter\\(\\) expects Mage_Eav_Model_Entity_Attribute\\|string, array given\\.$#"
count: 1
- path: ../app/code/core/Mage/Sales/Model/Resource/Order/Collection.php
+ path: app/code/core/Mage/Sales/Model/Resource/Order/Collection.php
-
message: "#^Parameter \\#1 \\$callback of method Varien_Data_Collection\\:\\:walk\\(\\) expects callable\\(\\)\\: mixed, 'afterLoad' given\\.$#"
count: 1
- path: ../app/code/core/Mage/Sales/Model/Resource/Order/Creditmemo/Collection.php
+ path: app/code/core/Mage/Sales/Model/Resource/Order/Creditmemo/Collection.php
-
message: "#^Parameter \\#1 \\$callback of method Varien_Data_Collection\\:\\:walk\\(\\) expects callable\\(\\)\\: mixed, 'afterLoad' given\\.$#"
count: 1
- path: ../app/code/core/Mage/Sales/Model/Resource/Order/Invoice/Collection.php
+ path: app/code/core/Mage/Sales/Model/Resource/Order/Invoice/Collection.php
-
message: "#^Call to an undefined method Mage_Core_Model_Abstract\\:\\:isFailsafe\\(\\)\\.$#"
count: 1
- path: ../app/code/core/Mage/Sales/Model/Resource/Order/Payment/Transaction.php
+ path: app/code/core/Mage/Sales/Model/Resource/Order/Payment/Transaction.php
-
message: "#^Parameter \\#1 \\$callback of method Varien_Data_Collection\\:\\:walk\\(\\) expects callable\\(\\)\\: mixed, 'afterLoad' given\\.$#"
count: 1
- path: ../app/code/core/Mage/Sales/Model/Resource/Order/Shipment/Collection.php
+ path: app/code/core/Mage/Sales/Model/Resource/Order/Shipment/Collection.php
-
message: "#^Parameter \\#3 \\$object of method Mage_Core_Model_Resource_Db_Abstract\\:\\:_getLoadSelect\\(\\) expects Mage_Core_Model_Abstract, Varien_Object given\\.$#"
count: 1
- path: ../app/code/core/Mage/Sales/Model/Resource/Order/Status.php
+ path: app/code/core/Mage/Sales/Model/Resource/Order/Status.php
-
message: "#^Parameter \\#2 \\$resourceModel of method Mage_Core_Model_Resource_Db_Collection_Abstract\\:\\:_init\\(\\) expects Mage_Core_Model_Resource_Db_Abstract\\|null, string given\\.$#"
count: 1
- path: ../app/code/core/Mage/Sales/Model/Resource/Order/Tax/Collection.php
+ path: app/code/core/Mage/Sales/Model/Resource/Order/Tax/Collection.php
-
message: "#^If condition is always true\\.$#"
count: 1
- path: ../app/code/core/Mage/Sales/Model/Resource/Quote.php
+ path: app/code/core/Mage/Sales/Model/Resource/Quote.php
-
message: "#^Parameter \\#1 \\$expression of class Zend_Db_Expr constructor expects string, int given\\.$#"
count: 1
- path: ../app/code/core/Mage/Sales/Model/Resource/Quote.php
+ path: app/code/core/Mage/Sales/Model/Resource/Quote.php
-
message: "#^If condition is always true\\.$#"
count: 1
- path: ../app/code/core/Mage/Sales/Model/Resource/Quote/Address/Attribute/Backend/Region.php
+ path: app/code/core/Mage/Sales/Model/Resource/Quote/Address/Attribute/Backend/Region.php
-
message: "#^Return type \\(\\$this\\(Mage_Sales_Model_Resource_Quote_Address_Attribute_Frontend_Custbalance\\)\\) of method Mage_Sales_Model_Resource_Quote_Address_Attribute_Frontend_Custbalance\\:\\:fetchTotals\\(\\) should be compatible with return type \\(array\\) of method Mage_Sales_Model_Resource_Quote_Address_Attribute_Frontend\\:\\:fetchTotals\\(\\)$#"
count: 1
- path: ../app/code/core/Mage/Sales/Model/Resource/Quote/Address/Attribute/Frontend/Custbalance.php
+ path: app/code/core/Mage/Sales/Model/Resource/Quote/Address/Attribute/Frontend/Custbalance.php
-
message: "#^Return type \\(\\$this\\(Mage_Sales_Model_Resource_Quote_Address_Attribute_Frontend_Discount\\)\\) of method Mage_Sales_Model_Resource_Quote_Address_Attribute_Frontend_Discount\\:\\:fetchTotals\\(\\) should be compatible with return type \\(array\\) of method Mage_Sales_Model_Resource_Quote_Address_Attribute_Frontend\\:\\:fetchTotals\\(\\)$#"
count: 1
- path: ../app/code/core/Mage/Sales/Model/Resource/Quote/Address/Attribute/Frontend/Discount.php
+ path: app/code/core/Mage/Sales/Model/Resource/Quote/Address/Attribute/Frontend/Discount.php
-
message: "#^Return type \\(\\$this\\(Mage_Sales_Model_Resource_Quote_Address_Attribute_Frontend_Grand\\)\\) of method Mage_Sales_Model_Resource_Quote_Address_Attribute_Frontend_Grand\\:\\:fetchTotals\\(\\) should be compatible with return type \\(array\\) of method Mage_Sales_Model_Resource_Quote_Address_Attribute_Frontend\\:\\:fetchTotals\\(\\)$#"
count: 1
- path: ../app/code/core/Mage/Sales/Model/Resource/Quote/Address/Attribute/Frontend/Grand.php
+ path: app/code/core/Mage/Sales/Model/Resource/Quote/Address/Attribute/Frontend/Grand.php
-
message: "#^Return type \\(\\$this\\(Mage_Sales_Model_Resource_Quote_Address_Attribute_Frontend_Shipping\\)\\) of method Mage_Sales_Model_Resource_Quote_Address_Attribute_Frontend_Shipping\\:\\:fetchTotals\\(\\) should be compatible with return type \\(array\\) of method Mage_Sales_Model_Resource_Quote_Address_Attribute_Frontend\\:\\:fetchTotals\\(\\)$#"
count: 1
- path: ../app/code/core/Mage/Sales/Model/Resource/Quote/Address/Attribute/Frontend/Shipping.php
+ path: app/code/core/Mage/Sales/Model/Resource/Quote/Address/Attribute/Frontend/Shipping.php
-
message: "#^Return type \\(\\$this\\(Mage_Sales_Model_Resource_Quote_Address_Attribute_Frontend_Subtotal\\)\\) of method Mage_Sales_Model_Resource_Quote_Address_Attribute_Frontend_Subtotal\\:\\:fetchTotals\\(\\) should be compatible with return type \\(array\\) of method Mage_Sales_Model_Resource_Quote_Address_Attribute_Frontend\\:\\:fetchTotals\\(\\)$#"
count: 1
- path: ../app/code/core/Mage/Sales/Model/Resource/Quote/Address/Attribute/Frontend/Subtotal.php
+ path: app/code/core/Mage/Sales/Model/Resource/Quote/Address/Attribute/Frontend/Subtotal.php
-
message: "#^Return type \\(\\$this\\(Mage_Sales_Model_Resource_Quote_Address_Attribute_Frontend_Tax\\)\\) of method Mage_Sales_Model_Resource_Quote_Address_Attribute_Frontend_Tax\\:\\:fetchTotals\\(\\) should be compatible with return type \\(array\\) of method Mage_Sales_Model_Resource_Quote_Address_Attribute_Frontend\\:\\:fetchTotals\\(\\)$#"
count: 1
- path: ../app/code/core/Mage/Sales/Model/Resource/Quote/Address/Attribute/Frontend/Tax.php
+ path: app/code/core/Mage/Sales/Model/Resource/Quote/Address/Attribute/Frontend/Tax.php
-
message: "#^If condition is always true\\.$#"
count: 2
- path: ../app/code/core/Mage/Sales/Model/Resource/Quote/Item/Collection.php
+ path: app/code/core/Mage/Sales/Model/Resource/Quote/Item/Collection.php
-
message: "#^Left side of && is always false\\.$#"
count: 1
- path: ../app/code/core/Mage/Sales/Model/Resource/Quote/Item/Collection.php
+ path: app/code/core/Mage/Sales/Model/Resource/Quote/Item/Collection.php
-
message: "#^Right side of && is always true\\.$#"
count: 1
- path: ../app/code/core/Mage/Sales/Model/Resource/Quote/Item/Collection.php
+ path: app/code/core/Mage/Sales/Model/Resource/Quote/Item/Collection.php
-
message: "#^Parameter \\#1 \\$expression of class Zend_Db_Expr constructor expects string, int given\\.$#"
count: 1
- path: ../app/code/core/Mage/Sales/Model/Resource/Report/Bestsellers.php
+ path: app/code/core/Mage/Sales/Model/Resource/Report/Bestsellers.php
-
message: "#^Call to function is_null\\(\\) with string will always evaluate to false\\.$#"
count: 2
- path: ../app/code/core/Mage/Sales/Model/Resource/Report/Bestsellers/Collection.php
+ path: app/code/core/Mage/Sales/Model/Resource/Report/Bestsellers/Collection.php
-
message: "#^Comparison operation \"\\!\\=\" between array\\|int and 0 results in an error\\.$#"
count: 1
- path: ../app/code/core/Mage/Sales/Model/Resource/Report/Bestsellers/Collection.php
+ path: app/code/core/Mage/Sales/Model/Resource/Report/Bestsellers/Collection.php
-
message: "#^If condition is always true\\.$#"
count: 4
- path: ../app/code/core/Mage/Sales/Model/Resource/Report/Bestsellers/Collection.php
+ path: app/code/core/Mage/Sales/Model/Resource/Report/Bestsellers/Collection.php
-
message: "#^Left side of && is always true\\.$#"
count: 2
- path: ../app/code/core/Mage/Sales/Model/Resource/Report/Bestsellers/Collection.php
+ path: app/code/core/Mage/Sales/Model/Resource/Report/Bestsellers/Collection.php
-
message: "#^Negated boolean expression is always false\\.$#"
count: 4
- path: ../app/code/core/Mage/Sales/Model/Resource/Report/Bestsellers/Collection.php
+ path: app/code/core/Mage/Sales/Model/Resource/Report/Bestsellers/Collection.php
-
message: "#^Parameter \\#1 \\$conn of method Varien_Data_Collection_Db\\:\\:setConnection\\(\\) expects Zend_Db_Adapter_Abstract, Varien_Db_Adapter_Interface given\\.$#"
count: 1
- path: ../app/code/core/Mage/Sales/Model/Resource/Report/Bestsellers/Collection.php
+ path: app/code/core/Mage/Sales/Model/Resource/Report/Bestsellers/Collection.php
-
message: "#^Parameter \\#1 \\$select of method Mage_Core_Model_Resource_Helper_Mysql4\\:\\:getQueryUsingAnalyticFunction\\(\\) expects Varien_Db_Select, Zend_Db_Select given\\.$#"
count: 1
- path: ../app/code/core/Mage/Sales/Model/Resource/Report/Bestsellers/Collection.php
+ path: app/code/core/Mage/Sales/Model/Resource/Report/Bestsellers/Collection.php
-
message: "#^Right side of && is always true\\.$#"
count: 2
- path: ../app/code/core/Mage/Sales/Model/Resource/Report/Bestsellers/Collection.php
+ path: app/code/core/Mage/Sales/Model/Resource/Report/Bestsellers/Collection.php
-
message: "#^Variable \\$currentStoreIds in isset\\(\\) always exists and is not nullable\\.$#"
count: 1
- path: ../app/code/core/Mage/Sales/Model/Resource/Report/Bestsellers/Collection.php
+ path: app/code/core/Mage/Sales/Model/Resource/Report/Bestsellers/Collection.php
-
message: "#^Call to function is_array\\(\\) with string will always evaluate to false\\.$#"
count: 1
- path: ../app/code/core/Mage/Sales/Model/Resource/Report/Collection/Abstract.php
+ path: app/code/core/Mage/Sales/Model/Resource/Report/Collection/Abstract.php
-
message: "#^Call to function is_null\\(\\) with string will always evaluate to false\\.$#"
count: 1
- path: ../app/code/core/Mage/Sales/Model/Resource/Report/Collection/Abstract.php
+ path: app/code/core/Mage/Sales/Model/Resource/Report/Collection/Abstract.php
-
message: "#^Parameter \\#1 \\$expression of class Zend_Db_Expr constructor expects string, int given\\.$#"
count: 2
- path: ../app/code/core/Mage/Sales/Model/Resource/Report/Invoiced.php
+ path: app/code/core/Mage/Sales/Model/Resource/Report/Invoiced.php
-
message: "#^Parameter \\#2 \\$true of method Varien_Db_Adapter_Pdo_Mysql\\:\\:getCheckSql\\(\\) expects string, int given\\.$#"
count: 1
- path: ../app/code/core/Mage/Sales/Model/Resource/Report/Invoiced.php
+ path: app/code/core/Mage/Sales/Model/Resource/Report/Invoiced.php
-
message: "#^Parameter \\#3 \\$false of method Varien_Db_Adapter_Pdo_Mysql\\:\\:getCheckSql\\(\\) expects string, int given\\.$#"
count: 1
- path: ../app/code/core/Mage/Sales/Model/Resource/Report/Invoiced.php
+ path: app/code/core/Mage/Sales/Model/Resource/Report/Invoiced.php
-
message: "#^Parameter \\#1 \\$conn of method Varien_Data_Collection_Db\\:\\:setConnection\\(\\) expects Zend_Db_Adapter_Abstract, Varien_Db_Adapter_Interface given\\.$#"
count: 1
- path: ../app/code/core/Mage/Sales/Model/Resource/Report/Invoiced/Collection/Invoiced.php
+ path: app/code/core/Mage/Sales/Model/Resource/Report/Invoiced/Collection/Invoiced.php
-
message: "#^Parameter \\#1 \\$conn of method Varien_Data_Collection_Db\\:\\:setConnection\\(\\) expects Zend_Db_Adapter_Abstract, Varien_Db_Adapter_Interface given\\.$#"
count: 1
- path: ../app/code/core/Mage/Sales/Model/Resource/Report/Invoiced/Collection/Order.php
+ path: app/code/core/Mage/Sales/Model/Resource/Report/Invoiced/Collection/Order.php
-
message: "#^Parameter \\#1 \\$conn of method Varien_Data_Collection_Db\\:\\:setConnection\\(\\) expects Zend_Db_Adapter_Abstract, Varien_Db_Adapter_Interface given\\.$#"
count: 1
- path: ../app/code/core/Mage/Sales/Model/Resource/Report/Order/Collection.php
+ path: app/code/core/Mage/Sales/Model/Resource/Report/Order/Collection.php
-
message: "#^Parameter \\#1 \\$expression of class Zend_Db_Expr constructor expects string, int given\\.$#"
count: 1
- path: ../app/code/core/Mage/Sales/Model/Resource/Report/Order/Createdat.php
+ path: app/code/core/Mage/Sales/Model/Resource/Report/Order/Createdat.php
-
message: "#^Parameter \\#1 \\$conn of method Varien_Data_Collection_Db\\:\\:setConnection\\(\\) expects Zend_Db_Adapter_Abstract, Varien_Db_Adapter_Interface given\\.$#"
count: 1
- path: ../app/code/core/Mage/Sales/Model/Resource/Report/Refunded/Collection/Order.php
+ path: app/code/core/Mage/Sales/Model/Resource/Report/Refunded/Collection/Order.php
-
message: "#^Parameter \\#1 \\$conn of method Varien_Data_Collection_Db\\:\\:setConnection\\(\\) expects Zend_Db_Adapter_Abstract, Varien_Db_Adapter_Interface given\\.$#"
count: 1
- path: ../app/code/core/Mage/Sales/Model/Resource/Report/Refunded/Collection/Refunded.php
+ path: app/code/core/Mage/Sales/Model/Resource/Report/Refunded/Collection/Refunded.php
-
message: "#^Parameter \\#1 \\$expression of class Zend_Db_Expr constructor expects string, int given\\.$#"
count: 2
- path: ../app/code/core/Mage/Sales/Model/Resource/Report/Shipping.php
+ path: app/code/core/Mage/Sales/Model/Resource/Report/Shipping.php
-
message: "#^Parameter \\#1 \\$conn of method Varien_Data_Collection_Db\\:\\:setConnection\\(\\) expects Zend_Db_Adapter_Abstract, Varien_Db_Adapter_Interface given\\.$#"
count: 1
- path: ../app/code/core/Mage/Sales/Model/Resource/Report/Shipping/Collection/Order.php
+ path: app/code/core/Mage/Sales/Model/Resource/Report/Shipping/Collection/Order.php
-
message: "#^Parameter \\#1 \\$conn of method Varien_Data_Collection_Db\\:\\:setConnection\\(\\) expects Zend_Db_Adapter_Abstract, Varien_Db_Adapter_Interface given\\.$#"
count: 1
- path: ../app/code/core/Mage/Sales/Model/Resource/Report/Shipping/Collection/Shipment.php
+ path: app/code/core/Mage/Sales/Model/Resource/Report/Shipping/Collection/Shipment.php
-
message: "#^Call to function is_null\\(\\) with array will always evaluate to false\\.$#"
count: 1
- path: ../app/code/core/Mage/Sales/Model/Resource/Sale/Collection.php
+ path: app/code/core/Mage/Sales/Model/Resource/Sale/Collection.php
-
message: "#^Call to an undefined method Varien_Db_Adapter_Interface\\:\\:listTables\\(\\)\\.$#"
count: 1
- path: ../app/code/core/Mage/Sales/Model/Resource/Setup.php
+ path: app/code/core/Mage/Sales/Model/Resource/Setup.php
-
message: "#^Call to an undefined method Mage_Payment_Model_Recurring_Profile\\:\\:submit\\(\\)\\.$#"
count: 1
- path: ../app/code/core/Mage/Sales/Model/Service/Quote.php
+ path: app/code/core/Mage/Sales/Model/Service/Quote.php
-
message: "#^If condition is always true\\.$#"
count: 1
- path: ../app/code/core/Mage/Sales/Model/Service/Quote.php
+ path: app/code/core/Mage/Sales/Model/Service/Quote.php
-
message: "#^Negated boolean expression is always true\\.$#"
count: 1
- path: ../app/code/core/Mage/Sales/Model/Service/Quote.php
+ path: app/code/core/Mage/Sales/Model/Service/Quote.php
-
message: "#^Parameter \\#1 \\$message of static method Mage\\:\\:throwException\\(\\) expects string, array given\\.$#"
count: 1
- path: ../app/code/core/Mage/Sales/Model/Service/Quote.php
+ path: app/code/core/Mage/Sales/Model/Service/Quote.php
-
message: "#^Negated boolean expression is always false\\.$#"
count: 1
- path: ../app/code/core/Mage/Sales/Model/Status/List.php
+ path: app/code/core/Mage/Sales/Model/Status/List.php
-
message: "#^Method Mage_Sales_Billing_AgreementController\\:\\:preDispatch\\(\\) should return \\$this\\(Mage_Sales_Billing_AgreementController\\) but empty return statement found\\.$#"
count: 1
- path: ../app/code/core/Mage/Sales/controllers/Billing/AgreementController.php
+ path: app/code/core/Mage/Sales/controllers/Billing/AgreementController.php
-
message: "#^Parameter \\#3 \\$value of method Mage_Core_Controller_Varien_Action\\:\\:setFlag\\(\\) expects int\\|string, true given\\.$#"
count: 1
- path: ../app/code/core/Mage/Sales/controllers/Billing/AgreementController.php
+ path: app/code/core/Mage/Sales/controllers/Billing/AgreementController.php
-
message: "#^Variable \\$billingAgreement might not be defined\\.$#"
count: 2
- path: ../app/code/core/Mage/Sales/controllers/Billing/AgreementController.php
+ path: app/code/core/Mage/Sales/controllers/Billing/AgreementController.php
-
message: "#^Comparison operation \"\\!\\=\" between int and \\(array\\\\|string\\) results in an error\\.$#"
count: 1
- path: ../app/code/core/Mage/Sales/controllers/DownloadController.php
+ path: app/code/core/Mage/Sales/controllers/DownloadController.php
-
message: "#^Negated boolean expression is always false\\.$#"
count: 1
- path: ../app/code/core/Mage/Sales/controllers/DownloadController.php
+ path: app/code/core/Mage/Sales/controllers/DownloadController.php
-
message: "#^Parameter \\#2 \\$loginUrl of method Mage_Customer_Model_Session\\:\\:authenticate\\(\\) expects bool\\|null, string given\\.$#"
count: 1
- path: ../app/code/core/Mage/Sales/controllers/OrderController.php
+ path: app/code/core/Mage/Sales/controllers/OrderController.php
-
message: "#^Parameter \\#3 \\$value of method Mage_Core_Controller_Varien_Action\\:\\:setFlag\\(\\) expects int\\|string, true given\\.$#"
count: 1
- path: ../app/code/core/Mage/Sales/controllers/OrderController.php
+ path: app/code/core/Mage/Sales/controllers/OrderController.php
-
message: "#^Method Mage_Sales_Recurring_ProfileController\\:\\:preDispatch\\(\\) should return \\$this\\(Mage_Sales_Recurring_ProfileController\\) but empty return statement found\\.$#"
count: 1
- path: ../app/code/core/Mage/Sales/controllers/Recurring/ProfileController.php
+ path: app/code/core/Mage/Sales/controllers/Recurring/ProfileController.php
-
message: "#^Parameter \\#3 \\$value of method Mage_Core_Controller_Varien_Action\\:\\:setFlag\\(\\) expects int\\|string, true given\\.$#"
count: 1
- path: ../app/code/core/Mage/Sales/controllers/Recurring/ProfileController.php
+ path: app/code/core/Mage/Sales/controllers/Recurring/ProfileController.php
-
message: "#^Negated boolean expression is always false\\.$#"
count: 1
- path: ../app/code/core/Mage/SalesRule/Model/Observer.php
+ path: app/code/core/Mage/SalesRule/Model/Observer.php
-
message: "#^Parameter \\#1 \\$combine of method Mage_SalesRule_Model_Observer\\:\\:_removeAttributeFromConditions\\(\\) expects Mage_Rule_Model_Condition_Combine, Mage_Rule_Model_Action_Collection given\\.$#"
count: 1
- path: ../app/code/core/Mage/SalesRule/Model/Observer.php
+ path: app/code/core/Mage/SalesRule/Model/Observer.php
-
message: "#^Parameter \\#2 \\$ruleId of method Mage_SalesRule_Model_Rule_Customer\\:\\:loadByCustomerRule\\(\\) expects int, string given\\.$#"
count: 1
- path: ../app/code/core/Mage/SalesRule/Model/Observer.php
+ path: app/code/core/Mage/SalesRule/Model/Observer.php
-
message: "#^Return type \\(Mage_SalesRule_Model_Quote_Discount\\) of method Mage_SalesRule_Model_Quote_Discount\\:\\:fetch\\(\\) should be compatible with return type \\(array\\) of method Mage_Sales_Model_Quote_Address_Total_Abstract\\:\\:fetch\\(\\)$#"
count: 1
- path: ../app/code/core/Mage/SalesRule/Model/Quote/Discount.php
+ path: app/code/core/Mage/SalesRule/Model/Quote/Discount.php
-
message: "#^Return type \\(Mage_SalesRule_Model_Quote_Freeshipping\\) of method Mage_SalesRule_Model_Quote_Freeshipping\\:\\:fetch\\(\\) should be compatible with return type \\(array\\) of method Mage_Sales_Model_Quote_Address_Total_Abstract\\:\\:fetch\\(\\)$#"
count: 1
- path: ../app/code/core/Mage/SalesRule/Model/Quote/Freeshipping.php
+ path: app/code/core/Mage/SalesRule/Model/Quote/Freeshipping.php
-
message: "#^Return type \\(array\\) of method Mage_SalesRule_Model_Quote_Nominal_Discount\\:\\:fetch\\(\\) should be compatible with return type \\(Mage_SalesRule_Model_Quote_Discount\\) of method Mage_SalesRule_Model_Quote_Discount\\:\\:fetch\\(\\)$#"
count: 1
- path: ../app/code/core/Mage/SalesRule/Model/Quote/Nominal/Discount.php
+ path: app/code/core/Mage/SalesRule/Model/Quote/Nominal/Discount.php
-
message: "#^Negated boolean expression is always false\\.$#"
count: 1
- path: ../app/code/core/Mage/SalesRule/Model/Resource/Coupon.php
+ path: app/code/core/Mage/SalesRule/Model/Resource/Coupon.php
-
message: "#^Strict comparison using \\=\\=\\= between string and false will always evaluate to false\\.$#"
count: 1
- path: ../app/code/core/Mage/SalesRule/Model/Resource/Coupon.php
+ path: app/code/core/Mage/SalesRule/Model/Resource/Coupon.php
-
message: "#^Parameter \\#2 \\$true of method Varien_Db_Adapter_Interface\\:\\:getCheckSql\\(\\) expects string, int given\\.$#"
count: 1
- path: ../app/code/core/Mage/SalesRule/Model/Resource/Coupon/Collection.php
+ path: app/code/core/Mage/SalesRule/Model/Resource/Coupon/Collection.php
-
message: "#^Parameter \\#3 \\$false of method Varien_Db_Adapter_Interface\\:\\:getCheckSql\\(\\) expects string, int given\\.$#"
count: 1
- path: ../app/code/core/Mage/SalesRule/Model/Resource/Coupon/Collection.php
+ path: app/code/core/Mage/SalesRule/Model/Resource/Coupon/Collection.php
-
message: "#^Binary operation \"\\+\\=\" between string and \\-1\\|1 results in an error\\.$#"
count: 1
- path: ../app/code/core/Mage/SalesRule/Model/Resource/Coupon/Usage.php
+ path: app/code/core/Mage/SalesRule/Model/Resource/Coupon/Usage.php
-
message: "#^Else branch is unreachable because previous condition is always true\\.$#"
count: 1
- path: ../app/code/core/Mage/SalesRule/Model/Resource/Coupon/Usage.php
+ path: app/code/core/Mage/SalesRule/Model/Resource/Coupon/Usage.php
-
message: "#^Left side of && is always true\\.$#"
count: 1
- path: ../app/code/core/Mage/SalesRule/Model/Resource/Coupon/Usage.php
+ path: app/code/core/Mage/SalesRule/Model/Resource/Coupon/Usage.php
-
message: "#^Method Mage_SalesRule_Model_Resource_Report_Collection\\:\\:_applyRulesFilter\\(\\) should return \\$this\\(Mage_SalesRule_Model_Resource_Report_Collection\\) but return statement is missing\\.$#"
count: 1
- path: ../app/code/core/Mage/SalesRule/Model/Resource/Report/Collection.php
+ path: app/code/core/Mage/SalesRule/Model/Resource/Report/Collection.php
-
message: "#^Parameter \\#1 \\$conn of method Varien_Data_Collection_Db\\:\\:setConnection\\(\\) expects Zend_Db_Adapter_Abstract, Varien_Db_Adapter_Interface given\\.$#"
count: 1
- path: ../app/code/core/Mage/SalesRule/Model/Resource/Report/Collection.php
+ path: app/code/core/Mage/SalesRule/Model/Resource/Report/Collection.php
-
message: "#^Negated boolean expression is always false\\.$#"
count: 1
- path: ../app/code/core/Mage/SalesRule/Model/Rule.php
+ path: app/code/core/Mage/SalesRule/Model/Rule.php
-
message: "#^Return type \\(Mage_SalesRule_Model_Rule_Condition_Product_Combine\\) of method Mage_SalesRule_Model_Rule\\:\\:getActionsInstance\\(\\) should be compatible with return type \\(Mage_Rule_Model_Action_Collection\\) of method Mage_Rule_Model_Abstract\\:\\:getActionsInstance\\(\\)$#"
count: 1
- path: ../app/code/core/Mage/SalesRule/Model/Rule.php
+ path: app/code/core/Mage/SalesRule/Model/Rule.php
-
message: "#^Call to function is_null\\(\\) with array will always evaluate to false\\.$#"
count: 1
- path: ../app/code/core/Mage/SalesRule/Model/Rule/Condition/Product/Attribute/Assigned.php
+ path: app/code/core/Mage/SalesRule/Model/Rule/Condition/Product/Attribute/Assigned.php
-
message: "#^Return type \\(string\\) of method Mage_SalesRule_Model_Rule_Condition_Product_Attribute_Assigned\\:\\:getOperatorName\\(\\) should be compatible with return type \\(array\\) of method Mage_Rule_Model_Condition_Abstract\\:\\:getOperatorName\\(\\)$#"
count: 1
- path: ../app/code/core/Mage/SalesRule/Model/Rule/Condition/Product/Attribute/Assigned.php
+ path: app/code/core/Mage/SalesRule/Model/Rule/Condition/Product/Attribute/Assigned.php
-
message: "#^Call to function is_null\\(\\) with array will always evaluate to false\\.$#"
count: 1
- path: ../app/code/core/Mage/SalesRule/Model/Rule/Condition/Product/Combine.php
+ path: app/code/core/Mage/SalesRule/Model/Rule/Condition/Product/Combine.php
-
message: "#^Call to an undefined method Mage_Rule_Model_Action_Collection\\:\\:validate\\(\\)\\.$#"
count: 2
- path: ../app/code/core/Mage/SalesRule/Model/Validator.php
+ path: app/code/core/Mage/SalesRule/Model/Validator.php
-
message: "#^Parameter \\#1 \\$product of method Mage_Tax_Helper_Data\\:\\:getPrice\\(\\) expects Mage_Catalog_Model_Product, Mage_Sales_Model_Quote_Item_Abstract given\\.$#"
count: 2
- path: ../app/code/core/Mage/SalesRule/Model/Validator.php
+ path: app/code/core/Mage/SalesRule/Model/Validator.php
-
message: "#^Parameter \\#2 \\$title of method Mage_Weee_Helper_Data\\:\\:setWeeeTaxesAppliedProperty\\(\\) expects string, null given\\.$#"
count: 2
- path: ../app/code/core/Mage/SalesRule/Model/Validator.php
+ path: app/code/core/Mage/SalesRule/Model/Validator.php
-
message: "#^Parameter \\#4 \\$store of method Mage_Tax_Model_Calculation\\:\\:getRateRequest\\(\\) expects int\\|null, Mage_Core_Model_Store given\\.$#"
count: 1
- path: ../app/code/core/Mage/SalesRule/Model/Validator.php
+ path: app/code/core/Mage/SalesRule/Model/Validator.php
-
message: "#^Parameter \\#4 \\$value of method Mage_Weee_Helper_Data\\:\\:setWeeeTaxesAppliedProperty\\(\\) expects string, \\(float\\|int\\) given\\.$#"
count: 2
- path: ../app/code/core/Mage/SalesRule/Model/Validator.php
+ path: app/code/core/Mage/SalesRule/Model/Validator.php
-
message: "#^Parameter \\#4 \\$value of method Mage_Weee_Helper_Data\\:\\:setWeeeTaxesAppliedProperty\\(\\) expects string, float given\\.$#"
count: 2
- path: ../app/code/core/Mage/SalesRule/Model/Validator.php
+ path: app/code/core/Mage/SalesRule/Model/Validator.php
-
message: "#^Call to function is_null\\(\\) with int will always evaluate to false\\.$#"
count: 1
- path: ../app/code/core/Mage/Sendfriend/Model/Sendfriend.php
+ path: app/code/core/Mage/Sendfriend/Model/Sendfriend.php
-
message: "#^Parameter \\#1 \\$ipAddr of method Mage_Sendfriend_Model_Sendfriend\\:\\:setRemoteAddr\\(\\) expects int, string\\|false given\\.$#"
count: 1
- path: ../app/code/core/Mage/Sendfriend/controllers/ProductController.php
+ path: app/code/core/Mage/Sendfriend/controllers/ProductController.php
-
message: "#^Parameter \\#3 \\$value of method Mage_Core_Controller_Varien_Action\\:\\:setFlag\\(\\) expects int\\|string, true given\\.$#"
count: 1
- path: ../app/code/core/Mage/Sendfriend/controllers/ProductController.php
+ path: app/code/core/Mage/Sendfriend/controllers/ProductController.php
-
message: "#^Call to an undefined method Mage_Shipping_Model_Carrier_Abstract\\:\\:_getQuotes\\(\\)\\.$#"
count: 1
- path: ../app/code/core/Mage/Shipping/Model/Carrier/Abstract.php
+ path: app/code/core/Mage/Shipping/Model/Carrier/Abstract.php
-
message: "#^Call to an undefined method Mage_Shipping_Model_Carrier_Abstract\\:\\:_setFreeMethodRequest\\(\\)\\.$#"
count: 1
- path: ../app/code/core/Mage/Shipping/Model/Carrier/Abstract.php
+ path: app/code/core/Mage/Shipping/Model/Carrier/Abstract.php
-
message: "#^Left side of && is always true\\.$#"
count: 1
- path: ../app/code/core/Mage/Shipping/Model/Carrier/Abstract.php
+ path: app/code/core/Mage/Shipping/Model/Carrier/Abstract.php
-
message: "#^Method Mage_Shipping_Model_Carrier_Abstract\\:\\:checkAvailableShipCountries\\(\\) should return \\$this\\(Mage_Shipping_Model_Carrier_Abstract\\)\\|bool\\|Mage_Core_Model_Abstract but returns Mage_Shipping_Model_Rate_Result_Error\\.$#"
count: 1
- path: ../app/code/core/Mage/Shipping/Model/Carrier/Abstract.php
+ path: app/code/core/Mage/Shipping/Model/Carrier/Abstract.php
-
message: "#^Negated boolean expression is always false\\.$#"
count: 1
- path: ../app/code/core/Mage/Shipping/Model/Carrier/Abstract.php
+ path: app/code/core/Mage/Shipping/Model/Carrier/Abstract.php
-
message: "#^Parameter \\#1 \\$cost of method Mage_Shipping_Model_Carrier_Abstract\\:\\:getFinalPriceWithHandlingFee\\(\\) expects float, string given\\.$#"
count: 1
- path: ../app/code/core/Mage/Shipping/Model/Carrier/Abstract.php
+ path: app/code/core/Mage/Shipping/Model/Carrier/Abstract.php
-
message: "#^Parameter \\#2 \\$arguments of static method Mage\\:\\:getModel\\(\\) expects array\\|object, string given\\.$#"
count: 1
- path: ../app/code/core/Mage/Shipping/Model/Carrier/Abstract.php
+ path: app/code/core/Mage/Shipping/Model/Carrier/Abstract.php
-
message: "#^Property Mage_Shipping_Model_Carrier_Abstract\\:\\:\\$_numBoxes \\(int\\) does not accept float\\.$#"
count: 1
- path: ../app/code/core/Mage/Shipping/Model/Carrier/Abstract.php
+ path: app/code/core/Mage/Shipping/Model/Carrier/Abstract.php
-
message: "#^Variable \\$rate in empty\\(\\) is never defined\\.$#"
count: 1
- path: ../app/code/core/Mage/Shipping/Model/Carrier/Pickup.php
+ path: app/code/core/Mage/Shipping/Model/Carrier/Pickup.php
-
message: "#^Method Mage_Shipping_Model_Carrier_Tablerate\\:\\:getRate\\(\\) should return Mage_Core_Model_Abstract but returns array\\|bool\\.$#"
count: 1
- path: ../app/code/core/Mage/Shipping/Model/Carrier/Tablerate.php
+ path: app/code/core/Mage/Shipping/Model/Carrier/Tablerate.php
-
message: "#^Parameter \\#1 \\$result of method Mage_Shipping_Model_Rate_Result\\:\\:append\\(\\) expects Mage_Shipping_Model_Rate_Result\\|Mage_Shipping_Model_Rate_Result_Abstract, Mage_Core_Model_Abstract given\\.$#"
count: 3
- path: ../app/code/core/Mage/Shipping/Model/Carrier/Tablerate.php
+ path: app/code/core/Mage/Shipping/Model/Carrier/Tablerate.php
-
message: "#^Result of && is always false\\.$#"
count: 1
- path: ../app/code/core/Mage/Shipping/Model/Carrier/Tablerate.php
+ path: app/code/core/Mage/Shipping/Model/Carrier/Tablerate.php
-
message: "#^Variable \\$rate in empty\\(\\) always exists and is not falsy\\.$#"
count: 3
- path: ../app/code/core/Mage/Shipping/Model/Carrier/Tablerate.php
+ path: app/code/core/Mage/Shipping/Model/Carrier/Tablerate.php
-
message: "#^Parameter \\#1 \\$hash of method Mage_Shipping_Helper_Data\\:\\:decodeTrackingHash\\(\\) expects string, array given\\.$#"
count: 1
- path: ../app/code/core/Mage/Shipping/Model/Info.php
+ path: app/code/core/Mage/Shipping/Model/Info.php
-
message: "#^Call to function is_null\\(\\) with array will always evaluate to false\\.$#"
count: 3
- path: ../app/code/core/Mage/Shipping/Model/Resource/Carrier/Tablerate.php
+ path: app/code/core/Mage/Shipping/Model/Resource/Carrier/Tablerate.php
-
message: "#^Parameter \\#1 \\$row of method Mage_Shipping_Model_Resource_Carrier_Tablerate\\:\\:_getImportRow\\(\\) expects array, string given\\.$#"
count: 1
- path: ../app/code/core/Mage/Shipping/Model/Resource/Carrier/Tablerate.php
+ path: app/code/core/Mage/Shipping/Model/Resource/Carrier/Tablerate.php
-
message: "#^Parameter \\#1 \\$value of function count expects array\\|Countable, string given\\.$#"
count: 1
- path: ../app/code/core/Mage/Shipping/Model/Resource/Carrier/Tablerate.php
+ path: app/code/core/Mage/Shipping/Model/Resource/Carrier/Tablerate.php
-
message: "#^Result of && is always true\\.$#"
count: 1
- path: ../app/code/core/Mage/Shipping/Model/Resource/Carrier/Tablerate.php
+ path: app/code/core/Mage/Shipping/Model/Resource/Carrier/Tablerate.php
-
message: "#^Strict comparison using \\=\\=\\= between string and false will always evaluate to false\\.$#"
count: 1
- path: ../app/code/core/Mage/Shipping/Model/Resource/Carrier/Tablerate.php
+ path: app/code/core/Mage/Shipping/Model/Resource/Carrier/Tablerate.php
-
message: "#^Unreachable statement \\- code above always terminates\\.$#"
count: 4
- path: ../app/code/core/Mage/Shipping/Model/Resource/Carrier/Tablerate.php
+ path: app/code/core/Mage/Shipping/Model/Resource/Carrier/Tablerate.php
-
message: "#^Return type \\(void\\) of method Mage_Shipping_Model_Resource_Carrier_Tablerate_Collection\\:\\:_initSelect\\(\\) should be compatible with return type \\(\\$this\\(Mage_Core_Model_Resource_Db_Collection_Abstract\\)\\) of method Mage_Core_Model_Resource_Db_Collection_Abstract\\:\\:_initSelect\\(\\)$#"
count: 1
- path: ../app/code/core/Mage/Shipping/Model/Resource/Carrier/Tablerate/Collection.php
+ path: app/code/core/Mage/Shipping/Model/Resource/Carrier/Tablerate/Collection.php
-
message: "#^Comparison operation \"\\<\" between \\(array\\|float\\|int\\) and float results in an error\\.$#"
count: 1
- path: ../app/code/core/Mage/Shipping/Model/Shipping.php
+ path: app/code/core/Mage/Shipping/Model/Shipping.php
-
message: "#^Comparison operation \"\\>\" between \\(array\\|float\\|int\\) and float results in an error\\.$#"
count: 1
- path: ../app/code/core/Mage/Shipping/Model/Shipping.php
+ path: app/code/core/Mage/Shipping/Model/Shipping.php
-
message: "#^Instanceof between Mage_Core_Model_Abstract\\|Mage_Shipping_Model_Carrier_Abstract\\|true and Mage_Shipping_Model_Rate_Result_Error will always evaluate to false\\.$#"
count: 1
- path: ../app/code/core/Mage/Shipping/Model/Shipping.php
+ path: app/code/core/Mage/Shipping/Model/Shipping.php
-
message: "#^Negated boolean expression is always false\\.$#"
count: 1
- path: ../app/code/core/Mage/Shipping/Model/Shipping.php
+ path: app/code/core/Mage/Shipping/Model/Shipping.php
-
message: "#^Property Mage_Shipping_Model_Shipping\\:\\:\\$_result \\(Mage_Shipping_Model_Rate_Result\\) in empty\\(\\) is not falsy\\.$#"
count: 1
- path: ../app/code/core/Mage/Shipping/Model/Shipping.php
+ path: app/code/core/Mage/Shipping/Model/Shipping.php
-
message: "#^Variable \\$sumResults in empty\\(\\) always exists and is not falsy\\.$#"
count: 1
- path: ../app/code/core/Mage/Shipping/Model/Shipping.php
+ path: app/code/core/Mage/Shipping/Model/Shipping.php
-
message: "#^Call to an undefined method Mage_Shipping_Model_Rate_Result\\:\\:getAllTrackings\\(\\)\\.$#"
count: 1
- path: ../app/code/core/Mage/Shipping/Model/Tracking/Result.php
+ path: app/code/core/Mage/Shipping/Model/Tracking/Result.php
-
message: "#^Call to an undefined method Zend_Db_Adapter_Abstract\\:\\:getCheckSql\\(\\)\\.$#"
count: 1
- path: ../app/code/core/Mage/Sitemap/Model/Resource/Catalog/Abstract.php
+ path: app/code/core/Mage/Sitemap/Model/Resource/Catalog/Abstract.php
-
message: "#^Unreachable statement \\- code above always terminates\\.$#"
count: 1
- path: ../app/code/core/Mage/Sitemap/Model/Resource/Catalog/Abstract.php
+ path: app/code/core/Mage/Sitemap/Model/Resource/Catalog/Abstract.php
-
message: "#^Negated boolean expression is always false\\.$#"
count: 1
- path: ../app/code/core/Mage/Sitemap/Model/Resource/Catalog/Category.php
+ path: app/code/core/Mage/Sitemap/Model/Resource/Catalog/Category.php
-
message: "#^Negated boolean expression is always false\\.$#"
count: 1
- path: ../app/code/core/Mage/Sitemap/Model/Resource/Catalog/Product.php
+ path: app/code/core/Mage/Sitemap/Model/Resource/Catalog/Product.php
-
message: "#^Call to function is_null\\(\\) with string will always evaluate to false\\.$#"
count: 1
- path: ../app/code/core/Mage/Sitemap/Model/Sitemap.php
+ path: app/code/core/Mage/Sitemap/Model/Sitemap.php
-
message: "#^Method Mage_Tag_Model_Resource_Tag_Collection\\:\\:addPopularity\\(\\) invoked with 2 parameters, 0\\-1 required\\.$#"
count: 1
- path: ../app/code/core/Mage/Tag/Block/Customer/Tags.php
+ path: app/code/core/Mage/Tag/Block/Customer/Tags.php
-
message: "#^Variable \\$tags in isset\\(\\) always exists and is not nullable\\.$#"
count: 1
- path: ../app/code/core/Mage/Tag/Block/Customer/Tags.php
+ path: app/code/core/Mage/Tag/Block/Customer/Tags.php
-
message: "#^Call to function is_null\\(\\) with Mage_Tag_Model_Resource_Product_Collection will always evaluate to false\\.$#"
count: 1
- path: ../app/code/core/Mage/Tag/Block/Customer/View.php
+ path: app/code/core/Mage/Tag/Block/Customer/View.php
-
message: "#^Call to function is_null\\(\\) with Mage_Tag_Model_Tag will always evaluate to false\\.$#"
count: 1
- path: ../app/code/core/Mage/Tag/Block/Customer/View.php
+ path: app/code/core/Mage/Tag/Block/Customer/View.php
-
message: "#^Call to function is_null\\(\\) with string will always evaluate to false\\.$#"
count: 1
- path: ../app/code/core/Mage/Tag/Block/Product/List.php
+ path: app/code/core/Mage/Tag/Block/Product/List.php
-
message: "#^Method Mage_Tag_Block_Product_List\\:\\:_beforeToHtml\\(\\) should return \\$this\\(Mage_Tag_Block_Product_List\\) but returns false\\.$#"
count: 1
- path: ../app/code/core/Mage/Tag/Block/Product/List.php
+ path: app/code/core/Mage/Tag/Block/Product/List.php
-
message: "#^Parameter \\#1 \\$productId of method Mage_Tag_Model_Resource_Tag_Collection\\:\\:addProductFilter\\(\\) expects int, true given\\.$#"
count: 1
- path: ../app/code/core/Mage/Tag/Block/Product/List.php
+ path: app/code/core/Mage/Tag/Block/Product/List.php
-
message: "#^Call to function is_null\\(\\) with Mage_Tag_Model_Resource_Tag_Collection will always evaluate to false\\.$#"
count: 1
- path: ../app/code/core/Mage/Tag/Block/Product/Result.php
+ path: app/code/core/Mage/Tag/Block/Product/Result.php
-
message: "#^Property Mage_Tag_Block_Product_Result\\:\\:\\$_productCollection \\(Mage_Tag_Model_Resource_Tag_Collection\\) does not accept Mage_Tag_Model_Resource_Product_Collection\\.$#"
count: 1
- path: ../app/code/core/Mage/Tag/Block/Product/Result.php
+ path: app/code/core/Mage/Tag/Block/Product/Result.php
-
message: "#^Variable \\$result might not be defined\\.$#"
count: 1
- path: ../app/code/core/Mage/Tag/Model/Api.php
+ path: app/code/core/Mage/Tag/Model/Api.php
-
message: "#^Parameter \\#1 \\$data \\(object\\) of method Mage_Tag_Model_Api_V2\\:\\:_prepareDataForAdd\\(\\) should be compatible with parameter \\$data \\(array\\) of method Mage_Tag_Model_Api\\:\\:_prepareDataForAdd\\(\\)$#"
count: 1
- path: ../app/code/core/Mage/Tag/Model/Api/V2.php
+ path: app/code/core/Mage/Tag/Model/Api/V2.php
-
message: "#^Parameter \\#1 \\$data \\(object\\) of method Mage_Tag_Model_Api_V2\\:\\:_prepareDataForUpdate\\(\\) should be compatible with parameter \\$data \\(array\\) of method Mage_Tag_Model_Api\\:\\:_prepareDataForUpdate\\(\\)$#"
count: 1
- path: ../app/code/core/Mage/Tag/Model/Api/V2.php
+ path: app/code/core/Mage/Tag/Model/Api/V2.php
-
message: "#^Return type \\(object\\) of method Mage_Tag_Model_Api_V2\\:\\:info\\(\\) should be compatible with return type \\(array\\) of method Mage_Tag_Model_Api\\:\\:info\\(\\)$#"
count: 1
- path: ../app/code/core/Mage/Tag/Model/Api/V2.php
+ path: app/code/core/Mage/Tag/Model/Api/V2.php
-
message: "#^Access to an undefined property Mage_Tag_Model_Entity_Customer_Collection\\:\\:\\$_read\\.$#"
count: 1
- path: ../app/code/core/Mage/Tag/Model/Entity/Customer/Collection.php
+ path: app/code/core/Mage/Tag/Model/Entity/Customer/Collection.php
-
message: "#^Variable \\$productsSku might not be defined\\.$#"
count: 1
- path: ../app/code/core/Mage/Tag/Model/Resource/Customer/Collection.php
+ path: app/code/core/Mage/Tag/Model/Resource/Customer/Collection.php
-
message: "#^Parameter \\#1 \\$expression of class Zend_Db_Expr constructor expects string, int given\\.$#"
count: 7
- path: ../app/code/core/Mage/Tag/Model/Resource/Indexer/Summary.php
+ path: app/code/core/Mage/Tag/Model/Resource/Indexer/Summary.php
-
message: "#^Parameter \\#5 \\$condition of method Mage_Catalog_Model_Resource_Product_Indexer_Abstract\\:\\:_addAttributeToSelect\\(\\) expects Zend_Db_Expr\\|null, string given\\.$#"
count: 2
- path: ../app/code/core/Mage/Tag/Model/Resource/Indexer/Summary.php
+ path: app/code/core/Mage/Tag/Model/Resource/Indexer/Summary.php
-
message: "#^Parameter \\#1 \\$expression of class Zend_Db_Expr constructor expects string, int given\\.$#"
count: 1
- path: ../app/code/core/Mage/Tag/Model/Resource/Tag.php
+ path: app/code/core/Mage/Tag/Model/Resource/Tag.php
-
message: "#^Parameter \\#1 \\$model of method Mage_Tag_Model_Resource_Tag\\:\\:loadByName\\(\\) expects Mage_Tag_Model_Tag, Varien_Object given\\.$#"
count: 1
- path: ../app/code/core/Mage/Tag/Model/Resource/Tag.php
+ path: app/code/core/Mage/Tag/Model/Resource/Tag.php
-
message: "#^Parameter \\#2 \\$condition of method Mage_Tag_Model_Resource_Tag_Collection\\:\\:addFieldToFilter\\(\\) expects array\\|null, int given\\.$#"
count: 2
- path: ../app/code/core/Mage/Tag/Model/Resource/Tag/Collection.php
+ path: app/code/core/Mage/Tag/Model/Resource/Tag/Collection.php
-
message: "#^Parameter \\#1 \\$date of method Mage_Core_Model_Resource_Abstract\\:\\:formatDate\\(\\) expects string\\|Zend_Date\\|true\\|null, int\\<1, max\\> given\\.$#"
count: 1
- path: ../app/code/core/Mage/Tag/Model/Resource/Tag/Relation.php
+ path: app/code/core/Mage/Tag/Model/Resource/Tag/Relation.php
-
message: "#^Parameter \\#1 \\$callback of method Varien_Data_Collection\\:\\:walk\\(\\) expects callable\\(\\)\\: mixed, 'aggregate' given\\.$#"
count: 1
- path: ../app/code/core/Mage/Tag/Model/Tag.php
+ path: app/code/core/Mage/Tag/Model/Tag.php
-
message: "#^Parameter \\#1 \\$date of method Mage_Core_Model_Resource_Abstract\\:\\:formatDate\\(\\) expects string\\|Zend_Date\\|true\\|null, int\\<1, max\\> given\\.$#"
count: 1
- path: ../app/code/core/Mage/Tag/Model/Tag.php
+ path: app/code/core/Mage/Tag/Model/Tag.php
-
message: "#^Variable \\$result might not be defined\\.$#"
count: 1
- path: ../app/code/core/Mage/Tag/Model/Tag.php
+ path: app/code/core/Mage/Tag/Model/Tag.php
-
message: "#^Parameter \\#1 \\$store of method Mage_Weee_Helper_Data\\:\\:validateCatalogPricesAndFptConfiguration\\(\\) expects Mage_Core_Model_Store\\|null, int given\\.$#"
count: 1
- path: ../app/code/core/Mage/Tax/Block/Adminhtml/Notifications.php
+ path: app/code/core/Mage/Tax/Block/Adminhtml/Notifications.php
-
message: "#^Call to an undefined method Mage_Tax_Block_Sales_Order_Tax\\:\\:addTotal\\(\\)\\.$#"
count: 7
- path: ../app/code/core/Mage/Tax/Block/Sales/Order/Tax.php
+ path: app/code/core/Mage/Tax/Block/Sales/Order/Tax.php
-
message: "#^Call to an undefined method Mage_Tax_Block_Sales_Order_Tax\\:\\:removeTotal\\(\\)\\.$#"
count: 1
- path: ../app/code/core/Mage/Tax/Block/Sales/Order/Tax.php
+ path: app/code/core/Mage/Tax/Block/Sales/Order/Tax.php
-
message: "#^Instanceof between Mage_Sales_Model_Order_Invoice and Mage_Sales_Model_Order will always evaluate to false\\.$#"
count: 1
- path: ../app/code/core/Mage/Tax/Block/Sales/Order/Tax.php
+ path: app/code/core/Mage/Tax/Block/Sales/Order/Tax.php
-
message: "#^Property Mage_Tax_Block_Sales_Order_Tax\\:\\:\\$_source \\(Mage_Sales_Model_Order_Invoice\\) does not accept Mage_Sales_Model_Order\\.$#"
count: 1
- path: ../app/code/core/Mage/Tax/Block/Sales/Order/Tax.php
+ path: app/code/core/Mage/Tax/Block/Sales/Order/Tax.php
-
message: "#^Call to an undefined method Mage_Core_Model_App\\:\\:getOrder\\(\\)\\.$#"
count: 1
- path: ../app/code/core/Mage/Tax/Helper/Data.php
+ path: app/code/core/Mage/Tax/Helper/Data.php
-
message: "#^Elseif condition is always true\\.$#"
count: 1
- path: ../app/code/core/Mage/Tax/Helper/Data.php
+ path: app/code/core/Mage/Tax/Helper/Data.php
-
message: "#^If condition is always false\\.$#"
count: 2
- path: ../app/code/core/Mage/Tax/Helper/Data.php
+ path: app/code/core/Mage/Tax/Helper/Data.php
-
message: "#^Method Mage_Tax_Helper_Data\\:\\:needPriceConversion\\(\\) should return int\\|false but returns bool\\.$#"
count: 1
- path: ../app/code/core/Mage/Tax/Helper/Data.php
+ path: app/code/core/Mage/Tax/Helper/Data.php
-
message: "#^Parameter \\#1 \\$product of method Mage_Tax_Helper_Data\\:\\:getPrice\\(\\) expects Mage_Catalog_Model_Product, Varien_Object given\\.$#"
count: 1
- path: ../app/code/core/Mage/Tax/Helper/Data.php
+ path: app/code/core/Mage/Tax/Helper/Data.php
-
message: "#^Parameter \\#1 \\$shippingAddress of method Mage_Tax_Model_Calculation\\:\\:getRateRequest\\(\\) expects Mage_Sales_Model_Quote_Address\\|false\\|null, Mage_Customer_Model_Address\\|null given\\.$#"
count: 2
- path: ../app/code/core/Mage/Tax/Helper/Data.php
+ path: app/code/core/Mage/Tax/Helper/Data.php
-
message: "#^Parameter \\#1 \\$store of method Mage_Tax_Helper_Data\\:\\:isCrossBorderTradeEnabled\\(\\) expects int\\|null, Mage_Core_Model_Store given\\.$#"
count: 1
- path: ../app/code/core/Mage/Tax/Helper/Data.php
+ path: app/code/core/Mage/Tax/Helper/Data.php
-
message: "#^Parameter \\#2 \\$billingAddress of method Mage_Tax_Model_Calculation\\:\\:getRateRequest\\(\\) expects Mage_Sales_Model_Quote_Address\\|false\\|null, Mage_Customer_Model_Address\\|null given\\.$#"
count: 2
- path: ../app/code/core/Mage/Tax/Helper/Data.php
+ path: app/code/core/Mage/Tax/Helper/Data.php
-
message: "#^Parameter \\#2 \\$format of method Mage_Core_Model_Store\\:\\:convertPrice\\(\\) expects bool, string\\|null given\\.$#"
count: 1
- path: ../app/code/core/Mage/Tax/Helper/Data.php
+ path: app/code/core/Mage/Tax/Helper/Data.php
-
message: "#^Parameter \\#4 \\$store of method Mage_Tax_Model_Calculation\\:\\:getRateRequest\\(\\) expects int\\|null, Mage_Core_Model_Store given\\.$#"
count: 2
- path: ../app/code/core/Mage/Tax/Helper/Data.php
+ path: app/code/core/Mage/Tax/Helper/Data.php
-
message: "#^Right side of && is always false\\.$#"
count: 1
- path: ../app/code/core/Mage/Tax/Helper/Data.php
+ path: app/code/core/Mage/Tax/Helper/Data.php
-
message: "#^Parameter \\#1 \\$request of method Mage_Tax_Model_Resource_Calculation\\:\\:getCalculationProcess\\(\\) expects Varien_Object, null given\\.$#"
count: 1
- path: ../app/code/core/Mage/Tax/Model/Calculation.php
+ path: app/code/core/Mage/Tax/Model/Calculation.php
-
message: "#^Parameter \\#1 \\$store of method Mage_Tax_Helper_Data\\:\\:isCrossBorderTradeEnabled\\(\\) expects int\\|null, Mage_Core_Model_Store\\|null given\\.$#"
count: 1
- path: ../app/code/core/Mage/Tax/Model/Calculation.php
+ path: app/code/core/Mage/Tax/Model/Calculation.php
-
message: "#^Parameter \\#1 \\$store of method Mage_Tax_Model_Calculation\\:\\:getRateOriginRequest\\(\\) expects Mage_Core_Model_Store\\|null, int\\|null given\\.$#"
count: 2
- path: ../app/code/core/Mage/Tax/Model/Calculation.php
+ path: app/code/core/Mage/Tax/Model/Calculation.php
-
message: "#^Parameter \\#4 \\$store of method Mage_Tax_Model_Calculation\\:\\:getRateRequest\\(\\) expects int\\|null, Mage_Core_Model_Store\\|null given\\.$#"
count: 1
- path: ../app/code/core/Mage/Tax/Model/Calculation.php
+ path: app/code/core/Mage/Tax/Model/Calculation.php
-
message: "#^Property Mage_Tax_Model_Calculation\\:\\:\\$_customer \\(Mage_Customer_Model_Customer\\) does not accept false\\.$#"
count: 1
- path: ../app/code/core/Mage/Tax/Model/Calculation.php
+ path: app/code/core/Mage/Tax/Model/Calculation.php
-
message: "#^Property Mage_Tax_Model_Calculation\\:\\:\\$_defaultCustomerTaxClass \\(string\\) does not accept int\\.$#"
count: 1
- path: ../app/code/core/Mage/Tax/Model/Calculation.php
+ path: app/code/core/Mage/Tax/Model/Calculation.php
-
message: "#^Right side of && is always true\\.$#"
count: 2
- path: ../app/code/core/Mage/Tax/Model/Calculation.php
+ path: app/code/core/Mage/Tax/Model/Calculation.php
-
message: "#^Call to function is_null\\(\\) with Mage_Tax_Model_Calculation_Rate_Title will always evaluate to false\\.$#"
count: 1
- path: ../app/code/core/Mage/Tax/Model/Calculation/Rate.php
+ path: app/code/core/Mage/Tax/Model/Calculation/Rate.php
-
message: "#^Call to function is_null\\(\\) with array will always evaluate to false\\.$#"
count: 1
- path: ../app/code/core/Mage/Tax/Model/Calculation/Rate.php
+ path: app/code/core/Mage/Tax/Model/Calculation/Rate.php
-
message: "#^Property Mage_Tax_Model_Calculation_Rate\\:\\:\\$_titles \\(array\\) does not accept Mage_Tax_Model_Resource_Calculation_Rate_Title_Collection\\.$#"
count: 1
- path: ../app/code/core/Mage/Tax/Model/Calculation/Rate.php
+ path: app/code/core/Mage/Tax/Model/Calculation/Rate.php
-
message: "#^Call to function is_null\\(\\) with Mage_Tax_Model_Calculation will always evaluate to false\\.$#"
count: 1
- path: ../app/code/core/Mage/Tax/Model/Calculation/Rule.php
+ path: app/code/core/Mage/Tax/Model/Calculation/Rule.php
-
message: "#^Call to function is_null\\(\\) with array will always evaluate to false\\.$#"
count: 1
- path: ../app/code/core/Mage/Tax/Model/Class/Source/Product.php
+ path: app/code/core/Mage/Tax/Model/Class/Source/Product.php
-
message: "#^Method Mage_Tax_Model_Config_Notification\\:\\:_getConfig\\(\\) should return Mage_Core_Model_Config_Data but returns bool\\|Mage_Core_Model_Abstract\\.$#"
count: 1
- path: ../app/code/core/Mage/Tax/Model/Config/Notification.php
+ path: app/code/core/Mage/Tax/Model/Config/Notification.php
-
message: "#^Call to an undefined static method Mage_Core_Model_Config_Data\\:\\:afterSave\\(\\)\\.$#"
count: 1
- path: ../app/code/core/Mage/Tax/Model/Config/Price/Include.php
+ path: app/code/core/Mage/Tax/Model/Config/Price/Include.php
-
message: "#^Parameter \\#1 \\$tags of method Mage_Core_Model_App\\:\\:cleanCache\\(\\) expects array, string given\\.$#"
count: 1
- path: ../app/code/core/Mage/Tax/Model/Config/Price/Include.php
+ path: app/code/core/Mage/Tax/Model/Config/Price/Include.php
-
message: "#^Variable \\$selectClone might not be defined\\.$#"
count: 3
- path: ../app/code/core/Mage/Tax/Model/Resource/Calculation.php
+ path: app/code/core/Mage/Tax/Model/Resource/Calculation.php
-
message: "#^Variable \\$zipFrom might not be defined\\.$#"
count: 1
- path: ../app/code/core/Mage/Tax/Model/Resource/Calculation.php
+ path: app/code/core/Mage/Tax/Model/Resource/Calculation.php
-
message: "#^Variable \\$zipTo might not be defined\\.$#"
count: 1
- path: ../app/code/core/Mage/Tax/Model/Resource/Calculation.php
+ path: app/code/core/Mage/Tax/Model/Resource/Calculation.php
-
message: "#^Parameter \\#2 \\$resourceModel of method Mage_Core_Model_Resource_Db_Collection_Abstract\\:\\:_init\\(\\) expects Mage_Core_Model_Resource_Db_Abstract\\|null, string given\\.$#"
count: 1
- path: ../app/code/core/Mage/Tax/Model/Resource/Calculation/Rate/Title/Collection.php
+ path: app/code/core/Mage/Tax/Model/Resource/Calculation/Rate/Title/Collection.php
-
message: "#^Parameter \\#1 \\$conn of method Varien_Data_Collection_Db\\:\\:setConnection\\(\\) expects Zend_Db_Adapter_Abstract, Varien_Db_Adapter_Interface given\\.$#"
count: 1
- path: ../app/code/core/Mage/Tax/Model/Resource/Report/Collection.php
+ path: app/code/core/Mage/Tax/Model/Resource/Report/Collection.php
-
message: "#^Parameter \\#1 \\$expression of class Zend_Db_Expr constructor expects string, int given\\.$#"
count: 1
- path: ../app/code/core/Mage/Tax/Model/Resource/Report/Tax/Createdat.php
+ path: app/code/core/Mage/Tax/Model/Resource/Report/Tax/Createdat.php
-
message: "#^Negated boolean expression is always false\\.$#"
count: 1
- path: ../app/code/core/Mage/Tax/Model/Resource/Setup.php
+ path: app/code/core/Mage/Tax/Model/Resource/Setup.php
-
message: "#^Return type \\(void\\) of method Mage_Tax_Model_Sales_Total_Quote_Discount\\:\\:collect\\(\\) should be compatible with return type \\(\\$this\\(Mage_Sales_Model_Quote_Address_Total_Abstract\\)\\) of method Mage_Sales_Model_Quote_Address_Total_Abstract\\:\\:collect\\(\\)$#"
count: 1
- path: ../app/code/core/Mage/Tax/Model/Sales/Total/Quote/Discount.php
+ path: app/code/core/Mage/Tax/Model/Sales/Total/Quote/Discount.php
-
message: "#^Return type \\(array\\) of method Mage_Tax_Model_Sales_Total_Quote_Nominal_Tax\\:\\:fetch\\(\\) should be compatible with return type \\(\\$this\\(Mage_Tax_Model_Sales_Total_Quote_Tax\\)\\) of method Mage_Tax_Model_Sales_Total_Quote_Tax\\:\\:fetch\\(\\)$#"
count: 1
- path: ../app/code/core/Mage/Tax/Model/Sales/Total/Quote/Nominal/Tax.php
+ path: app/code/core/Mage/Tax/Model/Sales/Total/Quote/Nominal/Tax.php
-
message: "#^Call to function is_null\\(\\) with Varien_Object will always evaluate to false\\.$#"
count: 1
- path: ../app/code/core/Mage/Tax/Model/Sales/Total/Quote/Shipping.php
+ path: app/code/core/Mage/Tax/Model/Sales/Total/Quote/Shipping.php
-
message: "#^Parameter \\#1 \\$store of method Mage_Tax_Helper_Data\\:\\:isCrossBorderTradeEnabled\\(\\) expects int\\|null, Mage_Core_Model_Store given\\.$#"
count: 1
- path: ../app/code/core/Mage/Tax/Model/Sales/Total/Quote/Shipping.php
+ path: app/code/core/Mage/Tax/Model/Sales/Total/Quote/Shipping.php
-
message: "#^Parameter \\#1 \\$store of method Mage_Tax_Model_Config\\:\\:discountTax\\(\\) expects int\\|null, Mage_Core_Model_Store given\\.$#"
count: 1
- path: ../app/code/core/Mage/Tax/Model/Sales/Total/Quote/Shipping.php
+ path: app/code/core/Mage/Tax/Model/Sales/Total/Quote/Shipping.php
-
message: "#^Parameter \\#2 \\$rate of method Mage_Tax_Model_Sales_Total_Quote_Shipping\\:\\:_round\\(\\) expects string, float given\\.$#"
count: 4
- path: ../app/code/core/Mage/Tax/Model/Sales/Total/Quote/Shipping.php
+ path: app/code/core/Mage/Tax/Model/Sales/Total/Quote/Shipping.php
-
message: "#^Parameter \\#2 \\$store of method Mage_Tax_Model_Calculation\\:\\:getStoreRate\\(\\) expects null, Mage_Core_Model_Store given\\.$#"
count: 1
- path: ../app/code/core/Mage/Tax/Model/Sales/Total/Quote/Shipping.php
+ path: app/code/core/Mage/Tax/Model/Sales/Total/Quote/Shipping.php
-
message: "#^Parameter \\#4 \\$store of method Mage_Tax_Model_Calculation\\:\\:getRateRequest\\(\\) expects int\\|null, Mage_Core_Model_Store given\\.$#"
count: 2
- path: ../app/code/core/Mage/Tax/Model/Sales/Total/Quote/Shipping.php
+ path: app/code/core/Mage/Tax/Model/Sales/Total/Quote/Shipping.php
-
message: "#^Call to function is_null\\(\\) with Varien_Object will always evaluate to false\\.$#"
count: 1
- path: ../app/code/core/Mage/Tax/Model/Sales/Total/Quote/Subtotal.php
+ path: app/code/core/Mage/Tax/Model/Sales/Total/Quote/Subtotal.php
-
message: "#^If condition is always true\\.$#"
count: 1
- path: ../app/code/core/Mage/Tax/Model/Sales/Total/Quote/Subtotal.php
+ path: app/code/core/Mage/Tax/Model/Sales/Total/Quote/Subtotal.php
-
message: "#^Parameter \\#1 \\$store of method Mage_Tax_Helper_Data\\:\\:isCrossBorderTradeEnabled\\(\\) expects int\\|null, Mage_Core_Model_Store given\\.$#"
count: 1
- path: ../app/code/core/Mage/Tax/Model/Sales/Total/Quote/Subtotal.php
+ path: app/code/core/Mage/Tax/Model/Sales/Total/Quote/Subtotal.php
-
message: "#^Parameter \\#1 \\$store of method Mage_Tax_Model_Config\\:\\:discountTax\\(\\) expects int\\|null, Mage_Core_Model_Store given\\.$#"
count: 4
- path: ../app/code/core/Mage/Tax/Model/Sales/Total/Quote/Subtotal.php
+ path: app/code/core/Mage/Tax/Model/Sales/Total/Quote/Subtotal.php
-
message: "#^Parameter \\#2 \\$rate of method Mage_Tax_Model_Sales_Total_Quote_Subtotal\\:\\:_deltaRound\\(\\) expects string, float given\\.$#"
count: 4
- path: ../app/code/core/Mage/Tax/Model/Sales/Total/Quote/Subtotal.php
+ path: app/code/core/Mage/Tax/Model/Sales/Total/Quote/Subtotal.php
-
message: "#^Parameter \\#2 \\$store of method Mage_Tax_Model_Calculation\\:\\:getStoreRate\\(\\) expects null, Mage_Core_Model_Store given\\.$#"
count: 4
- path: ../app/code/core/Mage/Tax/Model/Sales/Total/Quote/Subtotal.php
+ path: app/code/core/Mage/Tax/Model/Sales/Total/Quote/Subtotal.php
-
message: "#^Parameter \\#4 \\$store of method Mage_Tax_Model_Calculation\\:\\:getRateRequest\\(\\) expects int\\|null, Mage_Core_Model_Store given\\.$#"
count: 1
- path: ../app/code/core/Mage/Tax/Model/Sales/Total/Quote/Subtotal.php
+ path: app/code/core/Mage/Tax/Model/Sales/Total/Quote/Subtotal.php
-
message: "#^Unreachable statement \\- code above always terminates\\.$#"
count: 1
- path: ../app/code/core/Mage/Tax/Model/Sales/Total/Quote/Subtotal.php
+ path: app/code/core/Mage/Tax/Model/Sales/Total/Quote/Subtotal.php
-
message: "#^Empty array passed to foreach\\.$#"
count: 1
- path: ../app/code/core/Mage/Tax/Model/Sales/Total/Quote/Tax.php
+ path: app/code/core/Mage/Tax/Model/Sales/Total/Quote/Tax.php
-
message: "#^If condition is always true\\.$#"
count: 4
- path: ../app/code/core/Mage/Tax/Model/Sales/Total/Quote/Tax.php
+ path: app/code/core/Mage/Tax/Model/Sales/Total/Quote/Tax.php
-
message: "#^Parameter \\#1 \\$store of method Mage_Tax_Helper_Data\\:\\:isCrossBorderTradeEnabled\\(\\) expects int\\|null, Mage_Core_Model_Store given\\.$#"
count: 2
- path: ../app/code/core/Mage/Tax/Model/Sales/Total/Quote/Tax.php
+ path: app/code/core/Mage/Tax/Model/Sales/Total/Quote/Tax.php
-
message: "#^Parameter \\#4 \\$store of method Mage_Tax_Model_Calculation\\:\\:getRateRequest\\(\\) expects int\\|null, Mage_Core_Model_Store given\\.$#"
count: 1
- path: ../app/code/core/Mage/Tax/Model/Sales/Total/Quote/Tax.php
+ path: app/code/core/Mage/Tax/Model/Sales/Total/Quote/Tax.php
-
message: "#^Parameter \\#4 \\$value of method Mage_Weee_Helper_Data\\:\\:setWeeeTaxesAppliedProperty\\(\\) expects string, \\(array\\|float\\|int\\) given\\.$#"
count: 4
- path: ../app/code/core/Mage/Tax/Model/Sales/Total/Quote/Tax.php
+ path: app/code/core/Mage/Tax/Model/Sales/Total/Quote/Tax.php
-
message: "#^Parameter \\#4 \\$value of method Mage_Weee_Helper_Data\\:\\:setWeeeTaxesAppliedProperty\\(\\) expects string, \\(float\\|int\\) given\\.$#"
count: 4
- path: ../app/code/core/Mage/Tax/Model/Sales/Total/Quote/Tax.php
+ path: app/code/core/Mage/Tax/Model/Sales/Total/Quote/Tax.php
-
message: "#^Return type \\(\\$this\\(Mage_Tax_Model_Sales_Total_Quote_Tax\\)\\) of method Mage_Tax_Model_Sales_Total_Quote_Tax\\:\\:fetch\\(\\) should be compatible with return type \\(array\\) of method Mage_Sales_Model_Quote_Address_Total_Abstract\\:\\:fetch\\(\\)$#"
count: 1
- path: ../app/code/core/Mage/Tax/Model/Sales/Total/Quote/Tax.php
+ path: app/code/core/Mage/Tax/Model/Sales/Total/Quote/Tax.php
-
message: "#^Unreachable statement \\- code above always terminates\\.$#"
count: 3
- path: ../app/code/core/Mage/Tax/Model/Sales/Total/Quote/Tax.php
+ path: app/code/core/Mage/Tax/Model/Sales/Total/Quote/Tax.php
-
message: "#^Variable \\$baseRowTax might not be defined\\.$#"
count: 3
- path: ../app/code/core/Mage/Tax/Model/Sales/Total/Quote/Tax.php
+ path: app/code/core/Mage/Tax/Model/Sales/Total/Quote/Tax.php
-
message: "#^Variable \\$baseTax might not be defined\\.$#"
count: 2
- path: ../app/code/core/Mage/Tax/Model/Sales/Total/Quote/Tax.php
+ path: app/code/core/Mage/Tax/Model/Sales/Total/Quote/Tax.php
-
message: "#^Variable \\$baseTaxBeforeDiscountRounded might not be defined\\.$#"
count: 1
- path: ../app/code/core/Mage/Tax/Model/Sales/Total/Quote/Tax.php
+ path: app/code/core/Mage/Tax/Model/Sales/Total/Quote/Tax.php
-
message: "#^Variable \\$baseUnitTax might not be defined\\.$#"
count: 1
- path: ../app/code/core/Mage/Tax/Model/Sales/Total/Quote/Tax.php
+ path: app/code/core/Mage/Tax/Model/Sales/Total/Quote/Tax.php
-
message: "#^Variable \\$rowTax might not be defined\\.$#"
count: 3
- path: ../app/code/core/Mage/Tax/Model/Sales/Total/Quote/Tax.php
+ path: app/code/core/Mage/Tax/Model/Sales/Total/Quote/Tax.php
-
message: "#^Variable \\$tax might not be defined\\.$#"
count: 2
- path: ../app/code/core/Mage/Tax/Model/Sales/Total/Quote/Tax.php
+ path: app/code/core/Mage/Tax/Model/Sales/Total/Quote/Tax.php
-
message: "#^Variable \\$taxBeforeDiscountRounded might not be defined\\.$#"
count: 1
- path: ../app/code/core/Mage/Tax/Model/Sales/Total/Quote/Tax.php
+ path: app/code/core/Mage/Tax/Model/Sales/Total/Quote/Tax.php
-
message: "#^Variable \\$unitTax might not be defined\\.$#"
count: 1
- path: ../app/code/core/Mage/Tax/Model/Sales/Total/Quote/Tax.php
+ path: app/code/core/Mage/Tax/Model/Sales/Total/Quote/Tax.php
-
message: "#^Call to function is_null\\(\\) with Mage_Uploader_Model_Config_Browsebutton will always evaluate to false\\.$#"
count: 1
- path: ../app/code/core/Mage/Uploader/Block/Abstract.php
+ path: app/code/core/Mage/Uploader/Block/Abstract.php
-
message: "#^Call to function is_null\\(\\) with Mage_Uploader_Model_Config_Misc will always evaluate to false\\.$#"
count: 1
- path: ../app/code/core/Mage/Uploader/Block/Abstract.php
+ path: app/code/core/Mage/Uploader/Block/Abstract.php
-
message: "#^Call to function is_null\\(\\) with Mage_Uploader_Model_Config_Uploader will always evaluate to false\\.$#"
count: 1
- path: ../app/code/core/Mage/Uploader/Block/Abstract.php
+ path: app/code/core/Mage/Uploader/Block/Abstract.php
-
message: "#^Binary operation \"\\*\" between string and 1024 results in an error\\.$#"
count: 1
- path: ../app/code/core/Mage/Uploader/Helper/File.php
+ path: app/code/core/Mage/Uploader/Helper/File.php
-
message: "#^Binary operation \"\\*\" between string and 1048576 results in an error\\.$#"
count: 1
- path: ../app/code/core/Mage/Uploader/Helper/File.php
+ path: app/code/core/Mage/Uploader/Helper/File.php
-
message: "#^Binary operation \"\\*\" between string and 1073741824 results in an error\\.$#"
count: 1
- path: ../app/code/core/Mage/Uploader/Helper/File.php
+ path: app/code/core/Mage/Uploader/Helper/File.php
-
message: "#^Binary operation \"\\*\" between string and 1099511627776 results in an error\\.$#"
count: 1
- path: ../app/code/core/Mage/Uploader/Helper/File.php
+ path: app/code/core/Mage/Uploader/Helper/File.php
-
message: "#^Parameter \\#2 \\$return of function print_r expects bool, int given\\.$#"
count: 1
- path: ../app/code/core/Mage/Uploader/Model/Config/Abstract.php
+ path: app/code/core/Mage/Uploader/Model/Config/Abstract.php
-
message: "#^Method Mage_Widget_Block_Adminhtml_Widget_Chooser\\:\\:getConfig\\(\\) should return Varien_Object but returns mixed\\.$#"
count: 2
- path: ../app/code/core/Mage/Widget/Block/Adminhtml/Widget/Chooser.php
+ path: app/code/core/Mage/Widget/Block/Adminhtml/Widget/Chooser.php
-
message: "#^Variable \\$options might not be defined\\.$#"
count: 1
- path: ../app/code/core/Mage/Widget/Block/Adminhtml/Widget/Form.php
+ path: app/code/core/Mage/Widget/Block/Adminhtml/Widget/Form.php
-
message: "#^Parameter \\#1 \\$layoutHandles of method Mage_Widget_Block_Adminhtml_Widget_Instance_Edit_Chooser_Layout\\:\\:_collectLayoutHandles\\(\\) expects Mage_Core_Model_Layout_Element, SimpleXMLElement given\\.$#"
count: 1
- path: ../app/code/core/Mage/Widget/Block/Adminhtml/Widget/Instance/Edit/Chooser/Layout.php
+ path: app/code/core/Mage/Widget/Block/Adminhtml/Widget/Instance/Edit/Chooser/Layout.php
-
message: "#^Parameter \\#1 \\$renderer of method Varien_Data_Form_Element_Abstract\\:\\:setRenderer\\(\\) expects Varien_Data_Form_Element_Renderer_Interface, Mage_Core_Block_Abstract\\|false given\\.$#"
count: 1
- path: ../app/code/core/Mage/Widget/Block/Adminhtml/Widget/Instance/Edit/Tab/Main.php
+ path: app/code/core/Mage/Widget/Block/Adminhtml/Widget/Instance/Edit/Tab/Main.php
-
message: "#^Variable \\$productsOptions might not be defined\\.$#"
count: 1
- path: ../app/code/core/Mage/Widget/Block/Adminhtml/Widget/Instance/Edit/Tab/Main/Layout.php
+ path: app/code/core/Mage/Widget/Block/Adminhtml/Widget/Instance/Edit/Tab/Main/Layout.php
-
message: "#^Cannot call method toOptionArray\\(\\) on Mage_Core_Model_Abstract\\|false\\.$#"
count: 1
- path: ../app/code/core/Mage/Widget/Block/Adminhtml/Widget/Options.php
+ path: app/code/core/Mage/Widget/Block/Adminhtml/Widget/Options.php
-
message: "#^Parameter \\#1 \\$as_float of function microtime expects bool, int given\\.$#"
count: 1
- path: ../app/code/core/Mage/Widget/Block/Adminhtml/Widget/Options.php
+ path: app/code/core/Mage/Widget/Block/Adminhtml/Widget/Options.php
-
message: "#^Parameter \\#1 \\$renderer of method Varien_Data_Form_Element_Abstract\\:\\:setRenderer\\(\\) expects Varien_Data_Form_Element_Renderer_Interface, Mage_Core_Block_Abstract given\\.$#"
count: 1
- path: ../app/code/core/Mage/Widget/Block/Adminhtml/Widget/Options.php
+ path: app/code/core/Mage/Widget/Block/Adminhtml/Widget/Options.php
-
message: "#^Unreachable statement \\- code above always terminates\\.$#"
count: 1
- path: ../app/code/core/Mage/Widget/Block/Adminhtml/Widget/Options.php
+ path: app/code/core/Mage/Widget/Block/Adminhtml/Widget/Options.php
-
message: "#^Parameter \\#1 \\$widgetInstance of method Mage_Widget_Model_Resource_Widget_Instance\\:\\:_saveLayoutUpdates\\(\\) expects Mage_Widget_Model_Widget_Instance, Mage_Core_Model_Abstract given\\.$#"
count: 1
- path: ../app/code/core/Mage/Widget/Model/Resource/Widget/Instance.php
+ path: app/code/core/Mage/Widget/Model/Resource/Widget/Instance.php
-
message: "#^Parameter \\#2 \\$mergeToObject of method Mage_Core_Model_Config\\:\\:loadModulesConfiguration\\(\\) expects Mage_Core_Model_Config_Base\\|null, Varien_Simplexml_Config given\\.$#"
count: 1
- path: ../app/code/core/Mage/Widget/Model/Widget.php
+ path: app/code/core/Mage/Widget/Model/Widget.php
-
message: "#^Comparison operation \"\\>\\=\" between int\\<0, max\\>\\|false and 0 is always true\\.$#"
count: 1
- path: ../app/code/core/Mage/Widget/Model/Widget/Instance.php
+ path: app/code/core/Mage/Widget/Model/Widget/Instance.php
-
message: "#^Variable \\$template might not be defined\\.$#"
count: 1
- path: ../app/code/core/Mage/Widget/Model/Widget/Instance.php
+ path: app/code/core/Mage/Widget/Model/Widget/Instance.php
-
message: "#^Call to function is_null\\(\\) with Mage_Wishlist_Model_Resource_Item_Collection will always evaluate to false\\.$#"
count: 1
- path: ../app/code/core/Mage/Wishlist/Block/Abstract.php
+ path: app/code/core/Mage/Wishlist/Block/Abstract.php
-
message: "#^Call to function is_null\\(\\) with array will always evaluate to false\\.$#"
count: 1
- path: ../app/code/core/Mage/Wishlist/Block/Customer/Sharing.php
+ path: app/code/core/Mage/Wishlist/Block/Customer/Sharing.php
-
message: "#^Return type \\(void\\) of method Mage_Wishlist_Block_Customer_Sharing\\:\\:_prepareLayout\\(\\) should be compatible with return type \\(\\$this\\(Mage_Core_Block_Abstract\\)\\) of method Mage_Core_Block_Abstract\\:\\:_prepareLayout\\(\\)$#"
count: 1
- path: ../app/code/core/Mage/Wishlist/Block/Customer/Sharing.php
+ path: app/code/core/Mage/Wishlist/Block/Customer/Sharing.php
-
message: "#^Call to function is_null\\(\\) with Mage_Wishlist_Model_Resource_Item_Collection will always evaluate to false\\.$#"
count: 1
- path: ../app/code/core/Mage/Wishlist/Block/Customer/Sidebar.php
+ path: app/code/core/Mage/Wishlist/Block/Customer/Sidebar.php
-
message: "#^Return type \\(void\\) of method Mage_Wishlist_Block_Customer_Wishlist\\:\\:_prepareLayout\\(\\) should be compatible with return type \\(\\$this\\(Mage_Catalog_Block_Product_Abstract\\)\\) of method Mage_Catalog_Block_Product_Abstract\\:\\:_prepareLayout\\(\\)$#"
count: 1
- path: ../app/code/core/Mage/Wishlist/Block/Customer/Wishlist.php
+ path: app/code/core/Mage/Wishlist/Block/Customer/Wishlist.php
-
message: "#^If condition is always true\\.$#"
count: 1
- path: ../app/code/core/Mage/Wishlist/Block/Customer/Wishlist/Item/Column.php
+ path: app/code/core/Mage/Wishlist/Block/Customer/Wishlist/Item/Column.php
-
message: "#^Unreachable statement \\- code above always terminates\\.$#"
count: 1
- path: ../app/code/core/Mage/Wishlist/Block/Customer/Wishlist/Item/Column.php
+ path: app/code/core/Mage/Wishlist/Block/Customer/Wishlist/Item/Column.php
-
message: "#^Parameter \\#1 \\$item \\(Mage_Wishlist_Model_Item\\) of method Mage_Wishlist_Block_Share_Email_Items\\:\\:hasDescription\\(\\) should be compatible with parameter \\$item \\(Mage_Catalog_Model_Product\\) of method Mage_Wishlist_Block_Abstract\\:\\:hasDescription\\(\\)$#"
count: 1
- path: ../app/code/core/Mage/Wishlist/Block/Share/Email/Items.php
+ path: app/code/core/Mage/Wishlist/Block/Share/Email/Items.php
-
message: "#^Parameter \\#1 \\$item of method Mage_Wishlist_Block_Abstract\\:\\:hasDescription\\(\\) expects Mage_Catalog_Model_Product, Mage_Wishlist_Model_Item given\\.$#"
count: 1
- path: ../app/code/core/Mage/Wishlist/Block/Share/Email/Items.php
+ path: app/code/core/Mage/Wishlist/Block/Share/Email/Items.php
-
message: "#^Call to function is_null\\(\\) with Mage_Customer_Model_Customer will always evaluate to false\\.$#"
count: 1
- path: ../app/code/core/Mage/Wishlist/Block/Share/Wishlist.php
+ path: app/code/core/Mage/Wishlist/Block/Share/Wishlist.php
-
message: "#^Call to function is_null\\(\\) with Mage_Wishlist_Model_Resource_Item_Collection will always evaluate to false\\.$#"
count: 1
- path: ../app/code/core/Mage/Wishlist/Helper/Data.php
+ path: app/code/core/Mage/Wishlist/Helper/Data.php
-
message: "#^Call to function is_null\\(\\) with Mage_Wishlist_Model_Resource_Product_Collection will always evaluate to false\\.$#"
count: 1
- path: ../app/code/core/Mage/Wishlist/Helper/Data.php
+ path: app/code/core/Mage/Wishlist/Helper/Data.php
-
message: "#^Call to function is_null\\(\\) with Mage_Wishlist_Model_Wishlist will always evaluate to false\\.$#"
count: 1
- path: ../app/code/core/Mage/Wishlist/Helper/Data.php
+ path: app/code/core/Mage/Wishlist/Helper/Data.php
-
message: "#^If condition is always true\\.$#"
count: 2
- path: ../app/code/core/Mage/Wishlist/Helper/Data.php
+ path: app/code/core/Mage/Wishlist/Helper/Data.php
-
message: "#^Negated boolean expression is always false\\.$#"
count: 1
- path: ../app/code/core/Mage/Wishlist/Helper/Data.php
+ path: app/code/core/Mage/Wishlist/Helper/Data.php
-
message: "#^Result of && is always false\\.$#"
count: 1
- path: ../app/code/core/Mage/Wishlist/Helper/Data.php
+ path: app/code/core/Mage/Wishlist/Helper/Data.php
-
message: "#^Method Mage_Wishlist_Model_Item\\:\\:save\\(\\) should return \\$this\\(Mage_Wishlist_Model_Item\\) but return statement is missing\\.$#"
count: 1
- path: ../app/code/core/Mage/Wishlist/Model/Item.php
+ path: app/code/core/Mage/Wishlist/Model/Item.php
-
message: "#^Negated boolean expression is always true\\.$#"
count: 1
- path: ../app/code/core/Mage/Wishlist/Model/Item.php
+ path: app/code/core/Mage/Wishlist/Model/Item.php
-
message: "#^Parameter \\#1 \\$item of method Mage_Wishlist_Model_Resource_Item_Option_Collection\\:\\:addItemFilter\\(\\) expects array\\|int, \\$this\\(Mage_Wishlist_Model_Item\\) given\\.$#"
count: 1
- path: ../app/code/core/Mage/Wishlist/Model/Item.php
+ path: app/code/core/Mage/Wishlist/Model/Item.php
-
message: "#^Parameter \\#1 \\$message of class Mage_Core_Exception constructor expects string, null given\\.$#"
count: 1
- path: ../app/code/core/Mage/Wishlist/Model/Item.php
+ path: app/code/core/Mage/Wishlist/Model/Item.php
-
message: "#^Parameter \\#1 \\$option of method Mage_Wishlist_Model_Item\\:\\:addOption\\(\\) expects Mage_Wishlist_Model_Item_Option, array\\ given\\.$#"
count: 1
- path: ../app/code/core/Mage/Wishlist/Model/Item.php
+ path: app/code/core/Mage/Wishlist/Model/Item.php
-
message: "#^Result of && is always false\\.$#"
count: 1
- path: ../app/code/core/Mage/Wishlist/Model/Item.php
+ path: app/code/core/Mage/Wishlist/Model/Item.php
-
message: "#^Variable \\$buyRequest in empty\\(\\) always exists and is not falsy\\.$#"
count: 2
- path: ../app/code/core/Mage/Wishlist/Model/Item.php
+ path: app/code/core/Mage/Wishlist/Model/Item.php
-
message: "#^If condition is always true\\.$#"
count: 1
- path: ../app/code/core/Mage/Wishlist/Model/Item/Option.php
+ path: app/code/core/Mage/Wishlist/Model/Item/Option.php
-
message: "#^Method Mage_Wishlist_Model_Item_Option\\:\\:__clone\\(\\) with return type void returns \\$this\\(Mage_Wishlist_Model_Item_Option\\) but should not return anything\\.$#"
count: 1
- path: ../app/code/core/Mage/Wishlist/Model/Item/Option.php
+ path: app/code/core/Mage/Wishlist/Model/Item/Option.php
-
message: "#^Call to function is_null\\(\\) with int will always evaluate to false\\.$#"
count: 1
- path: ../app/code/core/Mage/Wishlist/Model/Resource/Item/Collection.php
+ path: app/code/core/Mage/Wishlist/Model/Resource/Item/Collection.php
-
message: "#^Parameter \\#1 \\$collection of method Mage_Adminhtml_Helper_Sales\\:\\:applySalableProductTypesFilter\\(\\) expects Mage_Core_Model_Resource_Db_Collection_Abstract, Mage_Catalog_Model_Resource_Product_Collection given\\.$#"
count: 1
- path: ../app/code/core/Mage/Wishlist/Model/Resource/Item/Collection.php
+ path: app/code/core/Mage/Wishlist/Model/Resource/Item/Collection.php
-
message: "#^Call to function is_null\\(\\) with Mage_Core_Model_Store will always evaluate to false\\.$#"
count: 1
- path: ../app/code/core/Mage/Wishlist/Model/Wishlist.php
+ path: app/code/core/Mage/Wishlist/Model/Wishlist.php
-
message: "#^Call to function is_null\\(\\) with Mage_Wishlist_Model_Resource_Item_Collection will always evaluate to false\\.$#"
count: 1
- path: ../app/code/core/Mage/Wishlist/Model/Wishlist.php
+ path: app/code/core/Mage/Wishlist/Model/Wishlist.php
-
message: "#^Call to function is_null\\(\\) with array will always evaluate to false\\.$#"
count: 1
- path: ../app/code/core/Mage/Wishlist/Model/Wishlist.php
+ path: app/code/core/Mage/Wishlist/Model/Wishlist.php
-
message: "#^Variable \\$item might not be defined\\.$#"
count: 1
- path: ../app/code/core/Mage/Wishlist/Model/Wishlist.php
+ path: app/code/core/Mage/Wishlist/Model/Wishlist.php
-
message: "#^Comparison operation \"\\!\\=\" between int and \\(array\\\\|string\\) results in an error\\.$#"
count: 1
- path: ../app/code/core/Mage/Wishlist/controllers/IndexController.php
+ path: app/code/core/Mage/Wishlist/controllers/IndexController.php
-
message: "#^Method Mage_Wishlist_IndexController\\:\\:_addItemToWishList\\(\\) with return type void returns mixed but should not return anything\\.$#"
count: 1
- path: ../app/code/core/Mage/Wishlist/controllers/IndexController.php
+ path: app/code/core/Mage/Wishlist/controllers/IndexController.php
-
message: "#^Method Mage_Wishlist_IndexController\\:\\:downloadCustomOptionAction\\(\\) with return type void returns mixed but should not return anything\\.$#"
count: 3
- path: ../app/code/core/Mage/Wishlist/controllers/IndexController.php
+ path: app/code/core/Mage/Wishlist/controllers/IndexController.php
-
message: "#^Negated boolean expression is always false\\.$#"
count: 2
- path: ../app/code/core/Mage/Wishlist/controllers/IndexController.php
+ path: app/code/core/Mage/Wishlist/controllers/IndexController.php
-
message: "#^Parameter \\#1 \\$qty of method Mage_Wishlist_Model_Item\\:\\:setQty\\(\\) expects int, float given\\.$#"
count: 1
- path: ../app/code/core/Mage/Wishlist/controllers/IndexController.php
+ path: app/code/core/Mage/Wishlist/controllers/IndexController.php
-
message: "#^Parameter \\#3 \\$value of method Mage_Core_Controller_Varien_Action\\:\\:setFlag\\(\\) expects int\\|string, true given\\.$#"
count: 1
- path: ../app/code/core/Mage/Wishlist/controllers/IndexController.php
+ path: app/code/core/Mage/Wishlist/controllers/IndexController.php
-
message: "#^Return type \\(void\\) of method Mage_Wishlist_IndexController\\:\\:preDispatch\\(\\) should be compatible with return type \\(\\$this\\(Mage_Core_Controller_Front_Action\\)\\) of method Mage_Core_Controller_Front_Action\\:\\:preDispatch\\(\\)$#"
count: 1
- path: ../app/code/core/Mage/Wishlist/controllers/IndexController.php
+ path: app/code/core/Mage/Wishlist/controllers/IndexController.php
-
message: "#^Variable \\$cronMode might not be defined\\.$#"
count: 1
- path: ../cron.php
+ path: cron.php
-
message: "#^Parameter \\#2 \\$value of function ini_set expects string, int given\\.$#"
count: 1
- path: ../get.php
+ path: get.php
-
message: "#^Variable \\$relativeFilename might not be defined\\.$#"
count: 4
- path: ../get.php
+ path: get.php
diff --git a/.github/phpstan.neon b/phpstan.dist.neon
similarity index 97%
rename from .github/phpstan.neon
rename to phpstan.dist.neon
index d4a076bf2f4..96b3b04d255 100644
--- a/.github/phpstan.neon
+++ b/phpstan.dist.neon
@@ -1,6 +1,6 @@
includes:
- - ../vendor/macopedia/phpstan-magento1/extension.neon
- - phpstan-baseline.neon
+ - vendor/macopedia/phpstan-magento1/extension.neon
+ - phpstan.dist.baseline.neon
parameters:
phpVersion: 80000 # PHP 8.0
magentoRootPath: %currentWorkingDirectory%
From 2e5c4330b24e849281aa5bafb55adad35ae9b312 Mon Sep 17 00:00:00 2001
From: Sven Reichel
Date: Wed, 30 Nov 2022 05:09:14 +0100
Subject: [PATCH 2/4] Update
---
.github/workflows/check-files.yml | 83 ++++++++++++++++++----------
.github/workflows/labeler-labels.yml | 7 +++
.github/workflows/phpunit.yml | 3 +
.github/workflows/sonar.yml | 3 +
.github/workflows/syntax-php.yml | 3 +
.github/workflows/syntax-xml.yml | 3 +
.github/workflows/workflow.yml | 38 +++++++++----
7 files changed, 102 insertions(+), 38 deletions(-)
diff --git a/.github/workflows/check-files.yml b/.github/workflows/check-files.yml
index 5a651738204..6f782266dfe 100644
--- a/.github/workflows/check-files.yml
+++ b/.github/workflows/check-files.yml
@@ -3,27 +3,36 @@ name: File checker
on:
workflow_call:
outputs:
- composer_count:
+ composer:
description: "Count changed Composer files"
- value: ${{ jobs.check.outputs.composer_count }}
- php_count:
+ value: ${{ jobs.check.outputs.composer }}
+ php:
description: "Count changed PHP files"
- value: ${{ jobs.check.outputs.php_count }}
- xml_count:
+ value: ${{ jobs.check.outputs.php }}
+ xml:
description: "Count changed XML files"
- value: ${{ jobs.check.outputs.xml_count }}
- ci_count:
+ value: ${{ jobs.check.outputs.xml }}
+ workflow:
description: "Count changed Workflow files"
- value: ${{ jobs.check.outputs.ci_count }}
- ci_phpcs_count:
+ value: ${{ jobs.check.outputs.workflow }}
+ phpcs:
description: "Count changed PHPCS files"
- value: ${{ jobs.check.outputs.ci_phpcs_count }}
- ci_php_cs_fixer_count:
+ value: ${{ jobs.check.outputs.phpcs }}
+ php-cs-fixer:
description: "Count changed PHP-CS-Fixer files"
- value: ${{ jobs.check.outputs.ci_php_cs_fixer_count }}
- ci_phpstan_count:
+ value: ${{ jobs.check.outputs.php-cs-fixer }}
+ phpstan:
description: "Count changed PHPStan files"
- value: ${{ jobs.check.outputs.ci_phpstan_count }}
+ value: ${{ jobs.check.outputs.phpstan }}
+ phpunit-test:
+ description: "Count changed PhpUnit test files"
+ value: ${{ jobs.check.outputs.phpunit-test }}
+ phpunit:
+ description: "Count changed PhpUnit files"
+ value: ${{ jobs.check.outputs.phpunit }}
+ sonar:
+ description: "Count changed Sonar files"
+ value: ${{ jobs.check.outputs.sonar }}
# Allow manually triggering the workflow.
workflow_dispatch:
@@ -32,13 +41,16 @@ jobs:
name: Changed
runs-on: [ubuntu-latest]
outputs:
- composer_count: ${{ steps.all.outputs.composer_count }}
- php_count: ${{ steps.all.outputs.php_count }}
- xml_count: ${{ steps.all.outputs.xml_count }}
- ci_count: ${{ steps.all.outputs.ci_count }}
- ci_phpcs_count: ${{ steps.all.outputs.ci_phpcs_count }}
- ci_php_cs_fixer_count: ${{ steps.all.outputs.ci_php_cs_fixer_count }}
- ci_phpstan_count: ${{ steps.all.outputs.ci_phpstan_count }}
+ composer: ${{ steps.all.outputs.composer }}
+ php: ${{ steps.all.outputs.php }}
+ xml: ${{ steps.all.outputs.xml }}
+ workflow: ${{ steps.all.outputs.workflow }}
+ phpcs: ${{ steps.all.outputs.phpcs }}
+ php-cs-fixer: ${{ steps.all.outputs.php-cs-fixer }}
+ phpstan: ${{ steps.all.outputs.phpstan }}
+ phpunit-test: ${{ steps.all.outputs.phpunit-test }}
+ phpunit: ${{ steps.all.outputs.phpunit }}
+ sonar: ${{ steps.all.outputs.sonar }}
steps:
- name: Checkout code
@@ -70,6 +82,9 @@ jobs:
**phpcs**
**php-cs-fixer**
**phpstan**
+ dev/tests/
+ dev/phpunit*
+ dev/sonar*
- name: Run step if any file(s) changed
id: all
@@ -79,28 +94,40 @@ jobs:
count="$(grep -oE "composer.*" <<< "${{ steps.changed-files-specific.outputs.all_changed_files }}" | wc -l)"
echo "$count Composer file(s) changed"
- echo "composer_count=$count" >> $GITHUB_OUTPUT
+ echo "composer=$count" >> $GITHUB_OUTPUT
count="$(grep -oE "*.php" <<< "${{ steps.changed-files-specific.outputs.all_changed_files }}" | wc -l)"
echo "$count PHP file(s) changed"
- echo "php_count=$count" >> $GITHUB_OUTPUT
+ echo "php=$count" >> $GITHUB_OUTPUT
count="$(grep -oE "*.xml" <<< "${{ steps.changed-files-specific.outputs.all_changed_files }}" | wc -l)"
echo "$count XML file(s) changed"
- echo "xml_count=$count" >> $GITHUB_OUTPUT
+ echo "xml=$count" >> $GITHUB_OUTPUT
count="$(grep -oE ".github/workflows/**" <<< "${{ steps.changed-files-specific.outputs.all_changed_files }}" | wc -l)"
echo "$count Workflow file(s) changed"
- echo "ci_count=$count" >> $GITHUB_OUTPUT
+ echo "workflow=$count" >> $GITHUB_OUTPUT
count="$(grep -oE "**phpcs**" <<< "${{ steps.changed-files-specific.outputs.all_changed_files }}" | wc -l)"
echo "$count PHPCS file(s) changed"
- echo "ci_phpcs_count=$count" >> $GITHUB_OUTPUT
+ echo "phpcs=$count" >> $GITHUB_OUTPUT
count="$(grep -oE "**php-cs-fixer**" <<< "${{ steps.changed-files-specific.outputs.all_changed_files }}" | wc -l)"
echo "$count PHP-CS-Fixer file(s) changed"
- echo "ci_php_cs_fixer_count=$count" >> $GITHUB_OUTPUT
+ echo "php-cs-fixer=$count" >> $GITHUB_OUTPUT
count="$(grep -oE "**phpstan**" <<< "${{ steps.changed-files-specific.outputs.all_changed_files }}" | wc -l)"
echo "$count PHPStan file(s) changed"
- echo "ci_phpstan_count=$count" >> $GITHUB_OUTPUT
+ echo "phpstan=$count" >> $GITHUB_OUTPUT
+
+ count="$(grep -oE "dev/tests/" <<< "${{ steps.changed-files-specific.outputs.all_changed_files }}" | wc -l)"
+ echo "$count UnitTest test file(s) changed"
+ echo "phpunit-test=$count" >> $GITHUB_OUTPUT
+
+ count="$(grep -oE "dev/phpunit*" <<< "${{ steps.changed-files-specific.outputs.all_changed_files }}" | wc -l)"
+ echo "$count UnitTest file(s) changed"
+ echo "phpunit=$count" >> $GITHUB_OUTPUT
+
+ count="$(grep -oE "dev/sonar*" <<< "${{ steps.changed-files-specific.outputs.all_changed_files }}" | wc -l)"
+ echo "$count Sonar file(s) changed"
+ echo "sonar=$count" >> $GITHUB_OUTPUT
diff --git a/.github/workflows/labeler-labels.yml b/.github/workflows/labeler-labels.yml
index 6393118664f..dbb2d3ae826 100644
--- a/.github/workflows/labeler-labels.yml
+++ b/.github/workflows/labeler-labels.yml
@@ -616,3 +616,10 @@
'phpstan':
- phpstan*
- .github/workflows/phpstan.yml
+
+'phpunit':
+ - dev/test/*
+ - dev/phpunit*
+ - dev/sonar*
+ - .github/workflows/phpunit.yml
+ - .github/workflows/sonar.yml
diff --git a/.github/workflows/phpunit.yml b/.github/workflows/phpunit.yml
index af56289bc1c..d91a7dba2b4 100644
--- a/.github/workflows/phpunit.yml
+++ b/.github/workflows/phpunit.yml
@@ -1,6 +1,9 @@
name: OpenMage LTS - Unit Tests
on:
+ # Run automatically every Monday on midnight.
+ schedule:
+ - cron: '0 0 * * 1'
workflow_call:
# Allow manually triggering the workflow.
workflow_dispatch:
diff --git a/.github/workflows/sonar.yml b/.github/workflows/sonar.yml
index fbb6205723e..fa55917baee 100644
--- a/.github/workflows/sonar.yml
+++ b/.github/workflows/sonar.yml
@@ -1,6 +1,9 @@
name: OpenMage LTS - Sonar - Full Analyses
on:
+ # Run automatically every Monday on midnight.
+ schedule:
+ - cron: '0 0 * * 1'
workflow_call:
# Allow manually triggering the workflow.
workflow_dispatch:
diff --git a/.github/workflows/syntax-php.yml b/.github/workflows/syntax-php.yml
index 62072801fdb..1ee6fd7a7df 100644
--- a/.github/workflows/syntax-php.yml
+++ b/.github/workflows/syntax-php.yml
@@ -1,6 +1,9 @@
name: PHP Validatation
on:
+ # Run automatically every Monday on midnight.
+ schedule:
+ - cron: '0 0 * * 1'
workflow_call:
# Allow manually triggering the workflow.
workflow_dispatch:
diff --git a/.github/workflows/syntax-xml.yml b/.github/workflows/syntax-xml.yml
index a51d3e4f593..93fa632f80f 100644
--- a/.github/workflows/syntax-xml.yml
+++ b/.github/workflows/syntax-xml.yml
@@ -1,6 +1,9 @@
name: XML Validation
on:
+ # Run automatically every Monday on midnight.
+ schedule:
+ - cron: '0 0 * * 1'
workflow_call:
# Allow manually triggering the workflow.
workflow_dispatch:
diff --git a/.github/workflows/workflow.yml b/.github/workflows/workflow.yml
index c3b9b1a0975..c0624fb8e0c 100644
--- a/.github/workflows/workflow.yml
+++ b/.github/workflows/workflow.yml
@@ -3,19 +3,31 @@ name: CI
on:
push:
paths:
- - '.github/**'
+ - '.github/workflows/*'
- 'composer.json'
- 'composer.lock'
- '**.php'
- '**.xml'
+ - '.php-cs-fixer.dist.php'
+ - '.phpcs.xml.dist'
+ - '.phpcs.ecg.xml.dist'
+ - '.phpcs.php.xml.dist'
+ - 'phpstan.dist.neon'
+ - 'phpstan.dist.baseline.neon'
pull_request:
paths:
- - '.github/**'
+ - '.github/workflows/*'
- 'composer.json'
- 'composer.lock'
- '**.php'
- '**.xml'
+ - '.php-cs-fixer.dist.php'
+ - '.phpcs.xml.dist'
+ - '.phpcs.ecg.xml.dist'
+ - '.phpcs.php.xml.dist'
+ - 'phpstan.dist.neon'
+ - 'phpstan.dist.baseline.neon'
jobs:
debug:
@@ -34,47 +46,53 @@ jobs:
composer:
name: Composer
needs: [check]
- if: needs.check.outputs.composer_count > 0
+ if: needs.check.outputs.composer > 0
uses: ./.github/workflows/composer.yml
phpcs:
name: PHPCS
needs: [check]
- if: needs.check.outputs.php_count > 0 || needs.check.outputs.ci_phpcs_count > 0 || needs.check.outputs.composer_count > 0 || needs.check.outputs.ci_count > 0
+ if: needs.check.outputs.php > 0 || needs.check.outputs.phpcs > 0 || needs.check.outputs.composer > 0 || needs.check.outputs.workflow > 0
uses: ./.github/workflows/phpcs.yml
php-cs-fixer:
name: PHP-CS-Fixer
needs: [check]
- if: needs.check.outputs.php_count > 0 || needs.check.outputs.ci_php_cs_fixer_count > 0 || needs.check.outputs.composer_count > 0 || needs.check.outputs.ci_count > 0
+ if: needs.check.outputs.php > 0 || needs.check.outputs.php-cs-fixer > 0 || needs.check.outputs.composer > 0 || needs.check.outputs.workflow > 0
uses: ./.github/workflows/php-cs-fixer.yml
phpstan:
name: PHPStan
needs: [check]
- if: needs.check.outputs.php_count > 0 || needs.check.outputs.ci_phpstan_count > 0 || needs.check.outputs.composer_count > 0 || needs.check.outputs.ci_count > 0
+ if: needs.check.outputs.php > 0 || needs.check.outputs.phpstan > 0 || needs.check.outputs.composer > 0 || needs.check.outputs.workflow > 0
uses: ./.github/workflows/phpstan.yml
+ # DOES NOT run by default
+ # runs on schedule or when worklfow changed
syntax_php:
name: Syntax
needs: [check, phpcs, php-cs-fixer]
- if: needs.check.outputs.php_count > 0 || needs.check.outputs.composer_count > 0
+ if: needs.check.outputs.workflow > 0
uses: ./.github/workflows/syntax-php.yml
syntax_xml:
name: Syntax
needs: [check]
- if: needs.check.outputs.xml_count > 0
+ if: needs.check.outputs.xml > 0
uses: ./.github/workflows/syntax-xml.yml
+ # DOES NOT run by default
+ # runs on schedule or when worklfow or unit tests changed
sonar:
name: Sonar Unit Tests
needs: [check, phpcs, php-cs-fixer]
- if: needs.check.outputs.php_count > 0 || needs.check.outputs.composer_count > 0 || needs.check.outputs.ci_count > 0
+ if: needs.check.outputs.phpunit-test > 0 || nneeds.check.outputs.phpunit > 0 || needs.check.outputs.sonar > 0 || needs.check.outputs.workflow > 0
uses: ./.github/workflows/sonar.yml
+ # DOES NOT run by default
+ # runs on schedule or when worklfow or unit tests changed
unit_tests:
name: OpenMage LTS - Unit Tests
needs: [check, sonar]
- if: needs.check.outputs.php_count > 0 || needs.check.outputs.composer_count > 0 || needs.check.outputs.ci_count > 0
+ if: needs.check.outputs.phpunit-test > 0 || nneeds.check.outputs.phpunit > 0 || needs.check.outputs.workflow > 0
uses: ./.github/workflows/phpunit.yml
From 528d21d2e66c82ed7988811368e12ba710add964 Mon Sep 17 00:00:00 2001
From: Sven Reichel
Date: Wed, 30 Nov 2022 05:36:10 +0100
Subject: [PATCH 3/4] Updated README.md
- added badges
- added links to workflows
- shorter workflow names
---
.github/workflows/phpcs.yml | 2 +-
.github/workflows/phpstan.yml | 2 +-
.github/workflows/phpunit.yml | 2 +-
.github/workflows/sonar.yml | 2 +-
.github/workflows/syntax-php.yml | 2 +-
.github/workflows/syntax-xml.yml | 2 +-
.github/workflows/workflow.yml | 4 ++--
README.md | 14 +++++++++-----
8 files changed, 17 insertions(+), 13 deletions(-)
diff --git a/.github/workflows/phpcs.yml b/.github/workflows/phpcs.yml
index 9411dde9f35..86614646a2f 100644
--- a/.github/workflows/phpcs.yml
+++ b/.github/workflows/phpcs.yml
@@ -1,4 +1,4 @@
-name: PHPCodeSniffer Code Style Analyses
+name: PHPCS
on:
workflow_call:
diff --git a/.github/workflows/phpstan.yml b/.github/workflows/phpstan.yml
index 8b79b99d592..143f5696e2a 100644
--- a/.github/workflows/phpstan.yml
+++ b/.github/workflows/phpstan.yml
@@ -1,4 +1,4 @@
-name: PHPStan Static Code Analyses
+name: PHPStan
on:
workflow_call:
diff --git a/.github/workflows/phpunit.yml b/.github/workflows/phpunit.yml
index d91a7dba2b4..129c883e93c 100644
--- a/.github/workflows/phpunit.yml
+++ b/.github/workflows/phpunit.yml
@@ -1,4 +1,4 @@
-name: OpenMage LTS - Unit Tests
+name: PHPUnit
on:
# Run automatically every Monday on midnight.
diff --git a/.github/workflows/sonar.yml b/.github/workflows/sonar.yml
index fa55917baee..bf3551eb8fb 100644
--- a/.github/workflows/sonar.yml
+++ b/.github/workflows/sonar.yml
@@ -1,4 +1,4 @@
-name: OpenMage LTS - Sonar - Full Analyses
+name: Sonar
on:
# Run automatically every Monday on midnight.
diff --git a/.github/workflows/syntax-php.yml b/.github/workflows/syntax-php.yml
index 1ee6fd7a7df..8f3007721cd 100644
--- a/.github/workflows/syntax-php.yml
+++ b/.github/workflows/syntax-php.yml
@@ -1,4 +1,4 @@
-name: PHP Validatation
+name: PHP Syntax
on:
# Run automatically every Monday on midnight.
diff --git a/.github/workflows/syntax-xml.yml b/.github/workflows/syntax-xml.yml
index 93fa632f80f..51819c3572b 100644
--- a/.github/workflows/syntax-xml.yml
+++ b/.github/workflows/syntax-xml.yml
@@ -1,4 +1,4 @@
-name: XML Validation
+name: XML Syntax
on:
# Run automatically every Monday on midnight.
diff --git a/.github/workflows/workflow.yml b/.github/workflows/workflow.yml
index c0624fb8e0c..44535fda460 100644
--- a/.github/workflows/workflow.yml
+++ b/.github/workflows/workflow.yml
@@ -86,7 +86,7 @@ jobs:
sonar:
name: Sonar Unit Tests
needs: [check, phpcs, php-cs-fixer]
- if: needs.check.outputs.phpunit-test > 0 || nneeds.check.outputs.phpunit > 0 || needs.check.outputs.sonar > 0 || needs.check.outputs.workflow > 0
+ if: needs.check.outputs.phpunit-test > 0 || needs.check.outputs.phpunit > 0 || needs.check.outputs.sonar > 0 || needs.check.outputs.workflow > 0
uses: ./.github/workflows/sonar.yml
# DOES NOT run by default
@@ -94,5 +94,5 @@ jobs:
unit_tests:
name: OpenMage LTS - Unit Tests
needs: [check, sonar]
- if: needs.check.outputs.phpunit-test > 0 || nneeds.check.outputs.phpunit > 0 || needs.check.outputs.workflow > 0
+ if: needs.check.outputs.phpunit-test > 0 || needs.check.outputs.phpunit > 0 || needs.check.outputs.workflow > 0
uses: ./.github/workflows/phpunit.yml
diff --git a/README.md b/README.md
index a4ff9a1fcc3..35c8358dc0b 100644
--- a/README.md
+++ b/README.md
@@ -5,11 +5,15 @@
-
-
-
-
-
+
+
+
+
+
+
+
+
+
# Magento - Long Term Support
From ce91789a2b2dba267f057dcea9599f5fc6bf4819 Mon Sep 17 00:00:00 2001
From: Sven Reichel
Date: Wed, 30 Nov 2022 21:42:10 +0100
Subject: [PATCH 4/4] Fixed typo
---
.github/workflows/phpcs.yml | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/.github/workflows/phpcs.yml b/.github/workflows/phpcs.yml
index 86614646a2f..b5cbc73d155 100644
--- a/.github/workflows/phpcs.yml
+++ b/.github/workflows/phpcs.yml
@@ -17,7 +17,7 @@ jobs:
path: .phpcs.xml.dist
- label: Ecg
path: .phpcs.ecg.xml.dist
- - label: PhpCompatibitliy
+ - label: PhpCompatibility
path: .phpcs.php.xml.dist
steps: