thibaud-dauce/phpstan-blade
Composer 安装命令:
composer require thibaud-dauce/phpstan-blade
包简介
PHPStan extension to analyse Laravel Blade views.
README 文档
README
This PHPStan extension analyse Blade views for errors.
Installation
Install the extension with Composer.
composer require thibaud-dauce/phpstan-blade
Add the extension config file to your phpstan.neon:
includes: - ./phpstan-baseline.neon - ./vendor/nunomaduro/larastan/extension.neon - ./vendor/thibaud-dauce/phpstan-blade/extension.neon parameters: …
Add this Composer script to your composer.json:
{
"scripts": {
"post-root-package-install": [
"@php -r \"file_exists('.env') || copy('.env.example', '.env');\""
],
"post-create-project-cmd": [
"@php artisan key:generate"
],
"post-autoload-dump": [
"Illuminate\\Foundation\\ComposerScripts::postAutoloadDump",
"@php artisan package:discover"
],
"phpstan": [
"@php artisan phpstan-blade:touch-cache",
"./vendor/bin/phpstan analyse --error-format blade"
]
},
}
Then, you can run composer phpstan to touch the cache (see TouchCacheCommand comment if you want to know more about why it's required), and run the analyse with the Blade formatter (the Blade formatter is required to allow showing the stacktrace of the views' includes).
Features
- Analyse
view()calls - Support Blade directives
- Support views namespaces
- Support Livewire components
- Support
@includewith full stacktrace showing exactly the place and the context of the error - Support mailable views
- Support
compact()function for view parameters
Limitations
@var docblocks inside Blade views
If you want to add docblocks to your views to add type information like:
@php /** @var string */ $name = config('app.name'); @endphp {{ $name }}
You need to specify the variable name inside the docblock because we add docblocks too between lines so your docblocks will not be right above the assignation.
@php /** @var string $name */ $name = config('app.name'); @endphp {{ $name }}
Constant types (:ConstantTypes)
Right now, if you pass true to a view, the type is generalize to bool to avoid errors like "If condition is always true.". It could be nice to have a way to raise an error if all view() calls pass true that the condition is always true. But I think it's hard to implement.
If you pass ['something' => null] to a view, I transform the type to mixed so you may have some errors. You should specify the type for the null value so I can put the correct type information.
/** @var ?User */ $user = null; return view('user', [ 'user' => $user, ]);
Development
The extension code has a lot of comment to explain every thing it's doing. The main entry point is the ViewFunctionRule class.
thibaud-dauce/phpstan-blade 适用场景与选型建议
thibaud-dauce/phpstan-blade 是一款 基于 PHP 开发的 Composer 扩展包,目前已累计 27 次下载、GitHub Stars 达 2, 最近一次更新时间为 2022 年 02 月 15 日, 在 PHP 生态内属于活跃度较高的组件。
我们在过去多个企业项目中使用过 thibaud-dauce/phpstan-blade 或与其功能相近的方案,如果你在选型或落地过程中遇到问题,例如 版本兼容、二次改造、私有化封装、与内部系统对接、生产 BUG 排查,欢迎联系我们协助评估。
基于 thibaud-dauce/phpstan-blade 在你已有业务上做功能扩展、字段裁剪、UI 适配、与内部账号 / 权限 / 日志系统的深度对接。
线上偶发问题、内存泄漏、慢查询、并发异常等排查修复;针对高流量场景做缓存、队列、索引层面的调优。
承接完整的项目从需求 → 设计 → 开发 → 上线 → 长期运维;也可按月提供技术保姆服务。
统计信息
- 总下载量: 27
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 2
- 点击次数: 14
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2022-02-15
