summaryrefslogtreecommitdiff
path: root/vendor/mustache/mustache/.php_cs
diff options
context:
space:
mode:
Diffstat (limited to 'vendor/mustache/mustache/.php_cs')
-rw-r--r--vendor/mustache/mustache/.php_cs26
1 files changed, 0 insertions, 26 deletions
diff --git a/vendor/mustache/mustache/.php_cs b/vendor/mustache/mustache/.php_cs
deleted file mode 100644
index d924712..0000000
--- a/vendor/mustache/mustache/.php_cs
+++ /dev/null
@@ -1,26 +0,0 @@
-<?php
-
-use Symfony\CS\Config\Config;
-use Symfony\CS\FixerInterface;
-
-$config = Config::create()
- // use symfony level and extra fixers:
- ->level(Symfony\CS\FixerInterface::SYMFONY_LEVEL)
- ->fixers(array(
- '-concat_without_spaces',
- '-pre_increment',
- '-unalign_double_arrow',
- '-unalign_equals',
- 'align_double_arrow',
- 'concat_with_spaces',
- 'ordered_use',
- 'strict',
- ))
- ->setUsingLinter(false);
-
-$finder = $config->getFinder()
- ->in('bin')
- ->in('src')
- ->in('test');
-
-return $config;