Fix typo in Imagine.php (#863) #247
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Coding Style | |
on: | |
push: | |
paths: | |
- .github/workflows/coding-style.yml | |
- "**.php" | |
pull_request: | |
paths: | |
- .github/workflows/coding-style.yml | |
- "**.php" | |
jobs: | |
php: | |
name: PHP Coding Style | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v2 | |
- name: Install PHP | |
uses: shivammathur/setup-php@v2 | |
with: | |
php-version: "7.4" | |
coverage: none | |
tools: php-cs-fixer:v3 | |
- name: Run php-cs-fixer | |
run: php-cs-fixer fix --path-mode=intersection --config=.php-cs-fixer.dist.php --dry-run --using-cache=no --diff --ansi --no-interaction . |