1
0
mirror of https://github.com/danog/postgres.git synced 2024-11-26 12:04:50 +01:00
postgres/.php_cs
2018-07-01 12:33:12 -05:00

11 lines
228 B
PHP

<?php
$config = new Amp\CodeStyle\Config();
$config->getFinder()->in(__DIR__);
$cacheDir = getenv('TRAVIS') ? getenv('HOME') . '/.php-cs-fixer' : __DIR__;
$config->setCacheFile($cacheDir . '/.php_cs.cache');
return $config;