view .php-cs-fixer.dist.php @ 28:f88d2d5dee30 codex

Updated inputs and routes
author Luka Sitas <sitas.luka.97@gmail.com>
date Mon, 09 Jun 2025 19:51:31 -0400
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)
;