mirror of
https://github.com/php-curl-class/php-curl-class.git
synced 2026-08-19 21:51:46 +00:00
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:
+4
-1
@@ -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. -->
|
||||
|
||||
Reference in New Issue
Block a user