Sha256: b19131fa021ee3fa364c3597629e430c99abd4290b2849b098dc7f93fc597859
Contents?: true
Size: 1.15 KB
Versions: 483
Compression:
Stored size: 1.15 KB
Contents
<?php $finder = PhpCsFixer\Finder::create() ->in(__DIR__ . '/src') ->in(__DIR__ . '/bin'); return PhpCsFixer\Config::create() ->setRules([ '@Symfony' => true, 'array_syntax' => ['syntax' => 'short'], 'blank_line_after_opening_tag' => true, 'concat_space' => ['spacing' => 'one'], 'declare_strict_types' => true, 'increment_style' => ['style' => 'post'], 'is_null' => ['use_yoda_style' => false], 'list_syntax' => ['syntax' => 'short'], 'method_argument_space' => ['ensure_fully_multiline' => true], 'modernize_types_casting' => true, 'no_multiline_whitespace_before_semicolons' => true, 'no_useless_else' => true, 'no_useless_return' => true, 'ordered_imports' => true, 'phpdoc_align' => false, 'phpdoc_order' => true, 'php_unit_construct' => true, 'php_unit_dedicate_assert' => true, 'single_line_comment_style' => true, 'ternary_to_null_coalescing' => true, 'yoda_style' => false, 'void_return' => true, ]) ->setFinder($finder) ->setUsingCache(true) ->setRiskyAllowed(true);
Version data entries
483 entries across 483 versions & 1 rubygems