phpstan.neon.dist 826 B

12345678910111213141516171819
  1. includes:
  2. - ./vendor/nunomaduro/larastan/extension.neon
  3. parameters:
  4. level: max
  5. paths:
  6. - src
  7. checkMissingIterableValueType: false
  8. reportUnmatchedIgnoredErrors: false
  9. excludes_analyse:
  10. - src/Adapters/Phpunit/Printer
  11. ignoreErrors:
  12. - '#Parameter \#1 \$input of function str_pad expects string, int given.#'
  13. - '#Cannot call method addTheme\(\) on array|JakubOnderka\\PhpConsoleColor\\ConsoleColor#'
  14. - '#Method NunoMaduro\\Collision\\Adapters\\Laravel\\IgnitionSolutionsRepository::getFromThrowable\(\) should return array<int,#'
  15. - '#Result of static method Dotenv\\Repository\\RepositoryBuilder::create\(\) \(void\) is used.#'
  16. - message: '#Cannot call method make\(\) on void.#'
  17. paths:
  18. - src/Adapters/Laravel/Commands/*