ignore.neon 577 B

1234567891011
  1. parameters:
  2. ignoreErrors:
  3. # Runkit extension is optional, so we shouldn't warn about its functions
  4. - "#^Function runkit[a-zA-Z0-9_]+ not found\\.$#"
  5. - "#^Constant RUNKIT_[a-zA-Z0-9_]+ not found\\.$#"
  6. # PHP8 classes are used only after explicit check for runtime version, so let's ignore it
  7. - message: "#^Class (UnitEnum|ReflectionUnionType)+ not found\\.$#"
  8. paths:
  9. - ../../src/ExecutionLoop/ProcessForker.php
  10. # PHP8.0 introduced second argument for
  11. - "#^Class IteratorIterator constructor invoked with 2 parameters, 1 required\\.$#"