Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 13 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@ jobs:
matrix:
php:
- '7.4'
- 'rc'
fail-fast: false
timeout-minutes: 5
env:
Expand Down Expand Up @@ -57,7 +58,7 @@ jobs:
- name: Install PHP-CS-Fixer
run: |
composer global require --prefer-dist --no-progress --no-suggest --ansi \
friendsofphp/php-cs-fixer:"${PHP_CS_FIXER_VERSION}"
friendsofphp/php-cs-fixer:"${PHP_CS_FIXER_VERSION} "
- name: Cache PHP-CS-Fixer results
uses: actions/cache@v2
with:
Expand Down Expand Up @@ -150,6 +151,7 @@ jobs:
- '7.2'
- '7.3'
- '7.4'
- 'rc'
include:
- php: '7.4'
coverage: true
Expand Down Expand Up @@ -290,6 +292,7 @@ jobs:
- '7.2'
- '7.3'
- '7.4'
- 'rc'
include:
- php: '7.4'
coverage: true
Expand Down Expand Up @@ -1013,6 +1016,7 @@ jobs:
matrix:
php:
- '7.4'
- 'rc'
fail-fast: false
timeout-minutes: 20
env:
Expand Down Expand Up @@ -1256,6 +1260,7 @@ jobs:
matrix:
php:
- '7.4'
- 'rc'
fail-fast: false
timeout-minutes: 20
env:
Expand Down Expand Up @@ -1699,6 +1704,7 @@ jobs:
matrix:
php:
- '7.4'
- 'rc'
include:
- php: '7.4'
coverage: true
Expand Down Expand Up @@ -1842,9 +1848,12 @@ jobs:
matrix:
php:
- '7.4'
- 'rc'
include:
- php: '7.4'
coverage: true
- php: 'rc'
coverage: false
fail-fast: false
timeout-minutes: 20
env:
Expand Down Expand Up @@ -2005,6 +2014,7 @@ jobs:
matrix:
php:
- '7.4'
- 'rc'
fail-fast: false
timeout-minutes: 20
env:
Expand Down Expand Up @@ -2091,6 +2101,7 @@ jobs:
matrix:
php:
- '7.4'
- 'rc'
symfony:
- '5.1'
fail-fast: false
Expand Down Expand Up @@ -2197,6 +2208,7 @@ jobs:
matrix:
php:
- '7.4'
- 'rc'
symfony:
- '5.1'
fail-fast: false
Expand Down
4 changes: 2 additions & 2 deletions .php_cs.dist
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ For the full copyright and license information, please view the LICENSE
file that was distributed with this source code.
HEADER;

$finder = PhpCsFixer\Finder::create()
$finder = \PhpCsFixer\Finder::create()
->in(__DIR__)
->exclude([
'tests/Fixtures/app/var',
Expand All @@ -20,7 +20,7 @@ $finder = PhpCsFixer\Finder::create()
'tests/Fixtures/app/console',
]);

return PhpCsFixer\Config::create()
return \PhpCsFixer\Config::create()
->setRiskyAllowed(true)
->setRules([
'@DoctrineAnnotation' => true,
Expand Down