Skip to content

Commit eea4f23

Browse files
committed
Fix syntax error
1 parent 799c810 commit eea4f23

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

.github/workflows/static_analysis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
- uses: actions/checkout@v6
2222
- uses: shivammathur/setup-php@v2
2323
with:
24-
php-version: '8.4'
24+
php-version: '8.3'
2525
coverage: none
2626

2727
# Install Flex as a global dependency to enable usage of extra.symfony.require

.php-cs-fixer.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
// To support running PHP CS Fixer via PHAR file (e.g. in GitHub Actions)
44
require_once __DIR__ . '/lib/PhpCsFixer/Config.php';
55

6-
return new (Netgen\CodingStandard\PhpCsFixer\Config())
6+
return (new Netgen\CodingStandard\PhpCsFixer\Config())
77
->setFinder(
88
PhpCsFixer\Finder::create()
99
->exclude(['vendor'])

0 commit comments

Comments
 (0)