Skip to content

Commit 2a96c8a

Browse files
committed
coding standard fix
1 parent 5c2403e commit 2a96c8a

20 files changed

+815
-81
lines changed

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
.php_cs.cache
12
build
23
config/parameters.yml
34
vendor

.php_cs

+15
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
<?php
2+
// see https://github.com/FriendsOfPHP/PHP-CS-Fixer
3+
4+
$finder = PhpCsFixer\Finder::create()
5+
->in([__DIR__.'/src', __DIR__.'/tests'])
6+
;
7+
8+
return PhpCsFixer\Config::create()
9+
->setRules([
10+
'@Symfony' => true,
11+
'array_syntax' => ['syntax' => 'short'],
12+
'ordered_imports' => true,
13+
])
14+
->setFinder($finder)
15+
;

composer.json

+2-1
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,8 @@
3232
"symfony/yaml": "^3.3"
3333
},
3434
"require-dev": {
35-
"phpunit/phpunit": "~5.7"
35+
"phpunit/phpunit": "~5.7",
36+
"friendsofphp/php-cs-fixer": "^2.3"
3637
},
3738
"suggest": {
3839
"ext-apcu": "*",

0 commit comments

Comments
 (0)