You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
urlhub/.php-cs-fixer.dist.php

17 lines
312 B

<?php
use Realodix\Relax\Config;
use Realodix\Relax\Finder;
$localRules = [
// Base
'binary_operator_spaces' => false,
'single_import_per_statement' => false,
// Realodix
'no_empty_comment' => false,
];
return Config::create('@Realodix', $localRules)
->setFinder(Finder::laravel());