Skip to content

Commit 7536290

Browse files
committed
fix phpcs, test 8.5
1 parent a44d8b8 commit 7536290

2 files changed

Lines changed: 4 additions & 0 deletions

File tree

.github/workflows/tests.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@ jobs:
1212
php:
1313
- version: 8.3
1414
- version: 8.4
15+
- version: 8.5
1516
stability: [prefer-lowest, prefer-stable]
1617

1718
name: PHP ${{ matrix.php.version }} - ${{ matrix.stability }}

.php-cs-fixer.php

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,9 @@
3434
// Forbid multi-line whitespace before the closing semicolon
3535
'multiline_whitespace_before_semicolons' => ['strategy' => 'no_multi_line'],
3636

37+
// Breaks 8.3 compatability if we turn this on
38+
'new_expression_parentheses' => false,
39+
3740
// Clean up PHPDocs, but leave @inheritDoc entries alone
3841
'no_superfluous_phpdoc_tags' => ['allow_mixed' => true, 'remove_inheritdoc' => false],
3942

0 commit comments

Comments
 (0)