git.schokokeks.org
Repositories
Help
Report an Issue
webinterface.git
Code
Commits
Branches
Tags
Suche
Strukturansicht:
7ed999e
Branches
Tags
master
ticket
webinterface.git
checkcodingstyle
check more codingstyle
Hanno Böck
commited
7ed999e
at 2021-10-30 21:22:24
checkcodingstyle
Blame
History
Raw
#!/bin/bash set -euo pipefail surl=$(curl -s https://api.github.com/repos/fabpot/local-php-security-checker/releases/latest | grep https://.*linux_amd64 -o) [ -e local-php-security-checker ] || curl -L $surl >local-php-security-checker [ -e php-cs-fixer ] || curl -L https://cs.symfony.com/download/php-cs-fixer-v3.phar >php-cs-fixer chmod +x local-php-security-checker php-cs-fixer ./php-cs-fixer fix --rules @PSR12,@PHP81Migration --dry-run --diff . ./local-php-security-checker