We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a0cdcb0 commit fdef804Copy full SHA for fdef804
.php_cs
@@ -3,6 +3,10 @@
3
return Symfony\CS\Config\Config::create()
4
->setUsingLinter(false)
5
->setUsingCache(true)
6
+ ->fixers(array(
7
+ 'long_array_syntax',
8
+ 'php_unit_construct',
9
+ ))
10
->finder(
11
Symfony\CS\Finder\DefaultFinder::create()
12
->in(__DIR__)
@@ -12,6 +16,7 @@ return Symfony\CS\Config\Config::create()
16
'src/Symfony/Component/Routing/Tests/Fixtures/dumper',
13
17
// fixture templates
14
18
'src/Symfony/Component/Templating/Tests/Fixtures/templates',
19
+ 'src/Symfony/Bundle/FrameworkBundle/Tests/Templating/Helper/Resources/Custom',
15
20
// resource templates
21
'src/Symfony/Bundle/FrameworkBundle/Resources/views/Form',
22
))
0 commit comments