summaryrefslogtreecommitdiff
path: root/vendor/swiftmailer/swiftmailer/.php_cs.dist
blob: f18d65d42888714896292ac80b34fd1eb7da6298 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
<?php

return PhpCsFixer\Config::create()
    ->setRules(array(
        '@Symfony' => true,
        '@Symfony:risky' => true,
        'array_syntax' => array('syntax' => 'long'),
        'no_unreachable_default_argument_value' => false,
        'braces' => array('allow_single_line_closure' => true),
        'heredoc_to_nowdoc' => false,
        'phpdoc_annotation_without_dot' => false,
    ))
    ->setRiskyAllowed(true)
    ->setFinder(PhpCsFixer\Finder::create()->in(__DIR__))
;