File ".php-cs-fixer.dist.php"

Full Path: /var/www/drive/php-http/client-common/.php-cs-fixer.dist.php
File size: 316 bytes
MIME-type: text/x-php
Charset: utf-8

<?php

$finder = PhpCsFixer\Finder::create()
    ->in(__DIR__.'/src')
    ->in(__DIR__.'/tests')
    ->name('*.php')
;

$config = new PhpCsFixer\Config();

return $config
    ->setRiskyAllowed(true)
    ->setRules([
        '@Symfony' => true,
        'single_line_throw' => false,
    ])
    ->setFinder($finder)
;