odinns/phpstan-pest-this 问题修复 & 功能扩展

解决BUG、新增功能、兼容多环境部署,快速响应你的开发需求

邮箱:yvsm@zunyunkeji.com | QQ:316430983 | 微信:yvsm316

odinns/phpstan-pest-this

Composer 安装命令:

composer require --dev odinns/phpstan-pest-this

包简介

PHPStan extensions to infer Pest closure $this type from test file mappings.

README 文档

README

PHPStan extensions that infer Pest closure $this type from configurable test-path mappings.

Why

Pest binds test closures at runtime, while PHPStan analyzes code statically. Without extra help, closure $this is commonly inferred as PHPUnit\Framework\TestCase, which can produce false positives in Pest suites.

Installation

composer require --dev odinns/phpstan-pest-this

Quick setup

Add the extension to your PHPStan config:

includes:
    - vendor/odinns/phpstan-pest-this/extension.neon

The extension does not provide default test case mappings. Configure how file paths map to your Pest base test case classes:

parameters:
    pestClosureThisTypeMap:
        -
            pathContains: '/tests/'
            class: Tests\TestCase

This is the common Laravel/Pest setup where feature and unit tests share Tests\TestCase.

If your project uses separate base test cases, map the more specific paths explicitly:

parameters:
    pestClosureThisTypeMap:
        -
            pathContains: '/tests/Feature/'
            class: Tests\Feature\TestCase
        -
            pathContains: '/tests/Unit/'
            class: Tests\Unit\TestCase

pathContains is a substring match against the analyzed file path. The first matching mapping wins.

Supported Pest calls

  • Function calls: it(...), test(...), beforeEach(...), afterEach(...)
  • Fluent hooks: uses(...)->beforeEach(...), uses(...)->afterEach(...)

Optional: Generate a PHPStan proxy test case

If your base test case has protected assertion helpers, PHPStan may flag visibility errors from Pest closures. Use the included generator to create a static-analysis-only proxy class with public wrappers.

After installation:

vendor/bin/generate-pest-proxy.php \
  --source="Tests\\Feature\\TestCase" \
  --target="tests/PHPStan/PestFeatureTestCase.php" \
  --namespace="Tests\\PHPStan" \
  --class="PestFeatureTestCase"

While developing this package locally:

php tools/generate-pest-proxy.php \
  --source="Tests\\Feature\\TestCase" \
  --target="tests/PHPStan/PestFeatureTestCase.php" \
  --namespace="Tests\\PHPStan" \
  --class="PestFeatureTestCase"

Then map the relevant directory to the generated proxy:

parameters:
    pestClosureThisTypeMap:
        -
            pathContains: '/tests/Feature/'
            class: Tests\PHPStan\PestFeatureTestCase

This proxy only affects static analysis. It does not change Pest runtime behavior.

Limitations

  • The extension resolves closure $this type only.
  • It does not infer dynamic properties automatically; declare those on your test case/traits.
  • Mapping is path-substring based, so very broad patterns can match unintentionally.

Development

composer install
composer check

Troubleshooting

  • No effect in analysis: confirm extension.neon is included in your PHPStan config.
  • Wrong inferred class: ensure mapping order is specific to broad (first match wins).
  • Generator not found: use vendor/bin/generate-pest-proxy.php after install or php tools/generate-pest-proxy.php in this repository.

Versioning

This package follows SemVer from 1.0.0 onward. Composer versions come from Git tags, not a version field in composer.json.

Contributing

Keep changes narrow. This package teaches PHPStan about Pest closure $this; it should not grow runtime Pest behavior or framework glue.

Run composer check before opening a PR.

Security

Report security issues privately through GitHub Security Advisories:

https://github.com/odinns/phpstan-pest-this/security/advisories/new

Please do not open public issues for security reports.

Changelog

See CHANGELOG.md for release notes.

License

MIT

统计信息

  • 总下载量: 865
  • 月度下载量: 0
  • 日度下载量: 0
  • 收藏数: 1
  • 点击次数: 0
  • 依赖项目数: 8
  • 推荐数: 0

GitHub 信息

  • Stars: 1
  • Watchers: 0
  • Forks: 0
  • 开发语言: PHP

其他信息

  • 授权协议: MIT
  • 更新时间: 2026-02-13

承接程序开发

PHP开发

VUE

Vue开发

前端开发

小程序开发

公众号开发

系统定制

数据库设计

云部署

网站建设

安全加固