D7net
Home
Console
Upload
information
Create File
Create Folder
About
Tools
:
/
home
/
forge
/
almahero.online
/
vendor
/
littleredbutton
/
bigbluebutton-api-php
/
Filename :
.php-cs-fixer.php
back
Copy
<?php // Invoke the config easily with `php-cs-fixer fix` $finder = \PhpCsFixer\Finder::create() ->files() ->name('*.php') ->in(__DIR__ . '/src') ->in(__DIR__ . '/tests'); $config = new PhpCsFixer\Config(); return $config ->setUsingCache(false) ->setRules([ '@Symfony' => true, '@Symfony:risky' => true, 'yoda_style' => false, 'single_line_throw' => false, 'increment_style' => false, 'modernize_strpos' => false, 'get_class_to_class_keyword' => false, ]) ->setRiskyAllowed(true) ->setFinder($finder);