diff options
| author | Andrew Dolgov <fox@fakecake.org> | 2025-07-30 20:23:50 +0300 |
|---|---|---|
| committer | Andrew Dolgov <fox@fakecake.org> | 2025-07-30 20:23:50 +0300 |
| commit | 851ddf4bbe750e30816b6c494165e9860bd39b92 (patch) | |
| tree | 963958f3a68903e8fe33824219a6f93bfe9523df /utils/phpstan-watcher.sh | |
| parent | 8b07dc8453e0d029b000d8a73ebc059f95994400 (diff) | |
| parent | c7aa33fe8aa0cf29bbe453efa74898254834a8eb (diff) | |
Merge branch 'publishedcounter' into 'master'
implement special counter display when viewing by published, similar to marked
See merge request tt-rss/tt-rss!168
Diffstat (limited to 'utils/phpstan-watcher.sh')
| -rwxr-xr-x | utils/phpstan-watcher.sh | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/utils/phpstan-watcher.sh b/utils/phpstan-watcher.sh index 5501588be..84554e68d 100755 --- a/utils/phpstan-watcher.sh +++ b/utils/phpstan-watcher.sh @@ -1,10 +1,10 @@ #!/bin/sh -export PHP_IMAGE=registry.fakecake.org/infra/php8.3-alpine3.20 +export PHP_IMAGE=registry.fakecake.org/infra/php8.4-alpine3.22 docker run --rm -v $(pwd):/app -v /tmp/phpstan:/tmp/phpstan \ --workdir /app ${PHP_IMAGE} \ - php83 -d memory_limit=-1 ./vendor/bin/phpstan --memory-limit=2G --error-format=raw analyze . + php84 -d memory_limit=-1 ./vendor/bin/phpstan --memory-limit=2G --error-format=raw analyze . echo All done, RC=$?. @@ -15,7 +15,7 @@ while true; do docker run --rm -v $(pwd):/app -v /tmp/phpstan:/tmp/phpstan \ --workdir /app ${PHP_IMAGE} \ - php83 -d memory_limit=-1 ./vendor/bin/phpstan --memory-limit=2G --error-format=raw analyze . + php84 -d memory_limit=-1 ./vendor/bin/phpstan --memory-limit=2G --error-format=raw analyze . echo All done, RC=$?. ) |