定制 thibaud-dauce/phpstan-blade 二次开发

按需修改功能、优化性能、对接业务系统,提供一站式技术支持

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

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.

Result example

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 @include with 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.

统计信息

  • 总下载量: 27
  • 月度下载量: 0
  • 日度下载量: 0
  • 收藏数: 2
  • 点击次数: 13
  • 依赖项目数: 0
  • 推荐数: 0

GitHub 信息

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

其他信息

  • 授权协议: MIT
  • 更新时间: 2022-02-15

承接程序开发

PHP开发

VUE

Vue开发

前端开发

小程序开发

公众号开发

系统定制

数据库设计

云部署

网站建设

安全加固