Skip to content

Instantly share code, notes, and snippets.

View b-vadym's full-sized avatar

Vadym Bondarenko b-vadym

  • Cherkasy, Ukraine
View GitHub Profile
@b-vadym
b-vadym / .php_cs.dist
Created October 30, 2017 10:40
PHP-CS-Fixer config
<?php
$finder = PhpCsFixer\Finder::create()
->in(__DIR__ . '/src')
->in(__DIR__ . '/app')
;
return PhpCsFixer\Config::create()
->setRiskyAllowed(true)
->setFinder($finder)