composer require --dev nunomaduro/larastan
includes: - ./vendor/nunomaduro/larastan/extension.neon parameters: paths: - app # The level 8 is the highest level level: 5 ignoreErrors: # Eloquent関連 - '#Access to an undefined property App\\Models(.*)#' excludes_analyse: - ./*/*/FileToBeExcluded.php checkMissingIterableValueType: false
./vendor/bin/phpstan analyse
Allowed memory size exhausted
が含まれて、処理が途中で中断される場合は、実行コマンドに--memory-limit
オプションを付与することでメモリーサイズを変更できます。./vendor/bin/phpstan analyse --memory-limit=2G