Add exclusion to fix incorrectly flagged error

Error message:

    FILE: ...lass/php-curl-class/tests/PHPCurlClass/PHPMultiCurlClassTest.php
    ----------------------------------------------------------------------
    FOUND 8 ERRORS AFFECTING 8 LINES
    ----------------------------------------------------------------------
    3575 | ERROR | list() will assign variable from left-to-right since
        |       | PHP 7.0. Ensure all variables in list() are unique to
        |       | prevent unexpected results.
        |       | (PHPCompatibility.Lists.AssignmentOrder.Affected)
    [...]
    ----------------------------------------------------------------------
This commit is contained in:
Zach Borboa
2022-09-23 10:15:20 -07:00
parent f1ac3a6e38
commit 8666fc38fb
+4 -1
View File
@@ -1,7 +1,10 @@
<?xml version="1.0"?>
<ruleset name="PSR2Modified">
<!-- Run against the PHPCompatibility ruleset. -->
<rule ref="PHPCompatibility" />
<rule ref="PHPCompatibility">
<!-- TODO: Remove the following exclusion when this list() error is no longer incorrectly flagged. -->
<exclude name="PHPCompatibility.Lists.AssignmentOrder.Affected" />
</rule>
<config name="installed_paths" value="vendor/phpcompatibility/php-compatibility,vendor/phpcsstandards/phpcsutils/PHPCS23Utils" />
<!-- Run against the PSR2 ruleset with some exclusions. -->