From 80d724f5f3ba762af16bc8f85470e0f2fbd9925f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Dariusz=20Rumi=C5=84ski?= Date: Thu, 24 Jul 2014 19:03:27 +0200 Subject: [PATCH] .php_cs - simplify --- .php_cs | 13 ++++--------- 1 file changed, 4 insertions(+), 9 deletions(-) diff --git a/.php_cs b/.php_cs index 8d3b7d8..f34252f 100644 --- a/.php_cs +++ b/.php_cs @@ -1,11 +1,6 @@ finder(Symfony\CS\Finder\DefaultFinder::create() - ->notName('LICENSE') - ->notName('README.md') - ->notName('composer.*') - ->notName('phpunit.xml.*') - ->notName('*.phar') - ->exclude('vendor') - ->in(__DIR__) -); +$config = new Symfony\CS\Config\Config(); +$config->getFinder()->exclude('bin'); + +return $config;