mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-02-25 18:45:27 -06:00
Analyse less code, optimise run.
This commit is contained in:
parent
749236bc8d
commit
d2fd858d18
@ -10,12 +10,9 @@ parameters:
|
||||
- '#is neither abstract nor final#'
|
||||
paths:
|
||||
- ../app
|
||||
- ../config
|
||||
- ../database
|
||||
- ../resources
|
||||
- ../routes
|
||||
- ../bootstrap/app.php
|
||||
|
||||
|
||||
# The level 8 is the highest level. original was 5
|
||||
level: 0
|
||||
|
@ -1,7 +1,9 @@
|
||||
#!/usr/bin/env bash
|
||||
|
||||
# Install composer packages
|
||||
composer install --no-suggest --no-scripts --no-ansi
|
||||
composer install --no-suggest --no-scripts --no-ansi &> /dev/null
|
||||
|
||||
# Do static code analysis.
|
||||
./vendor/bin/phpstan analyse -c .ci/phpstan.neon > phpstan.txt
|
||||
./vendor/bin/phpstan analyse -c .ci/phpstan.neon --no-progress --errorFormat=raw > phpstan.txt
|
||||
|
||||
exit 0
|
Loading…
Reference in New Issue
Block a user