view .php-cs-fixer.dist.php @ 10:a9ff874afdbd

better comments for config helper
author luka
date Sat, 02 Dec 2023 10:20:32 -0500
parents 4216c0dc638c
children
line wrap: on
line source

<?php

$finder = PhpCsFixer\Finder::create()
    ->in(__DIR__)
		->exclude('.hg')
;

$config = new PhpCsFixer\Config();
return $config->setRules([
        '@Symfony' => true,
        'full_opening_tag' => false,
    ])
    ->setFinder($finder)
;