PhpDev.App
TomasVotruba/bladestan

TomasVotruba/bladestan

Stars: 235

Forks: 9

Pull Requests: 44

Issues: 35

Watchers: 5

Last Updated: 2023-08-18 06:18:41

PHPStan analysis for Blade templates

License: MIT License

Languages: PHP, Blade

https://tomasvotruba.com/blog/introducing-bladestan-phpstan-analysis-of-blade-templates/

Bladestan

Static analysis for Blade templates in Laravel projects.

Install

composer require tomasvotruba/bladestan --dev

Configure

Configure paths to your Blade views, unless you use the default resources/views directory:

parameters:
    bladestan:
        template_paths:
            # default
            - resources/views

If you run PHPStan with its extension installer, Bladestan will just work, if not you need to include it in the phpstan.neon configuration file:

includes:
    - ./vendor/tomasvotruba/bladestan/config/extension.neon

Features

Custom Error Formatter

We provide custom PHPStan error formatter to better display the template errors:

  • clickable template file path link to the error in blade template
 ------ -----------------------------------------------------------
  Line   app/Http/Controllers/PostCodexController.php
 ------ -----------------------------------------------------------
  20     Call to an undefined method App\Entity\Post::getConten().
         rendered in: post_codex.blade.php:15
 ------ -----------------------------------------------------------

How to use custom error formatter?

vendor/bin/phpstan analyze --error-format=blade

Credits

RELEASES

See all