membrane-php / membrane-laravel

Laravel integration for Membrane validation library.
Other
3 stars 2 forks source link

Ignore PHPStan complaining about missing Laravel helper methods. #21

Closed charjr closed 6 months ago

charjr commented 6 months ago

Update the PHPStan.neon file to specifically ignore missing config() and config_path() functions.

Removes (now unnecessary) repetitive phpstan-ignore-next-line annotations.

Lets PHPStan check those lines for other issues. (Case and point: it then began complaining that instantiateBuilders was only returning array instead of array so I've added an array_filter to assert that).