Skip to content

fix: remove trailing_comma_in_multiline because it's not work with PHP 7.4 #45

fix: remove trailing_comma_in_multiline because it's not work with PHP 7.4

fix: remove trailing_comma_in_multiline because it's not work with PHP 7.4 #45

Workflow file for this run

name: Continuous Integration
on: [push, pull_request]
jobs:
linter:
name: Code style
runs-on: ubuntu-20.04
strategy:
matrix:
php-version: [ '7.4', '8.0', '8.1' ]
steps:
- uses: actions/checkout@master
- uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php-version }}
- run: composer install --prefer-dist --no-interaction
- run: vendor/bin/php-cs-fixer fix --ansi --dry-run --using-cache=no --verbose