| Current Path : /var/www/eltornillo.com.mx/public_html/vendor/mustache/mustache/ |
| Current File : /var/www/eltornillo.com.mx/public_html/vendor/mustache/mustache/.php_cs |
<?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;