Skip to content

Commit 5f52814

Browse files
committed
Use 'new_with_parentheses' => ['anonymous_class' => false], to comply PER-2
1 parent 00a7208 commit 5f52814

File tree

2 files changed

+5
-3
lines changed

2 files changed

+5
-3
lines changed

.php-cs-fixer-rules.php

+1
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@
1010
return [
1111
// Basic PER Coding Style 2.0 ruleset plus our overrides for it, see https://github.com/PHP-CS-Fixer/PHP-CS-Fixer/blob/master/doc/ruleSets/PER-CS2.0.rst
1212
'@PER-CS2.0' => true, // https://www.php-fig.org/per/coding-style/}
13+
'new_with_parentheses' => ['anonymous_class' => false], // @todo remove after migration to PHP-CS-Fixer v4.0, see https://github.com/PHP-CS-Fixer/PHP-CS-Fixer/pull/8148
1314
// overrides for PER-CS2.0
1415
'concat_space' => ['spacing' => 'none'], // make strings shorter "'hello' . $name . '!'" => "'hello'.$name.'!'"
1516
'blank_line_after_opening_tag' => false, // it makes "<?php declare(strict_types=1);" multiline (and more verbose)

composer.json

+4-3
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,8 @@
1010
"squizlabs/php_codesniffer": "^3.10"
1111
},
1212
"require-dev": {
13-
"friendsofphp/php-cs-fixer": "^3.59",
14-
"phpunit/phpunit": "^10.5",
13+
"friendsofphp/php-cs-fixer": "^3.62",
14+
"phpunit/phpunit": "^10.5 || ^11.3",
1515
"vimeo/psalm": "^5.25"
1616
},
1717
"minimum-stability": "dev",
@@ -29,7 +29,8 @@
2929
"config": {
3030
"allow-plugins": {
3131
"dealerdirect/phpcodesniffer-composer-installer": true
32-
}
32+
},
33+
"sort-packages": true
3334
},
3435
"scripts": {
3536
"cs": "@cs:fix",

0 commit comments

Comments
 (0)