fork masterminds html5-php

This commit is contained in:
Andrew Dolgov
2022-07-31 09:15:00 +03:00
parent 4aefbd628e
commit 7187ab859d
145 changed files with 59633 additions and 57 deletions
@@ -0,0 +1,14 @@
<?php
$finder = PhpCsFixer\Finder::create()
->in(__DIR__)
;
return PhpCsFixer\Config::create()
->setRules(array(
'@Symfony' => true,
'concat_space' => array('spacing' => 'one'),
'phpdoc_annotation_without_dot' => false,
))
->setFinder($finder)
;