summaryrefslogtreecommitdiff
path: root/.php_cs.dist
diff options
context:
space:
mode:
Diffstat (limited to '.php_cs.dist')
-rw-r--r--.php_cs.dist13
1 files changed, 13 insertions, 0 deletions
diff --git a/.php_cs.dist b/.php_cs.dist
new file mode 100644
index 0000000..857e9f0
--- /dev/null
+++ b/.php_cs.dist
@@ -0,0 +1,13 @@
+<?php
+
+$finder = PhpCsFixer\Finder::create()
+ ->in(__DIR__)
+;
+
+return PhpCsFixer\Config::create()
+ ->setRules(array(
+ '@Symfony' => true,
+ 'concat_space' => array('spacing' => 'one'),
+ ))
+ ->setFinder($finder)
+;