Skip to content

Commit 3a2c71e

Browse files
committed
Update friendsofphp/php-cs-fixer
1 parent 6a04b11 commit 3a2c71e

File tree

3 files changed

+5
-4
lines changed

3 files changed

+5
-4
lines changed

.gitignore

+2-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,8 @@
22
composer.phar
33
composer.lock
44
/vendor/
5-
/.php_cs.cache
5+
/.php-cs-fixer.php
6+
/.php-cs-fixer.cache
67
/.phpunit.result.cache
78
/node_modules/
89
/docs/.vuepress/dist/

.php_cs.dist .php-cs-fixer.dist.php

+2-2
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
])
88
;
99

10-
return PhpCsFixer\Config::create()
10+
return (new PhpCsFixer\Config())
1111
->setFinder($finder)
1212
->setRules([
1313
'@Symfony' => true,
@@ -16,7 +16,7 @@
1616
'ordered_imports' => true,
1717
'phpdoc_add_missing_param_annotation' => true,
1818
'phpdoc_order' => true,
19-
'yoda_style' => null,
19+
'yoda_style' => false,
2020
'no_superfluous_phpdoc_tags' => false,
2121
])
2222
;

composer.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929
"psr/http-message": "^1.0"
3030
},
3131
"require-dev": {
32-
"friendsofphp/php-cs-fixer": "^2.17",
32+
"friendsofphp/php-cs-fixer": "^3.0",
3333
"guzzlehttp/guzzle": "^7.3",
3434
"phpunit/phpunit": "^8.0|^9.0"
3535
},

0 commit comments

Comments
 (0)